get japicmp working
This commit is contained in:
parent
14e7f8db27
commit
328e74448c
13
pom.xml
13
pom.xml
|
@ -589,11 +589,16 @@
|
|||
<commons.encoding>utf-8</commons.encoding>
|
||||
|
||||
<checkstyle.plugin.version>3.0.0</checkstyle.plugin.version>
|
||||
<japicmp.skip>false</japicmp.skip>
|
||||
|
||||
<!-- JMH Benchmark related properties, version, target compiler and name of the benchmarking uber jar. -->
|
||||
<jmh.version>1.21</jmh.version>
|
||||
<uberjar.name>benchmarks</uberjar.name>
|
||||
|
||||
<!-- generate report even if there are binary incompatible changes -->
|
||||
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>false</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
|
||||
<!-- 0.12.0 dies with a NullPointerException -->
|
||||
<commons.japicmp.version>0.11.1</commons.japicmp.version>
|
||||
|
||||
<!-- Commons Release Plugin -->
|
||||
<commons.bc.version>3.7</commons.bc.version>
|
||||
|
@ -622,6 +627,14 @@
|
|||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- override skip property of parent pom -->
|
||||
<plugin>
|
||||
<groupId>com.github.siom79.japicmp</groupId>
|
||||
<artifactId>japicmp-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>false</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
|
|
Loading…
Reference in New Issue