You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by dh...@apache.org on 2017/01/21 02:16:06 UTC

[1/2] beam git commit: Clean *.pyc files with mvn clean.

Repository: beam
Updated Branches:
  refs/heads/python-sdk 82599a241 -> c03e6f375


Clean *.pyc files with mvn clean.

Added maven-clean-plugin configuration to clean artifacts generated by
other phases of mvn.


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

Branch: refs/heads/python-sdk
Commit: 086ea8621706a0170059fec4ac8b5a8046d5098d
Parents: 82599a2
Author: Ahmet Altay <al...@google.com>
Authored: Fri Jan 20 16:29:35 2017 -0800
Committer: Dan Halperin <dh...@google.com>
Committed: Fri Jan 20 18:15:32 2017 -0800

----------------------------------------------------------------------
 pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/086ea862/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b83c4cf..563bca8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1208,6 +1208,24 @@
             </execution>
           </executions>
         </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>3.0.0</version>
+          <configuration>
+            <filesets>
+              <fileset>
+                <directory>.</directory>
+                <includes>
+                  <include>**/*.pyc</include>
+                  <include>**/*.egg-info/</include>
+                </includes>
+                <followSymlinks>false</followSymlinks>
+              </fileset>
+            </filesets>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
 


[2/2] beam git commit: This closes #1806

Posted by dh...@apache.org.
This closes #1806


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

Branch: refs/heads/python-sdk
Commit: c03e6f37595b676cfc2821f2bfa33b0a81aad092
Parents: 82599a2 086ea86
Author: Dan Halperin <dh...@google.com>
Authored: Fri Jan 20 18:15:37 2017 -0800
Committer: Dan Halperin <dh...@google.com>
Committed: Fri Jan 20 18:15:37 2017 -0800

----------------------------------------------------------------------
 pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------