Skip to content

Commit

Permalink
Configure japicmp to work with new single spring boot starter
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemers committed May 14, 2021
1 parent ce743aa commit 9f8e5c6
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
27 changes: 27 additions & 0 deletions support/spring-boot/spring-boot-starter/pom.xml
Expand Up @@ -86,4 +86,31 @@

</dependencies>

<build>
<plugins>
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<executions>
<execution>
<id>single-boot-jar</id>
<goals>
<goal>cmp</goal>
</goals>
<configuration>
<oldVersion>
<dependency>
<!-- This project was moved into another jar -->
<groupId>${project.groupId}</groupId>
<artifactId>shiro-spring-boot-web-starter</artifactId>
<version>${shiro.previousVersion}</version>
<type>jar</type>
</dependency>
</oldVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
6 changes: 6 additions & 0 deletions support/spring-boot/spring-boot-web-starter/pom.xml
Expand Up @@ -31,6 +31,12 @@

<artifactId>shiro-spring-boot-web-starter</artifactId>
<name>Apache Shiro :: Support :: Spring Boot Web</name>
<description>Deprecated, these classes were moved to shiro-spring-boot-starter</description>

<properties>
<!-- japicmp config was moved into the combine 'shiro-spring-boot-starter' module -->
<japicmp.skip>true</japicmp.skip>
</properties>

<dependencies>

Expand Down

0 comments on commit 9f8e5c6

Please sign in to comment.