Skip to content

Commit

Permalink
This closes #2703
Browse files Browse the repository at this point in the history
  • Loading branch information
iemejia committed Apr 27, 2017
2 parents b82cd24 + 9c9ce7a commit b57ae26
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 25 deletions.
15 changes: 0 additions & 15 deletions sdks/java/io/hadoop/input-format/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
<description>IO to read data from data sources which implement Hadoop Input Format.</description>

<properties>
<log4j.core.version>2.6.2</log4j.core.version>
<hadoop.common.version>2.7.0</hadoop.common.version>
<guava.version>19.0</guava.version>
</properties>

Expand Down Expand Up @@ -61,13 +59,11 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.common.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-mapreduce-client-core</artifactId>
<version>${hadoop.common.version}</version>
<scope>provided</scope>
</dependency>

Expand All @@ -78,17 +74,6 @@
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-direct-java</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
Expand Down
10 changes: 0 additions & 10 deletions sdks/java/io/hadoop/jdk1.8-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@
</profiles>

<properties>
<log4j.core.version>2.6.2</log4j.core.version>
<hadoop.common.version>2.7.0</hadoop.common.version>
<guava.version>19.0</guava.version>
<transport.netty4.client.version>5.0.0</transport.netty4.client.version>
<netty.transport.native.epoll.version>4.1.0.CR3</netty.transport.native.epoll.version>
Expand All @@ -151,13 +149,11 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.common.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-mapreduce-client-core</artifactId>
<version>${hadoop.common.version}</version>
<scope>provided</scope>
</dependency>

Expand All @@ -173,12 +169,6 @@
<scope>test</scope>
<classifier>tests</classifier>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>transport-netty4-client</artifactId>
Expand Down
18 changes: 18 additions & 0 deletions sdks/java/io/hadoop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
<name>Apache Beam :: SDKs :: Java :: IO :: Hadoop</name>
<description>Parent for Beam SDK Hadoop IO which reads data from any source which implements Hadoop Input Format.</description>

<properties>
<log4j.core.version>2.6.2</log4j.core.version>
</properties>

<modules>
<module>input-format</module>
</modules>
Expand All @@ -50,11 +54,25 @@
<artifactId>beam-sdks-java-core</artifactId>
</dependency>

<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-direct-java</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
Expand Down

0 comments on commit b57ae26

Please sign in to comment.