Skip to content

Commit 791d854

Browse files
authored
Merge pull request #424 from FasterXML/add-japicmp
Add japicmp maven plugin
2 parents 6a3ed6e + 2dea4e3 commit 791d854

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

pom.xml

+33
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,39 @@
181181
<groupId>de.jjohannes</groupId>
182182
<artifactId>gradle-module-metadata-maven-plugin</artifactId>
183183
</plugin>
184+
185+
<plugin>
186+
<groupId>com.github.siom79.japicmp</groupId>
187+
<artifactId>japicmp-maven-plugin</artifactId>
188+
<version>0.15.3</version>
189+
<configuration>
190+
<oldVersion>
191+
<dependency>
192+
<groupId>com.fasterxml.jackson.module</groupId>
193+
<artifactId>jackson-module-kotlin</artifactId>
194+
<version>2.12.2</version>
195+
<type>jar</type>
196+
</dependency>
197+
</oldVersion>
198+
<newVersion>
199+
<file>
200+
<path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
201+
</file>
202+
</newVersion>
203+
<parameter>
204+
<breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
205+
<breakBuildOnSourceIncompatibleModifications>true</breakBuildOnSourceIncompatibleModifications>
206+
</parameter>
207+
</configuration>
208+
<executions>
209+
<execution>
210+
<phase>verify</phase>
211+
<goals>
212+
<goal>cmp</goal>
213+
</goals>
214+
</execution>
215+
</executions>
216+
</plugin>
184217
</plugins>
185218
</build>
186219

0 commit comments

Comments
 (0)