Added goal that will deploy activemq-core-test-<vrsn>.jar

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@357668 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Frederick G. Oconer 2005-12-19 09:07:34 +00:00
parent 22307339a5
commit 0bf5ab3724
1 changed files with 15 additions and 1 deletions

View File

@ -17,7 +17,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<project default="default" xmlns:j="jelly:core" xmlns:ant="jelly:ant" xmlns:license="license" xmlns:util="jelly:util" xmlns:maven="jelly:maven">
<project default="default" xmlns:j="jelly:core" xmlns:ant="jelly:ant" xmlns:license="license" xmlns:util="jelly:util" xmlns:maven="jelly:maven" xmlns:artifact="artifact">
<goal name="default" prereqs="jar:install, javadoc:api"/>
@ -201,5 +201,19 @@
<goal name="javadoc:api">
<attainGoal name="javadoc:install"/>
</goal>
<!-- ================================================================== -->
<!-- GOAL for deploying test jar -->
<!-- ================================================================== -->
<goal name="test:deploy-bin"
description="Deploy a source distribution" prereqs="test:compile">
<artifact:deploy
artifact="${basedir}/target/${pom.artifactId}-test-${pom.currentVersion}.jar"
type="jar"
project="${pom}"
/>
</goal>
</project>