Author: arvind
Date: Tue Dec 20 03:14:00 2011
New Revision: 1221085
URL: http://svn.apache.org/viewvc?rev=1221085&view=rev
Log:
SQOOP-347. Pull versions into properties in the pom.xml
(Alex Newman via Arvind Prabhakar)
Modified:
incubator/sqoop/branches/sqoop2/pom.xml
Modified: incubator/sqoop/branches/sqoop2/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sqoop/branches/sqoop2/pom.xml?rev=1221085&r1=1221084&r2=1221085&view=diff
==============================================================================
--- incubator/sqoop/branches/sqoop2/pom.xml (original)
+++ incubator/sqoop/branches/sqoop2/pom.xml Tue Dec 20 03:14:00 2011
@@ -91,6 +91,11 @@ limitations under the License.
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compile.source>1.6</maven.compile.source>
<maven.compile.target>1.6</maven.compile.target>
+ <log4j.version>1.2.16</log4j.version>
+ <json-simple.version>1.1</json-simple.version>
+ <commons-dbcp.version>1.4</commons-dbcp.version>
+ <derby.version>10.8.2.2</derby.version>
+ <junit.version>4.9</junit.version>
</properties>
<dependencies>
@@ -105,7 +110,7 @@ limitations under the License.
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
- <version>1.2.16</version>
+ <version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
@@ -115,22 +120,22 @@ limitations under the License.
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
- <version>1.1</version>
+ <version>${json-simple.version}</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
- <version>1.4</version>
+ <version>${commons-dbcp.version}</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
- <version>10.8.2.2</version>
+ <version>${derby.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.9</version>
+ <version>${junit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
@@ -293,5 +298,12 @@ limitations under the License.
<role>PPMC member</role>
</roles>
</developer>
+ <developer>
+ <id>posix4e</id>
+ <organization>OPower</organization>
+ <roles>
+ <role>committer</role>
+ </roles>
+ </developer>
</developers>
</project>
|