Skip to content

Commit 0d92e56

Browse files
committed
Add japicmp config
Use with 'mvn verify' DEVSIX-1056
1 parent 3f43fef commit 0d92e56

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,28 @@
214214
</execution>
215215
</executions>
216216
</plugin>
217+
<plugin>
218+
<groupId>com.github.siom79.japicmp</groupId>
219+
<artifactId>japicmp-maven-plugin</artifactId>
220+
<version>0.9.3</version>
221+
<configuration>
222+
<parameter>
223+
<onlyModified>true</onlyModified>
224+
<onlyBinaryIncompatible>true</onlyBinaryIncompatible>
225+
<ignoreMissingClassesByRegularExpressions>
226+
<ignoreMissingClassesByRegularExpression>org.bouncycastle.*</ignoreMissingClassesByRegularExpression>
227+
</ignoreMissingClassesByRegularExpressions>
228+
</parameter>
229+
</configuration>
230+
<executions>
231+
<execution>
232+
<phase>verify</phase>
233+
<goals>
234+
<goal>cmp</goal>
235+
</goals>
236+
</execution>
237+
</executions>
238+
</plugin>
217239
</plugins>
218240
</build>
219241

0 commit comments

Comments
 (0)