Skip to content

Commit ac7cf2f

Browse files
committed
Fix multi-module site build
1 parent 83164ee commit ac7cf2f

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

pom.xml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<connection>scm:git:https://gitbox.apache.org/repos/asf/commons-vfs.git</connection>
5656
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-vfs.git</developerConnection>
5757
<url>https://gitbox.apache.org/repos/asf?p=commons-vfs.git</url>
58-
<tag>commons-vfs-project-2.9.0</tag>
58+
<tag>HEAD</tag>
5959
</scm>
6060
<properties>
6161
<commons.parent.dir>${basedir}</commons.parent.dir>
@@ -114,7 +114,7 @@
114114
<japicmp.skip>false</japicmp.skip>
115115
<jacoco.skip>false</jacoco.skip>
116116
<!-- project.build.outputTimestamp is managed by Maven plugins, see https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
117-
<project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp>
117+
<project.build.outputTimestamp>2025-02-01T21:47:58Z</project.build.outputTimestamp>
118118
</properties>
119119

120120
<build>
@@ -303,6 +303,18 @@
303303
</tags>
304304
</configuration>
305305
</plugin>
306+
<plugin>
307+
<groupId>org.apache.maven.plugins</groupId>
308+
<artifactId>maven-jxr-plugin</artifactId>
309+
<reportSets>
310+
<reportSet>
311+
<reports>
312+
<report>jxr-no-fork</report>
313+
<report>test-jxr-no-fork</report>
314+
</reports>
315+
</reportSet>
316+
</reportSets>
317+
</plugin>
306318
<plugin>
307319
<groupId>com.github.spotbugs</groupId>
308320
<artifactId>spotbugs-maven-plugin</artifactId>
@@ -317,8 +329,14 @@
317329
<artifactId>maven-pmd-plugin</artifactId>
318330
<configuration>
319331
<targetJdk>${maven.compiler.target}</targetJdk>
320-
<aggregate>true</aggregate>
321332
</configuration>
333+
<reportSets>
334+
<reportSet>
335+
<reports>
336+
<report>pmd</report>
337+
</reports>
338+
</reportSet>
339+
</reportSets>
322340
</plugin>
323341
<plugin>
324342
<groupId>com.github.siom79.japicmp</groupId>

0 commit comments

Comments
 (0)