File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
ml-app-deployer/src/main/java/com/marklogic/appdeployer/command Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.2 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ repositories {
88}
99
1010dependencies {
11- implementation " org.springframework:spring-jdbc:6.2.10 "
12- implementation " org.postgresql:postgresql:42.7.7 "
11+ implementation " org.springframework:spring-jdbc:6.2.11 "
12+ implementation " org.postgresql:postgresql:42.7.8 "
1313}
1414
1515task selectFromSysTables (type : JavaExec ) {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
88 mavenCentral()
99 }
1010 dependencies {
11- classpath " com.marklogic:ml-gradle:6.0.0 "
11+ classpath " com.marklogic:ml-gradle:6.0.1 "
1212 }
1313}
1414
@@ -47,7 +47,7 @@ configurations {
4747configurations. all {
4848 resolutionStrategy. eachDependency { DependencyResolveDetails details ->
4949 if (details. requested. group. startsWith(' org.springframework' )) {
50- details. useVersion ' 6.2.10 '
50+ details. useVersion ' 6.2.11 '
5151 details. because ' Forcing marklogic-junit5 to use the latest version of Spring to minimize security vulnerabilities.'
5252 }
5353 }
Original file line number Diff line number Diff line change 1- version =6.1 -SNAPSHOT
1+ version =6.0 -SNAPSHOT
22
33# See https://github.com/FasterXML/jackson for more information the Jackson libraries.
44# This should match the version used by the MarkLogic Java Client.
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public abstract class AbstractCommand extends LoggingObject implements Command {
4242 private int executeSortOrder = Integer .MAX_VALUE ;
4343 private boolean storeResourceIdsAsCustomTokens = false ;
4444
45- // In 6.1.0 , changing this from FilenameFilter to ResourceFilenameFilter based on Polaris warnings on
45+ // In 6.0.1 , changing this from FilenameFilter to ResourceFilenameFilter based on Polaris warnings on
4646 // FilenameFilter. And all uses of this in the codebase involve ResourceFilenameFilter.
4747 private ResourceFilenameFilter resourceFilenameFilter = new ResourceFilenameFilter ();
4848
You can’t perform that action at this time.
0 commit comments