Skip to content

Commit 0a03a0c

Browse files
committed
Move revapi and japicmp to qa Maven profile
1 parent 0d92e56 commit 0a03a0c

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

pom.xml

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -192,50 +192,6 @@
192192
<skipTests>${skipTests}</skipTests>
193193
</configuration>
194194
</plugin>
195-
<plugin>
196-
<groupId>org.revapi</groupId>
197-
<artifactId>revapi-maven-plugin</artifactId>
198-
<version>0.8.2</version>
199-
<dependencies>
200-
<dependency>
201-
<groupId>org.revapi</groupId>
202-
<artifactId>revapi-java</artifactId>
203-
<version>0.13.2</version>
204-
</dependency>
205-
</dependencies>
206-
<configuration>
207-
<checkDependencies>false</checkDependencies>
208-
<failBuildOnProblemsFound>false</failBuildOnProblemsFound>
209-
<reportSeverity>breaking</reportSeverity>
210-
</configuration>
211-
<executions>
212-
<execution>
213-
<goals><goal>check</goal></goals>
214-
</execution>
215-
</executions>
216-
</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>
239195
</plugins>
240196
</build>
241197

@@ -455,6 +411,50 @@
455411
</execution>
456412
</executions>
457413
</plugin>
414+
<plugin>
415+
<groupId>org.revapi</groupId>
416+
<artifactId>revapi-maven-plugin</artifactId>
417+
<version>0.8.2</version>
418+
<dependencies>
419+
<dependency>
420+
<groupId>org.revapi</groupId>
421+
<artifactId>revapi-java</artifactId>
422+
<version>0.13.2</version>
423+
</dependency>
424+
</dependencies>
425+
<configuration>
426+
<checkDependencies>false</checkDependencies>
427+
<failBuildOnProblemsFound>false</failBuildOnProblemsFound>
428+
<reportSeverity>breaking</reportSeverity>
429+
</configuration>
430+
<executions>
431+
<execution>
432+
<goals><goal>check</goal></goals>
433+
</execution>
434+
</executions>
435+
</plugin>
436+
<plugin>
437+
<groupId>com.github.siom79.japicmp</groupId>
438+
<artifactId>japicmp-maven-plugin</artifactId>
439+
<version>0.9.3</version>
440+
<configuration>
441+
<parameter>
442+
<onlyModified>true</onlyModified>
443+
<onlyBinaryIncompatible>true</onlyBinaryIncompatible>
444+
<ignoreMissingClassesByRegularExpressions>
445+
<ignoreMissingClassesByRegularExpression>org.bouncycastle.*</ignoreMissingClassesByRegularExpression>
446+
</ignoreMissingClassesByRegularExpressions>
447+
</parameter>
448+
</configuration>
449+
<executions>
450+
<execution>
451+
<phase>verify</phase>
452+
<goals>
453+
<goal>cmp</goal>
454+
</goals>
455+
</execution>
456+
</executions>
457+
</plugin>
458458
</plugins>
459459
</build>
460460
</profile>

0 commit comments

Comments
 (0)