[hotfix] [build] Remove outdated and obsolete plugin config in flink-runtime
This removes an outdates plugin configuration for surefire, excluding
certain test data files which were way back conflicting with the test
naming pattern.
Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/b2b94632
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/b2b94632
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/b2b94632
Branch: refs/heads/master
Commit: b2b94632d88b20a0bfaf00901a485ea705ccec31
Parents: 9498f4f
Author: Stephan Ewen <[email protected]>
Authored: Sun Oct 15 16:15:18 2017 +0200
Committer: Stephan Ewen <[email protected]>
Committed: Sun Oct 15 19:08:12 2017 +0200
----------------------------------------------------------------------
flink-runtime/pom.xml | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/flink/blob/b2b94632/flink-runtime/pom.xml
----------------------------------------------------------------------
diff --git a/flink-runtime/pom.xml b/flink-runtime/pom.xml
index b59a403..a5372ed 100644
--- a/flink-runtime/pom.xml
+++ b/flink-runtime/pom.xml
@@ -360,19 +360,12 @@ under the License.
</configuration>
</plugin>
+ <!-- to increase build stability here, do not reuse
unit test JVM forks -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<reuseForks>false</reuseForks>
- <!--
<workingDirectory>${project.build.testOutputDirectory}</workingDirectory> -->
- <excludes>
-
<exclude>**/TestData.java</exclude>
-
<exclude>**/TestInstanceListener.java</exclude>
- </excludes>
- <systemPropertyVariables>
- <log.level>WARN</log.level>
- </systemPropertyVariables>
</configuration>
</plugin>
<plugin>