fix: Clean scio/pom.xml

This commit is contained in:
1ambda 2016-11-22 20:42:15 +09:00
parent c0dbe9b636
commit 5b3785745b

View file

@ -34,7 +34,14 @@
<description>Zeppelin Scio support</description>
<properties>
<!--library versions-->
<scio.version>0.2.4</scio.version>
<guava.version>14.0.1</guava.version> <!-- update needed -->
<!--plugin versions-->
<plugin.shade.version>2.3</plugin.shade.version>
<plugin.scala.version>2.15.2</plugin.scala.version>
<plugin.avro.version>1.7.7</plugin.avro.version>
</properties>
<dependencies>
@ -58,7 +65,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0.1</version>
<version>${guava.version}</version>
</dependency>
<dependency>
@ -79,7 +86,7 @@
<version>${scala.version}</version>
</dependency>
<!--TEST-->
<!-- test libraries -->
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.binary.version}</artifactId>
@ -99,7 +106,6 @@
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>enforce</id>
@ -111,7 +117,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
@ -122,7 +127,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>${plugin.shade.version}</version>
<configuration>
<filters>
<filter>
@ -154,7 +159,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<phase>package</phase>
@ -180,11 +184,10 @@
</executions>
</plugin>
<!-- Plugin to compile Scala code -->
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>2.15.2</version>
<version>${plugin.scala.version}</version>
<executions>
<execution>
<id>compile</id>
@ -209,11 +212,11 @@
</executions>
</plugin>
<!-- Plugin to compile avro for tests -->
<!-- plugin to compile avro for tests -->
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>1.7.7</version>
<version>${plugin.avro.version}</version>
<executions>
<execution>
<phase>generate-sources</phase>
@ -226,6 +229,7 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>