diff options
author | Brett Porter <brett@apache.org> | 2009-11-10 09:18:52 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2009-11-10 09:18:52 +0000 |
commit | bc45d3811052ee1a46a46dc448c8ab11aa81dc0f (patch) | |
tree | f4af4b563a8b9a5648c3a5c62c79213286aebd69 /archiva-modules/archiva-web/archiva-webapp-test/pom.xml | |
parent | 3badf128c045768fa25843b91b452cfa12aa5f46 (diff) | |
download | archiva-bc45d3811052ee1a46a46dc448c8ab11aa81dc0f.tar.gz archiva-bc45d3811052ee1a46a46dc448c8ab11aa81dc0f.zip |
make Tomcat version a property
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@834395 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-web/archiva-webapp-test/pom.xml')
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp-test/pom.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml index 4f6ae178a..c71e82cb4 100644 --- a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml +++ b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml @@ -265,7 +265,7 @@ <fileset dir="src/test/${container.name}" /> </copy> <copy - todir="${project.build.directory}/installs/${container.name}/apache-tomcat-5.5.27/apache-tomcat-5.5.27/common/lib"> + todir="${project.build.directory}/installs/${container.name}/apache-tomcat-${tomcat5x.version}/apache-tomcat-${tomcat5x.version}/common/lib"> <fileset dir="${project.build.directory}/providedDependencies"> <include name="**/*.jar" /> </fileset> @@ -392,7 +392,7 @@ </activation> <properties> <container.name>tomcat5x</container.name> - <container.url>http://archive.apache.org/dist/tomcat/tomcat-5/v5.5.27/bin/apache-tomcat-5.5.27.zip</container.url> + <container.url>http://archive.apache.org/dist/tomcat/tomcat-5/v${tomcat5x.version}/bin/apache-tomcat-${tomcat5x.version}.zip</container.url> </properties> </profile> <profile> @@ -463,4 +463,7 @@ </build> </profile> </profiles> + <properties> + <tomcat5x.version>5.5.27</tomcat5x.version> + </properties> </project> |