Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit ff754ce

Browse files
authored
Merge pull request #504 from BillFarber/task/updateDependencies
Updating dependencies
2 parents 2fbc4a5 + 9c1d112 commit ff754ce

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ plugins {
33
id "maven-publish"
44
id "signing"
55
id "com.github.jk1.dependency-license-report" version "1.17"
6-
id "net.saliman.properties" version "1.5.1"
6+
id "net.saliman.properties" version "1.5.2"
77
id "io.snyk.gradle.plugin.snykplugin" version "0.4"
88
}
99

1010
group = "com.marklogic"
11-
version = "4.7.0"
11+
version = "4.8.0-SNAPSHOT"
1212

1313
java {
1414
sourceCompatibility = 1.8
@@ -24,8 +24,8 @@ repositories {
2424
}
2525

2626
dependencies {
27-
api 'com.marklogic:ml-javaclient-util:4.7-SNAPSHOT'
28-
api 'org.springframework:spring-web:5.3.31'
27+
api 'com.marklogic:ml-javaclient-util:4.8-SNAPSHOT'
28+
api 'org.springframework:spring-web:5.3.34'
2929
api 'com.fasterxml.jackson.core:jackson-databind:2.15.3'
3030

3131
implementation 'jaxen:jaxen:1.2.0'
@@ -37,7 +37,7 @@ dependencies {
3737
implementation 'org.jdom:jdom2:2.0.6.1'
3838

3939
// Forcing httpclient to use this to address https://snyk.io/vuln/SNYK-JAVA-COMMONSCODEC-561518
40-
implementation 'commons-codec:commons-codec:1.15'
40+
implementation 'commons-codec:commons-codec:1.16.1'
4141

4242
// For EqualsBuilder; added in 3.8.1 to support detecting if a mimetype's properties have changed or not
4343
implementation "org.apache.commons:commons-lang3:3.14.0"
@@ -57,15 +57,15 @@ dependencies {
5757
compileOnly "com.beust:jcommander:1.82"
5858
compileOnly "ch.qos.logback:logback-classic:1.3.14"
5959

60-
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
61-
testImplementation 'org.springframework:spring-test:5.3.31'
62-
testImplementation 'commons-io:commons-io:2.15.1'
60+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
61+
testImplementation 'org.springframework:spring-test:5.3.34'
62+
testImplementation 'commons-io:commons-io:2.16.1'
6363
testImplementation 'xmlunit:xmlunit:1.6'
6464

6565
// Forcing Spring to use logback for testing instead of commons-logging
6666
testImplementation "ch.qos.logback:logback-classic:1.3.14"
67-
testImplementation "org.slf4j:jcl-over-slf4j:1.7.36"
68-
testImplementation "org.slf4j:slf4j-api:1.7.36"
67+
testImplementation "org.slf4j:jcl-over-slf4j:2.0.13"
68+
testImplementation "org.slf4j:slf4j-api:2.0.13"
6969
}
7070

7171
// This ensures that Gradle includes in the published jar any non-java files under src/main/java

src/test/java/com/marklogic/appdeployer/command/modules/LoadModulesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public void loadModulesWithAssetFileFilterAndTokenReplacement() {
161161
@Test
162162
public void testServerExists() {
163163
appConfig.getFirstConfigDir().setBaseDir(new File(("src/test/resources/sample-app/db-only-config")));
164-
appConfig.setTestRestPort(8541);
164+
appConfig.setTestRestPort(8003);
165165
initializeAppDeployer(new DeployRestApiServersCommand(true), buildLoadModulesCommand());
166166

167167
appDeployer.deploy(appConfig);

0 commit comments

Comments
 (0)