Skip to content

Commit 2e7038b

Browse files
committed
Fixes broken dependency report in mvn site
1 parent 2cb110a commit 2e7038b

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

pom.xml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>org.assertj</groupId>
9292
<artifactId>assertj-core</artifactId>
93-
<version>3.4.1</version>
93+
<version>3.8.0</version>
9494
<scope>test</scope>
9595
</dependency>
9696
<dependency>
@@ -222,7 +222,7 @@
222222
<classpathScope>test</classpathScope>
223223
<arguments>
224224
<argument>-classpath</argument>
225-
<classpath />
225+
<classpath/>
226226
<argument>org.javimmutable.collections.stress_test.StressTestLoop</argument>
227227
</arguments>
228228
</configuration>
@@ -238,6 +238,30 @@
238238
<autoReleaseAfterClose>true</autoReleaseAfterClose>
239239
</configuration>
240240
</plugin>
241+
<!-- change bcel library used during site generation to solve ClassFormatException -->
242+
<plugin>
243+
<groupId>org.apache.maven.plugins</groupId>
244+
<artifactId>maven-project-info-reports-plugin</artifactId>
245+
<version>2.9</version>
246+
<dependencies>
247+
<dependency>
248+
<groupId>org.apache.maven.shared</groupId>
249+
<artifactId>maven-shared-jar</artifactId>
250+
<version>1.1</version>
251+
<exclusions>
252+
<exclusion>
253+
<groupId>org.apache.bcel</groupId>
254+
<artifactId>bcel</artifactId>
255+
</exclusion>
256+
</exclusions>
257+
</dependency>
258+
<dependency>
259+
<groupId>com.google.code.findbugs</groupId>
260+
<artifactId>bcel-findbugs</artifactId>
261+
<version>6.0</version>
262+
</dependency>
263+
</dependencies>
264+
</plugin>
241265
</plugins>
242266
</build>
243267
<reporting>

0 commit comments

Comments
 (0)