Skip to content

Commit 8eb4261

Browse files
committed
updated dependencies
1 parent c2477ba commit 8eb4261

3 files changed

Lines changed: 35 additions & 2 deletions

File tree

jcp-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<jcp.test.version>7.0.5</jcp.test.version>
12+
<jcp.test.version>7.0.6-SNAPSHOT</jcp.test.version>
1313
<junit.version>5.4.2</junit.version>
1414
<maven.compiler.source>1.8</maven.compiler.source>
1515
<maven.compiler.target>1.8</maven.compiler.target>

jcp/pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,12 @@
133133
<artifactId>file-management</artifactId>
134134
<version>3.0.0</version>
135135
<scope>provided</scope>
136+
<exclusions>
137+
<exclusion>
138+
<groupId>commons-io</groupId>
139+
<artifactId>commons-io</artifactId>
140+
</exclusion>
141+
</exclusions>
136142
</dependency>
137143
<dependency>
138144
<groupId>commons-io</groupId>
@@ -152,12 +158,18 @@
152158
<dependency>
153159
<groupId>xerces</groupId>
154160
<artifactId>xercesImpl</artifactId>
155-
<version>2.12.1</version>
161+
<version>2.12.2</version>
156162
</dependency>
157163
<dependency>
158164
<groupId>xalan</groupId>
159165
<artifactId>xalan</artifactId>
160166
<version>2.7.2</version>
167+
<exclusions>
168+
<exclusion>
169+
<groupId>xml-apis</groupId>
170+
<artifactId>xml-apis</artifactId>
171+
</exclusion>
172+
</exclusions>
161173
</dependency>
162174
<dependency>
163175
<groupId>xml-apis</groupId>

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,5 +159,26 @@
159159
</plugin>
160160
</plugins>
161161
</pluginManagement>
162+
<plugins>
163+
<plugin>
164+
<groupId>org.apache.maven.plugins</groupId>
165+
<artifactId>maven-enforcer-plugin</artifactId>
166+
<version>3.0.0</version>
167+
<executions>
168+
<execution>
169+
<id>no-duplicate-declared-dependencies</id>
170+
<goals>
171+
<goal>enforce</goal>
172+
</goals>
173+
<configuration>
174+
<rules>
175+
<banDuplicatePomDependencyVersions/>
176+
<!-- <dependencyConvergence/>-->
177+
</rules>
178+
</configuration>
179+
</execution>
180+
</executions>
181+
</plugin>
182+
</plugins>
162183
</build>
163184
</project>

0 commit comments

Comments
 (0)