add version info to latest as well
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114732 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e14ec414a5
commit
1bfc57a339
@ -14,6 +14,13 @@
|
||||
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/caller/</connection>
|
||||
<url>http://cvs.apache.org/viewcvs/maven-plugins/caller/</url>
|
||||
</repository>
|
||||
<versions>
|
||||
<version>
|
||||
<id>1.0</id>
|
||||
<name>1.0</name>
|
||||
<tag>MAVEN_CALLER_1_0</tag>
|
||||
</version>
|
||||
</versions>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Vincent Massol</name>
|
||||
|
||||
@ -15,6 +15,13 @@
|
||||
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/deploy/</connection>
|
||||
<url>http://cvs.apache.org/viewcvs/maven-plugins/deploy/</url>
|
||||
</repository>
|
||||
<versions>
|
||||
<version>
|
||||
<id>1.2</id>
|
||||
<name>1.2</name>
|
||||
<tag>MAVEN_DEPLOY_1_2</tag>
|
||||
</version>
|
||||
</versions>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Stéphane Mor</name>
|
||||
|
||||
@ -240,14 +240,7 @@
|
||||
/>
|
||||
<ant:move file="temp_project.xml" tofile="project.xml" />
|
||||
<log:info>Modifying POM with tag = ${tag_name}; version = ${version_name}</log:info>
|
||||
<doc:jslFile
|
||||
input="${basedir}/project.xml"
|
||||
output="${basedir}/project.xml"
|
||||
stylesheet="${plugin.resources}/pom-release.jsl"
|
||||
outputMode="xml"
|
||||
omitXmlDeclaration="false"
|
||||
prettyPrint="false"
|
||||
/>
|
||||
<attainGoal name="scm:update-pom" />
|
||||
<log:info>Committing new POM</log:info>
|
||||
<ant:cvs command="commit -m '[maven-scm] prepare a release' project.xml"
|
||||
quiet="${maven.scm.cvs.quiet}"
|
||||
@ -263,5 +256,16 @@
|
||||
failonerror="true"
|
||||
/>
|
||||
</goal>
|
||||
|
||||
<goal name="scm:update-pom">
|
||||
<doc:jslFile
|
||||
input="${basedir}/project.xml"
|
||||
output="${basedir}/project.xml"
|
||||
stylesheet="${plugin.resources}/pom-release.jsl"
|
||||
outputMode="xml"
|
||||
omitXmlDeclaration="false"
|
||||
prettyPrint="false"
|
||||
/>
|
||||
</goal>
|
||||
</project>
|
||||
|
||||
|
||||
@ -19,6 +19,11 @@
|
||||
<name>1.0</name>
|
||||
<tag>MAVEN_SCM_1_0</tag>
|
||||
</version>
|
||||
<version>
|
||||
<id>1.1</id>
|
||||
<name>1.1</name>
|
||||
<tag>MAVEN_SCM_1_1</tag>
|
||||
</version>
|
||||
<version>
|
||||
<id>SNAPSHOT</id>
|
||||
<name>SNAPSHOT</name>
|
||||
|
||||
@ -14,6 +14,13 @@
|
||||
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/struts/</connection>
|
||||
<url>http://cvs.apache.org/viewcvs/maven-plugins/struts/</url>
|
||||
</repository>
|
||||
<versions>
|
||||
<version>
|
||||
<id>1.2</id>
|
||||
<name>1.2</name>
|
||||
<tag>MAVEN_STRUTS_1_2</tag>
|
||||
</version>
|
||||
</versions>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>dIon Gillard</name>
|
||||
|
||||
@ -128,6 +128,11 @@
|
||||
<ant:copy todir="${webapp.build.lib}" file="${lib.path}"/>
|
||||
</j:if>
|
||||
<!-- END OF TO BE REMOVED -->
|
||||
|
||||
<j:set var="targetPath" value="${dep.getProperty('war.target.path')}"/>
|
||||
<j:if test="${!empty(targetPath)}">
|
||||
<ant:copy todir="${maven.war.webapp.dir}/${targetPath}" file="${lib.path}"/>
|
||||
</j:if>
|
||||
</j:forEach>
|
||||
|
||||
<util:available file="${maven.build.dest}">
|
||||
@ -210,6 +215,14 @@
|
||||
<ant:delete file="${maven.war.build.dir}/${maven.war.final.name}" quiet="true" failonerror="false"/>
|
||||
</goal>
|
||||
|
||||
<!--==================================================================-->
|
||||
<!-- In-place deployment of the web application -->
|
||||
<!--==================================================================-->
|
||||
<goal name="war:inplace"
|
||||
description="Deploy a webapp into maven.war.src - in particular setting up WEB-INF/lib and WEB-INF/classes">
|
||||
<j:set var="maven.war.webapp.dir" value="${maven.war.src}"/>
|
||||
<attainGoal name="war:webapp"/>
|
||||
</goal>
|
||||
|
||||
<!--==================================================================-->
|
||||
<!-- Special no-op goal which can be used by other plugin which need -->
|
||||
@ -219,3 +232,4 @@
|
||||
<goal name="war:load"/>
|
||||
|
||||
</project>
|
||||
|
||||
|
||||
@ -42,6 +42,15 @@
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Brett Porter</name>
|
||||
<id>bporter</id>
|
||||
<email>brett@apache.org</email>
|
||||
<organization>f2 network</organization>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
<dependencies/>
|
||||
</project>
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
<!-- The version of the project under development, e.g.
|
||||
1.1, 1.2, 2.0-dev -->
|
||||
|
||||
<currentVersion>1.0-SNAPSHOT</currentVersion>
|
||||
<currentVersion>1.0</currentVersion>
|
||||
<!-- details about the organization that 'owns' the project -->
|
||||
|
||||
<organization>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user