summaryrefslogtreecommitdiffstats
path: root/application/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2018-05-24 19:00:06 +0200
committerGitHub <noreply@github.com>2018-05-24 19:00:06 +0200
commitb943622a007773040d9d96c6aff481ee65ab6825 (patch)
tree9e056e118e32502e2ffb56b2a98e0f8960f5ad7f /application/pom.xml
parent60e7c0df45d3edc088eeb8f31db51727255a7938 (diff)
Revert "Replace Scala test code in application module with equivalent Java"
Diffstat (limited to 'application/pom.xml')
-rw-r--r--application/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/application/pom.xml b/application/pom.xml
index db298451a8b..ac9ba96cb27 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -20,6 +20,10 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-library</artifactId>
+ </dependency>
+ <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>config-provisioning</artifactId>
<version>${project.version}</version>
@@ -72,6 +76,11 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.scala-lang.modules</groupId>
+ <artifactId>scala-xml_${scala.major-version}</artifactId>
+ <scope>test</scope>
+ </dependency>
<!-- All dependencies that should be visible in test classpath, but not compile classpath,
for user projects must be added in compile scope here.
@@ -158,6 +167,19 @@
</configuration>
</plugin>
<plugin>
+ <groupId>net.alchim31.maven</groupId>
+ <artifactId>scala-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>scala-test-compile</id>
+ <phase>process-test-resources</phase>
+ <goals>
+ <goal>testCompile</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>