Author: rvs
Date: Tue Oct 25 01:27:17 2011
New Revision: 1188482
URL: http://svn.apache.org/viewvc?rev=1188482&view=rev
Log:
BIGTOP-155. need to implement a uniform way of versioning dependencies for test
artifacts
Modified:
incubator/bigtop/trunk/bigtop-tests/test-artifacts/flume/pom.xml
incubator/bigtop/trunk/bigtop-tests/test-artifacts/hadoop/pom.xml
incubator/bigtop/trunk/bigtop-tests/test-artifacts/hbase/pom.xml
incubator/bigtop/trunk/bigtop-tests/test-artifacts/oozie/pom.xml
incubator/bigtop/trunk/bigtop-tests/test-artifacts/pom.xml
incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/pom.xml
Modified: incubator/bigtop/trunk/bigtop-tests/test-artifacts/flume/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-tests/test-artifacts/flume/pom.xml?rev=1188482&r1=1188481&r2=1188482&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-tests/test-artifacts/flume/pom.xml (original)
+++ incubator/bigtop/trunk/bigtop-tests/test-artifacts/flume/pom.xml Tue Oct 25
01:27:17 2011
@@ -34,7 +34,6 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
- <version>0.20.2</version>
</dependency>
</dependencies>
</project>
Modified: incubator/bigtop/trunk/bigtop-tests/test-artifacts/hadoop/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-tests/test-artifacts/hadoop/pom.xml?rev=1188482&r1=1188481&r2=1188482&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-tests/test-artifacts/hadoop/pom.xml (original)
+++ incubator/bigtop/trunk/bigtop-tests/test-artifacts/hadoop/pom.xml Tue Oct
25 01:27:17 2011
@@ -34,12 +34,10 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
- <version>0.20.2</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-test</artifactId>
- <version>0.20.2</version>
</dependency>
</dependencies>
Modified: incubator/bigtop/trunk/bigtop-tests/test-artifacts/hbase/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-tests/test-artifacts/hbase/pom.xml?rev=1188482&r1=1188481&r2=1188482&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-tests/test-artifacts/hbase/pom.xml (original)
+++ incubator/bigtop/trunk/bigtop-tests/test-artifacts/hbase/pom.xml Tue Oct 25
01:27:17 2011
@@ -29,4 +29,20 @@
<artifactId>hbase-smoke</artifactId>
<version>0.2.0-incubating-SNAPSHOT</version>
<name>hbasesmoke</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase</artifactId>
+ <type>test-jar</type>
+ </dependency>
+ </dependencies>
</project>
Modified: incubator/bigtop/trunk/bigtop-tests/test-artifacts/oozie/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-tests/test-artifacts/oozie/pom.xml?rev=1188482&r1=1188481&r2=1188482&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-tests/test-artifacts/oozie/pom.xml (original)
+++ incubator/bigtop/trunk/bigtop-tests/test-artifacts/oozie/pom.xml Tue Oct 25
01:27:17 2011
@@ -34,7 +34,6 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
- <version>0.20.2</version>
</dependency>
</dependencies>
</project>
Modified: incubator/bigtop/trunk/bigtop-tests/test-artifacts/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-tests/test-artifacts/pom.xml?rev=1188482&r1=1188481&r2=1188482&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-tests/test-artifacts/pom.xml (original)
+++ incubator/bigtop/trunk/bigtop-tests/test-artifacts/pom.xml Tue Oct 25
01:27:17 2011
@@ -42,13 +42,56 @@
<module>sqoop</module>
</modules>
+ <properties>
+ <junit.version>4.8.2</junit.version>
+ <itest-common.version>0.2.0-incubating-SNAPSHOT</itest-common.version>
+ <hadoop.version>0.20.205.0</hadoop.version>
+ <pig.version>0.9.1</pig.version>
+ <sqoop.version>1.3.0</sqoop.version>
+ <hbase.version>0.90.4</hbase.version>
+ </properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${junit.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.bigtop.itest</groupId>
+ <artifactId>itest-common</artifactId>
+ <version>${itest-common.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-core</artifactId>
+ <version>${hadoop.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-test</artifactId>
+ <version>${hadoop.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase</artifactId>
+ <version>${hbase.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase</artifactId>
+ <version>${hbase.version}</version>
+ <type>test-jar</type>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<dependencies>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>itest-common</artifactId>
- <version>0.2.0-incubating-SNAPSHOT</version>
</dependency>
-
</dependencies>
<build>
Modified: incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/pom.xml?rev=1188482&r1=1188481&r2=1188482&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/pom.xml (original)
+++ incubator/bigtop/trunk/bigtop-tests/test-execution/smokes/pom.xml Tue Oct
25 01:27:17 2011
@@ -39,7 +39,7 @@
-->
<itest-conf.version>0.2.0-incubating-SNAPSHOT</itest-conf.version>
<itest-common.version>0.2.0-incubating-SNAPSHOT</itest-common.version>
- <hadoop.version>0.20.2</hadoop.version>
+ <hadoop.version>0.20.205.0</hadoop.version>
<hadoop-smoke.version>0.2.0-incubating-SNAPSHOT</hadoop-smoke.version>
<flume-smoke.version>0.2.0-incubating-SNAPSHOT</flume-smoke.version>
<hbase-smoke.version>0.2.0-incubating-SNAPSHOT</hbase-smoke.version>
@@ -47,8 +47,8 @@
<oozie-smoke.version>0.2.0-incubating-SNAPSHOT</oozie-smoke.version>
<package-smoke.version>0.2.0-incubating-SNAPSHOT</package-smoke.version>
<pig-smoke.version>0.9.0-SNAPSHOT</pig-smoke.version>
- <pig.version>0.9.0</pig.version>
- <sqoop.version>1.2.0-cdh3u0</sqoop.version>
+ <pig.version>0.9.1</pig.version>
+ <sqoop.version>1.3.0</sqoop.version>
<!--
End of BOM definitions
-->