make Tomcat version a property

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@834395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2009-11-10 09:18:52 +00:00
parent 3badf128c0
commit bc45d38110
1 changed files with 5 additions and 2 deletions

View File

@ -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>