Skip to content

Commit 76ab669

Browse files
committed
Updated dependencies, set version to 2.0
1 parent 3f7661f commit 76ab669

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Synthetic data generator
22

3+
**Changes in version 2.0**
4+
5+
- Updated the minimum Java language for the library from Java 8 to Java 11.
6+
- Updated Layout library from version 5.7 to version 6.0.
7+
- Updated NAACCR XML library from version 11.1 to version 10.2.
8+
39
**Changes in version 1.34**
410

511
- Fixed default values not properly set in MSH segment of HL7 generator.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.35-SNAPSHOT
1+
2.0

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ repositories {
2424
}
2525

2626
dependencies {
27-
api 'com.imsweb:layout:5.7'
28-
api 'com.imsweb:naaccr-xml:11.1'
27+
api 'com.imsweb:layout:6.0'
28+
api 'com.imsweb:naaccr-xml:11.2'
2929

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

5353
// generate javadoc and sources (required by Nexus)
5454
java {
55-
sourceCompatibility = JavaVersion.VERSION_1_8
56-
targetCompatibility = JavaVersion.VERSION_1_8
55+
sourceCompatibility = JavaVersion.VERSION_11
56+
targetCompatibility = JavaVersion.VERSION_11
5757

5858
withJavadocJar()
5959
withSourcesJar()
@@ -210,6 +210,6 @@ nexusPublishing {
210210

211211
// Gradle wrapper, this allows to build the project without having to install Gradle...
212212
wrapper {
213-
gradleVersion = '8.10.2'
213+
gradleVersion = '8.11'
214214
distributionType = Wrapper.DistributionType.ALL
215215
}

gradle/wrapper/gradle-wrapper.jar

79 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)