Skip to content

Commit ee57da6

Browse files
authored
Merge pull request #746 from marklogic/feature/22458-black-duck
MLE-22458 More Black Duck fixes
2 parents 643ecfe + dc1321a commit ee57da6

File tree

7 files changed

+28
-73
lines changed

7 files changed

+28
-73
lines changed

examples/maven-project/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,6 @@
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
</properties>
1616

17-
<dependencies>
18-
<dependency>
19-
<groupId>junit</groupId>
20-
<artifactId>junit</artifactId>
21-
<version>4.13.1</version>
22-
<scope>test</scope>
23-
</dependency>
24-
</dependencies>
25-
2617
<build>
2718
<plugins>
2819
<plugin>

examples/maven-project/src/main/java/com/marklogic/App.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

examples/maven-project/src/test/java/com/marklogic/AppTest.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

ml-app-deployer/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is not intended to be used to build this project.
1212
<modelVersion>4.0.0</modelVersion>
1313
<groupId>com.marklogic</groupId>
1414
<artifactId>ml-app-deployer</artifactId>
15-
<version>5.0.0</version>
15+
<version>5.1.0</version>
1616
<name>com.marklogic:ml-app-deployer</name>
1717
<description>Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic</description>
1818
<url>https://github.com/marklogic/ml-app-deployer</url>
@@ -40,13 +40,13 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>ml-javaclient-util</artifactId>
43-
<version>5.0.0</version>
43+
<version>5.1.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.springframework</groupId>
4848
<artifactId>spring-web</artifactId>
49-
<version>5.3.39</version>
49+
<version>6.2.8</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
@@ -70,7 +70,7 @@ It is not intended to be used to build this project.
7070
<dependency>
7171
<groupId>org.apache.commons</groupId>
7272
<artifactId>commons-lang3</artifactId>
73-
<version>3.16.0</version>
73+
<version>3.17.0</version>
7474
<scope>runtime</scope>
7575
</dependency>
7676
<dependency>

ml-gradle/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ dependencies {
99
api project(":ml-app-deployer")
1010

1111
// For MlcpTask
12-
implementation "com.marklogic:mlcp-util:1.0.1"
12+
implementation ("com.marklogic:mlcp-util:1.0.1") {
13+
// Prefer the Spring version from ml-app-deployer.
14+
exclude module: "spring-beans"
15+
}
1316

1417
// For the data movement tasks.
1518
implementation ("com.marklogic:marklogic-data-movement-components:2.8.0") {

ml-javaclient-util/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is not intended to be used to build this project.
1212
<modelVersion>4.0.0</modelVersion>
1313
<groupId>com.marklogic</groupId>
1414
<artifactId>ml-javaclient-util</artifactId>
15-
<version>5.0.0</version>
15+
<version>5.1.0</version>
1616
<name>com.marklogic:ml-javaclient-util</name>
1717
<description>Library that adds functionality on top of the MarkLogic Java Client</description>
1818
<url>https://github.com/marklogic/ml-javaclient-util</url>
@@ -40,19 +40,19 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>marklogic-client-api</artifactId>
43-
<version>7.0.0</version>
43+
<version>7.1.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.marklogic</groupId>
4848
<artifactId>marklogic-xcc</artifactId>
49-
<version>11.3.0</version>
49+
<version>11.3.1</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.springframework</groupId>
5454
<artifactId>spring-context</artifactId>
55-
<version>5.3.39</version>
55+
<version>6.2.8</version>
5656
<scope>compile</scope>
5757
</dependency>
5858
<dependency>
@@ -70,7 +70,7 @@ It is not intended to be used to build this project.
7070
<dependency>
7171
<groupId>org.slf4j</groupId>
7272
<artifactId>slf4j-api</artifactId>
73-
<version>2.0.16</version>
73+
<version>2.0.17</version>
7474
<scope>runtime</scope>
7575
</dependency>
7676
</dependencies>

pom.xml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is not intended to be used to build this project.
1212
<modelVersion>4.0.0</modelVersion>
1313
<groupId>com.marklogic</groupId>
1414
<artifactId>ml-gradle</artifactId>
15-
<version>5.0.0</version>
15+
<version>5.1.0</version>
1616
<name>com.marklogic:ml-gradle</name>
1717
<description>Gradle plugin for automating everything involving MarkLogic</description>
1818
<url>https://github.com/marklogic/ml-gradle</url>
@@ -40,25 +40,37 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>ml-app-deployer</artifactId>
43-
<version>5.0.0</version>
43+
<version>5.1.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.marklogic</groupId>
4848
<artifactId>mlcp-util</artifactId>
4949
<version>1.0.1</version>
5050
<scope>runtime</scope>
51+
<exclusions>
52+
<exclusion>
53+
<groupId>org.springframework</groupId>
54+
<artifactId>spring-beans</artifactId>
55+
</exclusion>
56+
</exclusions>
5157
</dependency>
5258
<dependency>
5359
<groupId>com.marklogic</groupId>
5460
<artifactId>marklogic-data-movement-components</artifactId>
5561
<version>2.8.0</version>
5662
<scope>runtime</scope>
63+
<exclusions>
64+
<exclusion>
65+
<groupId>com.marklogic</groupId>
66+
<artifactId>marklogic-client-api</artifactId>
67+
</exclusion>
68+
</exclusions>
5769
</dependency>
5870
<dependency>
5971
<groupId>commons-io</groupId>
6072
<artifactId>commons-io</artifactId>
61-
<version>2.16.1</version>
73+
<version>2.19.0</version>
6274
<scope>runtime</scope>
6375
</dependency>
6476
</dependencies>

0 commit comments

Comments
 (0)