File indentation nit.
This commit is contained in:
parent
d9715f64ab
commit
c1801e6776
88
pom.xml
88
pom.xml
|
@ -222,51 +222,51 @@
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean verify apache-rat:check checkstyle:check javadoc:javadoc</defaultGoal>
|
<defaultGoal>clean verify apache-rat:check checkstyle:check javadoc:javadoc</defaultGoal>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- Fix for OpenJDK 8 now validating class-path attributes in Jar manifests. -->
|
<!-- Fix for OpenJDK 8 now validating class-path attributes in Jar manifests. -->
|
||||||
<!-- See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=912333#63 -->
|
<!-- See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=912333#63 -->
|
||||||
<useSystemClassLoader>false</useSystemClassLoader>
|
<useSystemClassLoader>false</useSystemClassLoader>
|
||||||
<includes>
|
<includes>
|
||||||
<include>**/*Test.java</include>
|
<include>**/*Test.java</include>
|
||||||
<include>**/*TestBinary.java</include>
|
<include>**/*TestBinary.java</include>
|
||||||
<include>**/*TestPermutations.java</include>
|
<include>**/*TestPermutations.java</include>
|
||||||
</includes>
|
</includes>
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>**/*AbstractTest.java</exclude>
|
<exclude>**/*AbstractTest.java</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<descriptors>
|
||||||
|
<descriptor>src/assembly/src.xml</descriptor>
|
||||||
|
<descriptor>src/assembly/bin.xml</descriptor>
|
||||||
|
</descriptors>
|
||||||
|
<!-- There are a lot of long file names. Suppress the warnings. -->
|
||||||
|
<tarLongFileMode>gnu</tarLongFileMode>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<configuration>
|
<artifactId>clirr-maven-plugin</artifactId>
|
||||||
<descriptors>
|
<version>${math.clirr.version}</version>
|
||||||
<descriptor>src/assembly/src.xml</descriptor>
|
<configuration>
|
||||||
<descriptor>src/assembly/bin.xml</descriptor>
|
<minSeverity>${minSeverity}</minSeverity>
|
||||||
</descriptors>
|
<ignoredDifferencesFile>${basedir}/clirr-ignored.xml</ignoredDifferencesFile>
|
||||||
<!-- There are a lot of long file names. Suppress the warnings. -->
|
</configuration>
|
||||||
<tarLongFileMode>gnu</tarLongFileMode>
|
<executions>
|
||||||
</configuration>
|
<execution>
|
||||||
</plugin>
|
<goals>
|
||||||
<plugin>
|
</goals>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
</execution>
|
||||||
<artifactId>clirr-maven-plugin</artifactId>
|
</executions>
|
||||||
<version>${math.clirr.version}</version>
|
</plugin>
|
||||||
<configuration>
|
|
||||||
<minSeverity>${minSeverity}</minSeverity>
|
|
||||||
<ignoredDifferencesFile>${basedir}/clirr-ignored.xml</ignoredDifferencesFile>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-pmd-plugin</artifactId>
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
<version>${math.pmd.version}</version>
|
<version>${math.pmd.version}</version>
|
||||||
|
|
Loading…
Reference in New Issue