5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-09 07:30:04 +08:00

SQOOP-889: Move tomcat related properties from dist/pom.xml to root pom.xml

(Jarcec Cecho via Cheolsoo Park)
This commit is contained in:
Cheolsoo Park 2013-02-22 12:03:09 -08:00
parent 6eb27b821d
commit 4e629866be
2 changed files with 4 additions and 8 deletions

9
dist/pom.xml vendored
View File

@ -21,13 +21,6 @@ limitations under the License.
<modelVersion>4.0.0</modelVersion>
<properties>
<tomcat.majorVersion>6</tomcat.majorVersion>
<tomcat.minorVersion>0.36</tomcat.minorVersion>
<tomcat.version>${tomcat.majorVersion}.${tomcat.minorVersion}</tomcat.version>
</properties>
<parent>
<groupId>org.apache</groupId>
<artifactId>sqoop</artifactId>
@ -155,7 +148,7 @@ limitations under the License.
</copy>
<!-- Build server directory -->
<get src="http://archive.apache.org/dist/tomcat/tomcat-${tomcat.majorVersion}/v${tomcat.version}/bin/apache-tomcat-${tomcat.version}.tar.gz"
<get src="http://archive.apache.org/dist/tomcat/tomcat-${tomcat.major.version}/v${tomcat.version}/bin/apache-tomcat-${tomcat.version}.tar.gz"
dest="target/apache-tomcat.tar.gz" verbose="true" skipexisting="true"/>
<untar src="target/apache-tomcat.tar.gz" dest="target" compression="gzip"/>
<move file="target/apache-tomcat-${tomcat.version}" tofile="target/sqoop-${project.version}-bin-hadoop${hadoop.profile}/server"/>

View File

@ -103,6 +103,9 @@ limitations under the License.
<log4j.version>1.2.16</log4j.version>
<servlet.version>2.5</servlet.version>
<cargo.version>1.3.2</cargo.version>
<tomcat.major.version>6</tomcat.major.version>
<tomcat.minor.version>0.36</tomcat.minor.version>
<tomcat.version>${tomcat.major.version}.${tomcat.minor.version}</tomcat.version>
</properties>
<dependencies>