Skip to content

Commit

Permalink
Merge pull request #1652 from lprimak/enable-api-compatibility-checks
Browse files Browse the repository at this point in the history
chore: re-enabled API compatibility check plugin
  • Loading branch information
lprimak authored Aug 13, 2024
2 parents e1526e1 + 5348d8a commit 7281c8e
Showing 1 changed file with 17 additions and 21 deletions.
38 changes: 17 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</distributionManagement>

<properties>
<shiro.previousVersion>1.13.0</shiro.previousVersion>
<shiro.previousVersion>2.0.0</shiro.previousVersion>
<!-- Replaced by the build number plugin at build time: -->
<buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>
<project.build.outputTimestamp>2022-03-22T23:08:15Z</project.build.outputTimestamp>
Expand Down Expand Up @@ -448,9 +448,10 @@
</oldVersion>
<parameter>
<onlyModified>true</onlyModified>
<breakBuildOnSourceIncompatibleModifications>true</breakBuildOnSourceIncompatibleModifications>
<breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
<breakBuildBasedOnSemanticVersioning>true</breakBuildBasedOnSemanticVersioning>
<postAnalysisScript>${root.dir}/src/japicmp/postAnalysisScript.groovy</postAnalysisScript>
<breakBuildBasedOnSemanticVersioning>false</breakBuildBasedOnSemanticVersioning>
<!-- <postAnalysisScript>${root.dir}/src/japicmp/postAnalysisScript.groovy</postAnalysisScript>-->
</parameter>
</configuration>
</plugin>
Expand Down Expand Up @@ -857,6 +858,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<executions>
<execution>
<id>japicmp</id>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -1783,24 +1797,6 @@
<properties>
<jacoco.skip>false</jacoco.skip>
</properties>
<build>
<plugins>
<!-- TODO: re-enable after first 2.0 release -->
<!-- it's a 2.0 release breaking changes are expected -->
<!-- <plugin>-->
<!-- <groupId>com.github.siom79.japicmp</groupId>-->
<!-- <artifactId>japicmp-maven-plugin</artifactId>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>japicmp</id>-->
<!-- <goals>-->
<!-- <goal>cmp</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
</plugins>
</build>
</profile>
<profile>
<id>skip-checkstyle</id>
Expand Down

0 comments on commit 7281c8e

Please sign in to comment.