summaryrefslogtreecommitdiffstats
path: root/vespa-application-maven-plugin/pom.xml
diff options
context:
space:
mode:
authorHarald Musum <musum@yahoo-inc.com>2017-06-20 13:39:31 +0200
committerGitHub <noreply@github.com>2017-06-20 13:39:31 +0200
commit592edb65f8ea09f235e3f7454c8990c7897e9ed4 (patch)
treeeff375b48c9d88717de53f584ebd866eb7faf56f /vespa-application-maven-plugin/pom.xml
parenta07d228369ceda3b7abab47daeb56756b38ce7a7 (diff)
Revert "Update dependencies for bundle-plugin"
Diffstat (limited to 'vespa-application-maven-plugin/pom.xml')
-rw-r--r--vespa-application-maven-plugin/pom.xml30
1 files changed, 21 insertions, 9 deletions
diff --git a/vespa-application-maven-plugin/pom.xml b/vespa-application-maven-plugin/pom.xml
index 2464c8208ad..57ef584ece0 100644
--- a/vespa-application-maven-plugin/pom.xml
+++ b/vespa-application-maven-plugin/pom.xml
@@ -40,6 +40,11 @@
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>3.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-library</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
@@ -49,16 +54,23 @@
<build>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
+ <groupId>net.alchim31.maven</groupId>
+ <artifactId>scala-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>add-source</goal>
+ <goal>compile</goal>
+ <goal>testCompile</goal>
+ </goals>
+ </execution>
+ </executions>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
- <compilerArgs>
- <arg>-Xlint:all</arg>
- <arg>-Xlint:-processing</arg>
- <arg>-Werror</arg>
- </compilerArgs>
+ <args>
+ <arg>-unchecked</arg>
+ <arg>-deprecation</arg>
+ <arg>-explaintypes</arg>
+ </args>
</configuration>
</plugin>
<plugin>