You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2016/08/08 20:43:23 UTC

[1/3] incubator-beam git commit: Move test-jar back to default profile

Repository: incubator-beam
Updated Branches:
  refs/heads/master 574c3777d -> d60a0a0e4


Move test-jar back to default profile

The test jars for beam-sdks-java-core and
beam-runners-core-java are both mandatory artifacts
with testing utilities intended for general use.

These were moved out of the default profile since for most
normal projects they are optional release-time distributions,
but for us they are not.


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

Branch: refs/heads/master
Commit: a5436a31fa23cec8a5649b65e0ccfb9aa9d74e18
Parents: da31a2d
Author: Kenneth Knowles <kl...@google.com>
Authored: Tue Aug 2 13:55:13 2016 -0700
Committer: Kenneth Knowles <kl...@google.com>
Committed: Wed Aug 3 10:56:14 2016 -0700

----------------------------------------------------------------------
 pom.xml | 21 +++++++--------------
 1 file changed, 7 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/a5436a31/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3b98382..5e3601a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -149,7 +149,7 @@
 
   <profiles>
     <!-- A global profile defined for all modules for release-level verification. 
-      Slow processes such as building source, javadoc, and test jars should be limited 
+      Optional processes such as building source and javadoc should be limited 
       to this profile. -->
     <profile>
       <id>release</id>
@@ -192,19 +192,6 @@
             </plugin>
 
             <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-jar-plugin</artifactId>
-              <executions>
-                <execution>
-                  <id>default-test-jar</id>
-                  <goals>
-                    <goal>test-jar</goal>
-                  </goals>
-                </execution>
-              </executions>
-            </plugin>
-
-            <plugin>
               <groupId>org.apache.rat</groupId>
               <artifactId>apache-rat-plugin</artifactId>
               <executions>
@@ -752,6 +739,12 @@
                 <goal>jar</goal>
               </goals>
             </execution>
+            <execution>
+              <id>default-test-jar</id>
+              <goals>
+                <goal>test-jar</goal>
+              </goals>
+            </execution>
           </executions>
         </plugin>
 


[2/3] incubator-beam git commit: Remove extraneous installation on Travis

Posted by ke...@apache.org.
Remove extraneous installation on Travis


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

Branch: refs/heads/master
Commit: 2b6c873c533edb20d9fd1c29e2ef1666ee4683c2
Parents: a5436a3
Author: Kenneth Knowles <kl...@google.com>
Authored: Wed Aug 3 10:57:58 2016 -0700
Committer: Kenneth Knowles <kl...@google.com>
Committed: Wed Aug 3 10:57:58 2016 -0700

----------------------------------------------------------------------
 .travis.yml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/2b6c873c/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 45bad9a..bef61ff 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -47,9 +47,6 @@ before_install:
   - if [ "$TRAVIS_OS_NAME" == "linux" ]; then jdk_switcher use "$CUSTOM_JDK"; fi
   - export BEAM_SUREFIRE_ARGLINE="-Xmx512m"
 
-install:
-  - travis_retry mvn -B install clean -U -DskipTests=true
-
 script:
-  - travis_retry mvn -B $MAVEN_OVERRIDE install -U
+  - travis_retry mvn --batch-mode --update-snapshots $MAVEN_OVERRIDE verify
   - travis_retry testing/travis/test_wordcount.sh


[3/3] incubator-beam git commit: This closes #768

Posted by ke...@apache.org.
This closes #768


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

Branch: refs/heads/master
Commit: d60a0a0e412f51e98f6f024dfc7ec4f21d1355a4
Parents: 574c377 2b6c873
Author: Kenneth Knowles <kl...@google.com>
Authored: Mon Aug 8 13:43:07 2016 -0700
Committer: Kenneth Knowles <kl...@google.com>
Committed: Mon Aug 8 13:43:07 2016 -0700

----------------------------------------------------------------------
 .travis.yml |  5 +----
 pom.xml     | 21 +++++++--------------
 2 files changed, 8 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/d60a0a0e/pom.xml
----------------------------------------------------------------------