Skip to content

Commit 82838fc

Browse files
authored
Merge pull request #3 from evolvedbinary/hotfix/dependencies
Update xml-apis dependencies
2 parents 2702dee + a0b63b2 commit 82838fc

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

java5/pom.xml

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

8282
<dependencies>
8383
<dependency>
84-
<groupId>xml-apis</groupId>
84+
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
8585
<artifactId>xml-apis</artifactId>
8686
</dependency>
8787
</dependencies>

pom.xml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@
9999
<dependencyManagement>
100100
<dependencies>
101101
<dependency>
102-
<groupId>xml-apis</groupId>
102+
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
103103
<artifactId>xml-apis</artifactId>
104-
<version>1.0.b2</version>
104+
<version>1.4.02</version>
105105
</dependency>
106106
<dependency>
107107
<groupId>junit</groupId>
@@ -114,6 +114,11 @@
114114
<build>
115115
<pluginManagement>
116116
<plugins>
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-dependency-plugin</artifactId>
120+
<version>3.9.0</version>
121+
</plugin>
117122
<plugin>
118123
<groupId>org.apache.maven.plugins</groupId>
119124
<artifactId>maven-compiler-plugin</artifactId>
@@ -182,6 +187,21 @@
182187
</pluginManagement>
183188

184189
<plugins>
190+
<plugin>
191+
<groupId>org.apache.maven.plugins</groupId>
192+
<artifactId>maven-dependency-plugin</artifactId>
193+
<executions>
194+
<execution>
195+
<id>analyze</id>
196+
<goals>
197+
<goal>analyze-only</goal>
198+
</goals>
199+
<configuration>
200+
<failOnWarning>true</failOnWarning>
201+
</configuration>
202+
</execution>
203+
</executions>
204+
</plugin>
185205
<plugin>
186206
<groupId>org.apache.maven.plugins</groupId>
187207
<artifactId>maven-release-plugin</artifactId>

util/pom.xml

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

9696
<dependencies>
9797
<dependency>
98-
<groupId>xml-apis</groupId>
98+
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
9999
<artifactId>xml-apis</artifactId>
100100
</dependency>
101101
<dependency>

0 commit comments

Comments
 (0)