summaryrefslogtreecommitdiffstats
path: root/parent
diff options
context:
space:
mode:
authorIlpo Ruotsalainen <lonewolf@iki.fi>2019-01-04 15:10:46 +0100
committerGitHub <noreply@github.com>2019-01-04 15:10:46 +0100
commit25dae9726666dc3372684a8393a9ad5933990eb6 (patch)
treeb1a1bcbf4dc6d900328195afb0010019b4e16dc5 /parent
parent456859b56b8a16627e92274e26ee489c2fcb473d (diff)
parentd6099a6267af76ca9a53af56a42e596f02940818 (diff)
Merge pull request #7964 from vespa-engine/iruotsalainen/enable-abi-check
Enable ABI checking on modules with public APIs
Diffstat (limited to 'parent')
-rw-r--r--parent/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/parent/pom.xml b/parent/pom.xml
index 168e5ec8d7e..5137a7cf171 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -264,6 +264,22 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>abi-check-plugin</artifactId>
+ <version>${project.version}</version>
+ <configuration>
+ <publicApiAnnotation>com.yahoo.api.annotations.PublicApi</publicApiAnnotation>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>abicheck</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
</build>