aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-02-16 15:48:10 +0100
committergjoranv <gv@verizonmedia.com>2021-02-16 16:16:26 +0100
commit7a6fa6602948b6aa5ce09b9fc18ff6cd260f0a71 (patch)
treeb1a7ce507b46dcf74cf3a1b097a4da8314bbff04
parent9f5ef7fd172d5651c9c5dcfac20e9d376568c06b (diff)
Merge pom.xml from the chain module, and clean up unnecessary stuff
-rw-r--r--processing/pom.xml38
1 files changed, 31 insertions, 7 deletions
diff --git a/processing/pom.xml b/processing/pom.xml
index 3194c0642db..2e6be8a250a 100644
--- a/processing/pom.xml
+++ b/processing/pom.xml
@@ -15,22 +15,26 @@
<packaging>jar</packaging>
<version>7-SNAPSHOT</version>
<dependencies>
+
+ <!-- COMPILE scope -->
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>annotations</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
- <artifactId>provided-dependencies</artifactId>
+ <artifactId>container-di</artifactId>
<version>${project.version}</version>
- <type>pom</type>
- <scope>provided</scope>
</dependency>
+
+ <!-- PROVIDED scope -->
<dependency>
<groupId>com.yahoo.vespa</groupId>
- <artifactId>chain</artifactId>
+ <artifactId>provided-dependencies</artifactId>
<version>${project.version}</version>
+ <type>pom</type>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
@@ -38,6 +42,14 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
+
+
+ <!-- TEST scope -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>
@@ -58,6 +70,18 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>abi-check-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>config-class-plugin</artifactId>
+ <version>${project.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>config-gen</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>