summaryrefslogtreecommitdiffstats
path: root/container-jersey2/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'container-jersey2/pom.xml')
-rw-r--r--container-jersey2/pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/container-jersey2/pom.xml b/container-jersey2/pom.xml
index eb94b20700f..26dfa762032 100644
--- a/container-jersey2/pom.xml
+++ b/container-jersey2/pom.xml
@@ -54,10 +54,34 @@
<artifactId>asm</artifactId>
<version>5.0.3</version>
</dependency>
+ <dependency>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-library</artifactId>
+ </dependency>
</dependencies>
<build>
<plugins>
<plugin>
+ <groupId>net.alchim31.maven</groupId>
+ <artifactId>scala-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>compile</id>
+ <goals>
+ <goal>compile</goal>
+ </goals>
+ <phase>compile</phase>
+ </execution>
+ <execution>
+ <id>test-compile</id>
+ <goals>
+ <goal>testCompile</goal>
+ </goals>
+ <phase>test-compile</phase>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>com.yahoo.vespa</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>