Skip to content

Commit 6d69d9e

Browse files
committed
Add revapi plugin
1 parent 4423f7e commit 6d69d9e

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

msal4j-sdk/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,33 @@
171171
<build>
172172
<sourceDirectory>${project.build.directory}/delombok</sourceDirectory>
173173
<plugins>
174+
<plugin>
175+
<groupId>org.revapi</groupId>
176+
<artifactId>revapi-maven-plugin</artifactId>
177+
<version>0.15.0</version>
178+
<configuration>
179+
<analysisConfiguration>
180+
<revapi.java>
181+
<checks>
182+
<failBuildOnProblemsFound>false</failBuildOnProblemsFound>
183+
</checks>
184+
</revapi.java>
185+
</analysisConfiguration>
186+
</configuration>
187+
<dependencies>
188+
<dependency>
189+
<groupId>org.revapi</groupId>
190+
<artifactId>revapi-java</artifactId>
191+
<version>0.28.1</version>
192+
</dependency>
193+
</dependencies>
194+
<executions>
195+
<execution>
196+
<id>check</id>
197+
<goals><goal>check</goal></goals>
198+
</execution>
199+
</executions>
200+
</plugin>
174201
<plugin>
175202
<groupId>org.projectlombok</groupId>
176203
<artifactId>lombok-maven-plugin</artifactId>

0 commit comments

Comments
 (0)