Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
depryf committed Aug 23, 2024
1 parent 333a440 commit e1c1c80
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Synthetic data generator

**Changes in version 1.33**

- Updated Layout library from version 5.5 to version 5.7.
- Updated NAACCR XML library from version 10.1 to version 11.1.

**Changes in version 1.32**

- Added new rule to populate Telephone (issue #51).
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.33-SNAPSHOT
1.33
28 changes: 14 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ plugins {
id 'java-library'
id 'checkstyle'
id 'jacoco'
id 'com.github.spotbugs' version '6.0.1'
id 'com.github.spotbugs' version '6.0.20'
id 'maven-publish'
id 'signing'
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0' // publish to Maven Central
id 'com.github.ben-manes.versions' version '0.50.0' // check for out-of-date dependencies (run 'dependencyUpdates' manually)
id 'org.sonatype.gradle.plugins.scan' version '2.6.1' // scan for vulnerabilities
id "org.sonarqube" version "4.4.1.3373"// sonarQube analysis
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' // publish to Maven Central
id 'com.github.ben-manes.versions' version '0.51.0' // check for out-of-date dependencies (run 'dependencyUpdates' manually)
id 'org.sonatype.gradle.plugins.scan' version '2.8.3' // scan for vulnerabilities
id "org.sonarqube" version "5.1.0.4882"// sonarQube analysis
}

group = 'com.imsweb'
Expand All @@ -24,18 +24,18 @@ repositories {
}

dependencies {
api 'com.imsweb:layout:5.5'
api 'com.imsweb:naaccr-xml:10.1'
api 'com.imsweb:layout:5.7'
api 'com.imsweb:naaccr-xml:11.1'

implementation 'com.imsweb:seerutils:5.6'
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'commons-io:commons-io:2.15.1'
implementation 'org.apache.commons:commons-lang3:3.16.0'
implementation 'commons-io:commons-io:2.16.1'

testImplementation 'com.imsweb:validation:3.2'
testImplementation 'com.imsweb:staging-client-java:11.0.0'
testImplementation 'com.imsweb:staging-client-java-cs:11.0.0'
testImplementation 'com.imsweb:staging-client-java-eod-public:11.0.0'
testImplementation 'com.imsweb:staging-client-java-tnm:11.0.0'
testImplementation 'com.imsweb:staging-client-java:11.3.0'
testImplementation 'com.imsweb:staging-client-java-cs:11.3.0'
testImplementation 'com.imsweb:staging-client-java-eod-public:11.3.0'
testImplementation 'com.imsweb:staging-client-java-tnm:11.3.0'
testImplementation 'junit:junit:4.13.2'
}

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.5'
gradleVersion = '8.9'
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.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit e1c1c80

Please sign in to comment.