summaryrefslogtreecommitdiffstats
path: root/vespa-application-maven-plugin/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahoo-inc.com>2017-06-19 21:41:37 +0200
committerBjørn Christian Seime <bjorncs@yahoo-inc.com>2017-06-21 16:43:50 +0200
commitfb30ff0eb42b07210a1b75837d44a353a3c46a14 (patch)
tree1f0efd02691e95945b0fa310ea3db5b5c9f9f245 /vespa-application-maven-plugin/pom.xml
parentc8ec2484db4a81b49ec628e0eb2d091a209c1297 (diff)
This module contains no Scala code
Diffstat (limited to 'vespa-application-maven-plugin/pom.xml')
-rw-r--r--vespa-application-maven-plugin/pom.xml30
1 files changed, 9 insertions, 21 deletions
diff --git a/vespa-application-maven-plugin/pom.xml b/vespa-application-maven-plugin/pom.xml
index 57ef584ece0..2464c8208ad 100644
--- a/vespa-application-maven-plugin/pom.xml
+++ b/vespa-application-maven-plugin/pom.xml
@@ -40,11 +40,6 @@
<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>
@@ -54,23 +49,16 @@
<build>
<plugins>
<plugin>
- <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>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <args>
- <arg>-unchecked</arg>
- <arg>-deprecation</arg>
- <arg>-explaintypes</arg>
- </args>
+ <source>1.8</source>
+ <target>1.8</target>
+ <compilerArgs>
+ <arg>-Xlint:all</arg>
+ <arg>-Xlint:-processing</arg>
+ <arg>-Werror</arg>
+ </compilerArgs>
</configuration>
</plugin>
<plugin>