summaryrefslogtreecommitdiffstats
path: root/parent
diff options
context:
space:
mode:
authorIlpo Ruotsalainen <ilpo.ruotsalainen@oath.com>2018-12-21 14:57:39 +0100
committerIlpo Ruotsalainen <ilpo.ruotsalainen@oath.com>2018-12-21 14:57:39 +0100
commitd6099a6267af76ca9a53af56a42e596f02940818 (patch)
treef625e5019624502036cf4ff8594c2cc853829732 /parent
parentcd6af8e02a9b268e606afc6a40b28b4dd6864143 (diff)
Move abi-check-plugin configuration to parent.
Instead of configuring in each module separately, put all configuration to parent and let the relevant modules just enable the plugin.
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 bb74e6a5f24..87f3c1467c0 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>