You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by mx...@apache.org on 2016/10/04 13:48:37 UTC

flink git commit: [FLINK-4732] remove maven junction plugin

Repository: flink
Updated Branches:
  refs/heads/master eece0dd05 -> 5a573c6bc


[FLINK-4732] remove maven junction plugin

On Windows, the plugin downloads and executes code from the author's
web site. The downloaded file is not signed in the same way as Maven
artifacts from Maven central which have to be signed with the
developer's key. This could be a potential target for attackers.

This closes #2586


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

Branch: refs/heads/master
Commit: 5a573c6bc29c313d34981336d5bfc05185d323d2
Parents: eece0dd
Author: Maximilian Michels <mx...@apache.org>
Authored: Tue Oct 4 11:12:35 2016 +0200
Committer: Maximilian Michels <mx...@apache.org>
Committed: Tue Oct 4 15:48:16 2016 +0200

----------------------------------------------------------------------
 flink-dist/pom.xml | 29 -----------------------------
 1 file changed, 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/5a573c6b/flink-dist/pom.xml
----------------------------------------------------------------------
diff --git a/flink-dist/pom.xml b/flink-dist/pom.xml
index ec84adc..4687f20 100644
--- a/flink-dist/pom.xml
+++ b/flink-dist/pom.xml
@@ -268,35 +268,6 @@ under the License.
 				</configuration>
 			</plugin>
 
-			<!-- create a symbolic link to the build target in the root directory -->
-			<plugin>
-				<groupId>com.pyx4j</groupId>
-				<artifactId>maven-junction-plugin</artifactId>
-				<version>1.0.3</version>
-				<executions>
-					<execution>
-						<phase>package</phase>
-						<goals>
-							<goal>link</goal>
-						</goals>
-					</execution>
-					<execution>
-						<id>unlink</id>
-						<phase>pre-clean</phase>
-						<goals>
-							<goal>unlink</goal>
-						</goals>
-					</execution>
-				</executions>
-				<configuration>
-					<links>
-						<link>
-							<dst>${project.basedir}/../build-target</dst>
-							<src>${project.basedir}/target/flink-${project.version}-bin/flink-${project.version}</src>
-						</link>
-					</links>
-				</configuration>
-			</plugin>
 		</plugins>
 	</build>
 </project>