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/11/17 13:11:37 UTC

[1/2] incubator-beam git commit: Adds used but undeclared dependencies to archetype

Repository: incubator-beam
Updated Branches:
  refs/heads/master abd9fb3d7 -> c4089ee77


Adds used but undeclared dependencies to archetype


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

Branch: refs/heads/master
Commit: cbb360fef3f36e2646e7c6751df308035416f78e
Parents: 2011102
Author: Eugene Kirpichov <ki...@google.com>
Authored: Tue Nov 15 16:01:42 2016 -0800
Committer: Eugene Kirpichov <ki...@google.com>
Committed: Wed Nov 16 13:41:52 2016 -0800

----------------------------------------------------------------------
 sdks/java/maven-archetypes/examples/pom.xml | 42 ++++++++++++++++++++++++
 sdks/java/maven-archetypes/starter/pom.xml  |  6 ++++
 2 files changed, 48 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/cbb360fe/sdks/java/maven-archetypes/examples/pom.xml
----------------------------------------------------------------------
diff --git a/sdks/java/maven-archetypes/examples/pom.xml b/sdks/java/maven-archetypes/examples/pom.xml
index e36c4fc..b8555bc 100644
--- a/sdks/java/maven-archetypes/examples/pom.xml
+++ b/sdks/java/maven-archetypes/examples/pom.xml
@@ -90,5 +90,47 @@
       <artifactId>beam-sdks-java-io-google-cloud-platform</artifactId>
       <scope>runtime</scope>
     </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>com.google.apis</groupId>
+      <artifactId>google-api-services-bigquery</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>com.google.apis</groupId>
+      <artifactId>google-api-services-pubsub</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>com.google.http-client</groupId>
+      <artifactId>google-http-client</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>com.google.api-client</groupId>
+      <artifactId>google-api-client</artifactId>
+      <scope>runtime</scope>
+    </dependency>
   </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/cbb360fe/sdks/java/maven-archetypes/starter/pom.xml
----------------------------------------------------------------------
diff --git a/sdks/java/maven-archetypes/starter/pom.xml b/sdks/java/maven-archetypes/starter/pom.xml
index c38f80c..0543470 100644
--- a/sdks/java/maven-archetypes/starter/pom.xml
+++ b/sdks/java/maven-archetypes/starter/pom.xml
@@ -79,5 +79,11 @@
       <artifactId>beam-sdks-java-core</artifactId>
       <scope>runtime</scope>
     </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <scope>runtime</scope>
+    </dependency>
   </dependencies>
 </project>


[2/2] incubator-beam git commit: Fixes a few "used but undeclared" dependency problems in starter archetype

Posted by lc...@apache.org.
Fixes a few "used but undeclared" dependency problems in starter archetype

This closes #1367


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

Branch: refs/heads/master
Commit: c4089ee7752ef6b5866bd0e124d6f8aeec5b547a
Parents: abd9fb3 cbb360f
Author: Luke Cwik <lc...@google.com>
Authored: Thu Nov 17 05:01:44 2016 -0800
Committer: Luke Cwik <lc...@google.com>
Committed: Thu Nov 17 05:01:44 2016 -0800

----------------------------------------------------------------------
 sdks/java/maven-archetypes/examples/pom.xml | 42 ++++++++++++++++++++++++
 sdks/java/maven-archetypes/starter/pom.xml  |  6 ++++
 2 files changed, 48 insertions(+)
----------------------------------------------------------------------