You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2016/06/13 16:51:27 UTC

[1/2] incubator-beam git commit: Port cleanupDaemonThreads fix to archetype module

Repository: incubator-beam
Updated Branches:
  refs/heads/master be05942da -> fe5b8db6c


Port cleanupDaemonThreads fix to archetype module


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/51030829
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/51030829
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/51030829

Branch: refs/heads/master
Commit: 51030829ef53001eb7db608fd56bcf1b4bea4249
Parents: be05942
Author: Scott Wegner <sw...@google.com>
Authored: Fri Jun 10 12:52:43 2016 -0700
Committer: Luke Cwik <lc...@google.com>
Committed: Mon Jun 13 09:47:22 2016 -0700

----------------------------------------------------------------------
 .../src/main/resources/archetype-resources/pom.xml     | 13 +++++++++++++
 .../src/main/resources/archetype-resources/pom.xml     | 13 +++++++++++++
 .../test/resources/projects/basic/reference/pom.xml    | 13 +++++++++++++
 3 files changed, 39 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/51030829/sdks/java/maven-archetypes/examples/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/sdks/java/maven-archetypes/examples/src/main/resources/archetype-resources/pom.xml b/sdks/java/maven-archetypes/examples/src/main/resources/archetype-resources/pom.xml
index d86b9cc..ccc190b 100644
--- a/sdks/java/maven-archetypes/examples/src/main/resources/archetype-resources/pom.xml
+++ b/sdks/java/maven-archetypes/examples/src/main/resources/archetype-resources/pom.xml
@@ -88,6 +88,19 @@
         </dependencies>
       </plugin>
     </plugins>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <version>1.4.0</version>
+          <configuration>
+            <cleanupDaemonThreads>false</cleanupDaemonThreads>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
   <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/51030829/sdks/java/maven-archetypes/starter/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/sdks/java/maven-archetypes/starter/src/main/resources/archetype-resources/pom.xml b/sdks/java/maven-archetypes/starter/src/main/resources/archetype-resources/pom.xml
index 838aa7c..bd2de9c 100644
--- a/sdks/java/maven-archetypes/starter/src/main/resources/archetype-resources/pom.xml
+++ b/sdks/java/maven-archetypes/starter/src/main/resources/archetype-resources/pom.xml
@@ -36,6 +36,19 @@
         </configuration>
       </plugin>
     </plugins>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <version>1.4.0</version>
+          <configuration>
+            <cleanupDaemonThreads>false</cleanupDaemonThreads>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
   <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/51030829/sdks/java/maven-archetypes/starter/src/test/resources/projects/basic/reference/pom.xml
----------------------------------------------------------------------
diff --git a/sdks/java/maven-archetypes/starter/src/test/resources/projects/basic/reference/pom.xml b/sdks/java/maven-archetypes/starter/src/test/resources/projects/basic/reference/pom.xml
index e7cfb1d..6ae83d5 100644
--- a/sdks/java/maven-archetypes/starter/src/test/resources/projects/basic/reference/pom.xml
+++ b/sdks/java/maven-archetypes/starter/src/test/resources/projects/basic/reference/pom.xml
@@ -36,6 +36,19 @@
         </configuration>
       </plugin>
     </plugins>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <version>1.4.0</version>
+          <configuration>
+            <cleanupDaemonThreads>false</cleanupDaemonThreads>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
   <dependencies>


[2/2] incubator-beam git commit: [BEAM-330] Port cleanupDaemonThreads fix to archetype module

Posted by lc...@apache.org.
[BEAM-330] Port cleanupDaemonThreads fix to archetype module

This closes #444.


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/fe5b8db6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/fe5b8db6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/fe5b8db6

Branch: refs/heads/master
Commit: fe5b8db6cfefc67e8d33d4673f94611c70a0df7e
Parents: be05942 5103082
Author: Luke Cwik <lc...@google.com>
Authored: Mon Jun 13 09:48:09 2016 -0700
Committer: Luke Cwik <lc...@google.com>
Committed: Mon Jun 13 09:48:09 2016 -0700

----------------------------------------------------------------------
 .../src/main/resources/archetype-resources/pom.xml     | 13 +++++++++++++
 .../src/main/resources/archetype-resources/pom.xml     | 13 +++++++++++++
 .../test/resources/projects/basic/reference/pom.xml    | 13 +++++++++++++
 3 files changed, 39 insertions(+)
----------------------------------------------------------------------