Skip to content

Commit

Permalink
Updated dependencies, set version to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
depryf committed Nov 13, 2024
1 parent 3f7661f commit 76ab669
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Synthetic data generator

**Changes in version 2.0**

- Updated the minimum Java language for the library from Java 8 to Java 11.
- Updated Layout library from version 5.7 to version 6.0.
- Updated NAACCR XML library from version 11.1 to version 10.2.

**Changes in version 1.34**

- Fixed default values not properly set in MSH segment of HL7 generator.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.35-SNAPSHOT
2.0
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ repositories {
}

dependencies {
api 'com.imsweb:layout:5.7'
api 'com.imsweb:naaccr-xml:11.1'
api 'com.imsweb:layout:6.0'
api 'com.imsweb:naaccr-xml:11.2'

implementation 'com.imsweb:seerutils:5.6'
implementation 'org.apache.commons:commons-lang3:3.17.0'
Expand All @@ -52,8 +52,8 @@ tasks.withType(Javadoc).configureEach {

// generate javadoc and sources (required by Nexus)
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11

withJavadocJar()
withSourcesJar()
Expand Down Expand Up @@ -210,6 +210,6 @@ nexusPublishing {

// Gradle wrapper, this allows to build the project without having to install Gradle...
wrapper {
gradleVersion = '8.10.2'
gradleVersion = '8.11'
distributionType = Wrapper.DistributionType.ALL
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 76ab669

Please sign in to comment.