mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-09 11:35:28 +00:00
Fix and update site build (except jdepend/site broken compatibility)
This commit is contained in:
parent
6aba9f02fd
commit
1e6ccae884
80
pom.xml
80
pom.xml
@ -590,12 +590,16 @@
|
|||||||
<commons.rc.version>RC1</commons.rc.version>
|
<commons.rc.version>RC1</commons.rc.version>
|
||||||
<checkstyle.version>3.1.2</checkstyle.version>
|
<checkstyle.version>3.1.2</checkstyle.version>
|
||||||
<checkstyle.dep.version>9.3</checkstyle.dep.version>
|
<checkstyle.dep.version>9.3</checkstyle.dep.version>
|
||||||
|
<commons.pmd.version>3.17.0</commons.pmd.version>
|
||||||
|
<commons.pmd-impl.version>6.46.0</commons.pmd-impl.version>
|
||||||
|
|
||||||
<commons.site.path>collections</commons.site.path>
|
<commons.site.path>collections</commons.site.path>
|
||||||
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-collections</commons.scmPubUrl>
|
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-collections</commons.scmPubUrl>
|
||||||
<commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
|
<commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
|
||||||
|
|
||||||
<!-- Override clirr version to enable clirr on Java 8 -->
|
<commons.rat.version>0.14</commons.rat.version>
|
||||||
|
<!-- Skip CLIRR in favor of JApiCmp -->
|
||||||
|
<clirr.skip>true</clirr.skip>
|
||||||
<commons.clirr.version>2.8</commons.clirr.version>
|
<commons.clirr.version>2.8</commons.clirr.version>
|
||||||
<commons.jacoco.version>0.8.8</commons.jacoco.version>
|
<commons.jacoco.version>0.8.8</commons.jacoco.version>
|
||||||
<commons.junit.version>5.8.2</commons.junit.version>
|
<commons.junit.version>5.8.2</commons.junit.version>
|
||||||
@ -614,6 +618,40 @@
|
|||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean verify apache-rat:check checkstyle:check japicmp:cmp javadoc:javadoc</defaultGoal>
|
<defaultGoal>clean verify apache-rat:check checkstyle:check japicmp:cmp javadoc:javadoc</defaultGoal>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
|
<version>${commons.pmd.version}</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.sourceforge.pmd</groupId>
|
||||||
|
<artifactId>pmd-core</artifactId>
|
||||||
|
<version>${commons.pmd-impl.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.sourceforge.pmd</groupId>
|
||||||
|
<artifactId>pmd-java</artifactId>
|
||||||
|
<version>${commons.pmd-impl.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.sourceforge.pmd</groupId>
|
||||||
|
<artifactId>pmd-javascript</artifactId>
|
||||||
|
<version>${commons.pmd-impl.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.sourceforge.pmd</groupId>
|
||||||
|
<artifactId>pmd-jsp</artifactId>
|
||||||
|
<version>${commons.pmd-impl.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<configuration>
|
||||||
|
<targetJdk>${maven.compiler.target}</targetJdk>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
@ -767,37 +805,16 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>com.github.siom79.japicmp</groupId>
|
||||||
<artifactId>clirr-maven-plugin</artifactId>
|
<artifactId>japicmp-maven-plugin</artifactId>
|
||||||
<version>${commons.clirr.version}</version>
|
|
||||||
<configuration>
|
|
||||||
<minSeverity>${minSeverity}</minSeverity>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>com.github.spotbugs</groupId>
|
||||||
<artifactId>findbugs-maven-plugin</artifactId>
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
||||||
<version>${commons.findbugs.version}</version>
|
|
||||||
<configuration>
|
|
||||||
<threshold>Normal</threshold>
|
|
||||||
<effort>Default</effort>
|
|
||||||
<excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-pmd-plugin</artifactId>
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
<version>3.17.0</version>
|
|
||||||
<configuration>
|
|
||||||
<targetJdk>${maven.compiler.target}</targetJdk>
|
|
||||||
</configuration>
|
|
||||||
<reportSets>
|
|
||||||
<reportSet>
|
|
||||||
<reports>
|
|
||||||
<report>pmd</report>
|
|
||||||
<report>cpd</report>
|
|
||||||
</reports>
|
|
||||||
</reportSet>
|
|
||||||
</reportSets>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</reporting>
|
</reporting>
|
||||||
@ -815,7 +832,6 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-antrun-plugin</artifactId>
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
<version>3.1.0</version>
|
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>prepare-checkout</id>
|
<id>prepare-checkout</id>
|
||||||
@ -824,7 +840,7 @@
|
|||||||
<goal>run</goal>
|
<goal>run</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<tasks>
|
<target>
|
||||||
<exec executable="svn">
|
<exec executable="svn">
|
||||||
<arg line="checkout --depth immediates ${commons.scmPubUrl} ${commons.scmPubCheckoutDirectory}" />
|
<arg line="checkout --depth immediates ${commons.scmPubUrl} ${commons.scmPubCheckoutDirectory}" />
|
||||||
</exec>
|
</exec>
|
||||||
@ -839,7 +855,7 @@
|
|||||||
<exec executable="svn">
|
<exec executable="svn">
|
||||||
<arg line="update --set-depth infinity ${dirs}" />
|
<arg line="update --set-depth infinity ${dirs}" />
|
||||||
</exec>
|
</exec>
|
||||||
</tasks>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
@ -22,20 +22,23 @@
|
|||||||
<href>/index.html</href>
|
<href>/index.html</href>
|
||||||
</bannerRight>
|
</bannerRight>
|
||||||
|
|
||||||
<menu name="Commons Collections">
|
<body>
|
||||||
<item name="Overview" href="/index.html"/>
|
<menu name="Commons Collections">
|
||||||
<item name="Download" href="/download_collections.cgi"/>
|
<item name="Overview" href="/index.html" />
|
||||||
<item name="User Guide" href="/userguide.html"/>
|
<item name="Download" href="/download_collections.cgi" />
|
||||||
<item name="Javadoc" href="/apidocs/index.html"/>
|
<item name="User Guide" href="/userguide.html" />
|
||||||
<item name="Javadoc Archive" href="https://javadoc.io/doc/org.apache.commons/commons-collections4/latest/index.html"/>
|
<item name="Javadoc" href="/apidocs/index.html" />
|
||||||
</menu>
|
<item name="Javadoc Archive"
|
||||||
|
href="https://javadoc.io/doc/org.apache.commons/commons-collections4/latest/index.html" />
|
||||||
|
</menu>
|
||||||
|
|
||||||
<menu name="Development">
|
<menu name="Development">
|
||||||
<item name="History" href="/changes-report.html"/>
|
<item name="History" href="/changes-report.html" />
|
||||||
<item name="Mailing Lists" href="/mail-lists.html"/>
|
<item name="Mailing Lists" href="/mail-lists.html" />
|
||||||
<item name="Issue Tracking" href="/issue-tracking.html"/>
|
<item name="Issue Tracking" href="/issue-tracking.html" />
|
||||||
<item name="Team" href="/team.html"/>
|
<item name="Team" href="/team.html" />
|
||||||
<item name="Source" href="/scm.html"/>
|
<item name="Source" href="/scm.html" />
|
||||||
</menu>
|
</menu>
|
||||||
|
</body>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user