You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2016/04/26 18:20:05 UTC

flink git commit: [hotfix] [build] Replace maven-scala-plugin with newer scala-maven-plugin

Repository: flink
Updated Branches:
  refs/heads/master 1ccc79891 -> 2bd6212a3


[hotfix] [build] Replace maven-scala-plugin with newer scala-maven-plugin


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/2bd6212a
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/2bd6212a
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/2bd6212a

Branch: refs/heads/master
Commit: 2bd6212a32b7e7f779c0c04f1a4ff2c5783ad4fd
Parents: 1ccc798
Author: Till Rohrmann <tr...@apache.org>
Authored: Mon Apr 25 18:39:04 2016 +0200
Committer: Till Rohrmann <tr...@apache.org>
Committed: Tue Apr 26 18:19:40 2016 +0200

----------------------------------------------------------------------
 flink-libraries/flink-ml/pom.xml | 14 +++-----------
 1 file changed, 3 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/2bd6212a/flink-libraries/flink-ml/pom.xml
----------------------------------------------------------------------
diff --git a/flink-libraries/flink-ml/pom.xml b/flink-libraries/flink-ml/pom.xml
index 0a3531e..3bc8a45 100644
--- a/flink-libraries/flink-ml/pom.xml
+++ b/flink-libraries/flink-ml/pom.xml
@@ -106,9 +106,9 @@
 	<build>
 		<plugins>
 			<plugin>
-				<groupId>org.scala-tools</groupId>
-				<artifactId>maven-scala-plugin</artifactId>
-				<version>2.15.2</version>
+				<groupId>net.alchim31.maven</groupId>
+				<artifactId>scala-maven-plugin</artifactId>
+				<version>3.2.2</version>
 				<executions>
 					<execution>
 						<goals>
@@ -117,14 +117,6 @@
 						</goals>
 					</execution>
 				</executions>
-				<configuration>
-					<sourceDir>src/main/scala</sourceDir>
-					<testSourceDir>src/test/scala</testSourceDir>
-					<jvmArgs>
-						<jvmArg>-Xms64m</jvmArg>
-						<jvmArg>-Xmx1024m</jvmArg>
-					</jvmArgs>
-				</configuration>
 			</plugin>
 
 			<plugin>