This is an automated email from the ASF dual-hosted git repository.
jwills pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/crunch.git
The following commit(s) were added to refs/heads/master by this push:
new 78f1b67 Wire up crunch-kafka to work as part of the
distribution/release process.
78f1b67 is described below
commit 78f1b672bc5afb3120f54f0af53e683bd66459bd
Author: Josh Wills <[email protected]>
AuthorDate: Tue Oct 8 10:19:03 2019 -0700
Wire up crunch-kafka to work as part of the distribution/release
process.
---
crunch-dist/pom.xml | 4 ++++
crunch-kafka/pom.xml | 12 ++++++++++++
pom.xml | 6 ++++++
3 files changed, 22 insertions(+)
diff --git a/crunch-dist/pom.xml b/crunch-dist/pom.xml
index 8575a8e..5e31ac5 100644
--- a/crunch-dist/pom.xml
+++ b/crunch-dist/pom.xml
@@ -61,6 +61,10 @@ under the License.
<groupId>org.apache.crunch</groupId>
<artifactId>crunch-contrib</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.apache.crunch</groupId>
+ <artifactId>crunch-kafka</artifactId>
+ </dependency>
</dependencies>
<build>
diff --git a/crunch-kafka/pom.xml b/crunch-kafka/pom.xml
index 32429f5..cdb7e5e 100644
--- a/crunch-kafka/pom.xml
+++ b/crunch-kafka/pom.xml
@@ -98,4 +98,16 @@ under the License.
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/pom.xml b/pom.xml
index ca689ed..ab2a93b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -189,6 +189,12 @@ under the License.
</dependency>
<dependency>
+ <groupId>org.apache.crunch</groupId>
+ <artifactId>crunch-kafka</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>