Fixing all plugins to 0.9 version on build-std-ant-plugin

git-svn-id: https://svn.apache.org/repos/asf/incubator/easyant/buildtypes/trunk@1356492 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/build-std-ant-plugin/module.ivy b/build-std-ant-plugin/module.ivy
index 8ac21c5..12dea27 100644
--- a/build-std-ant-plugin/module.ivy
+++ b/build-std-ant-plugin/module.ivy
@@ -15,7 +15,7 @@
    limitations under the License.
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
-    <info organisation="org.apache.easyant.buildtypes" module="build-std-ant-plugin" revision="0.2">
+    <info organisation="org.apache.easyant.buildtypes" module="build-std-ant-plugin" revision="0.9">
            <description>A standard build for true ant plugins, relying on standard phases, and providing compilation, execution and unit tests</description>
            <ea:build organisation="org.apache.easyant.buildtypes" module="build-std-ant-plugin" revision="0.1"/>
         </info>
diff --git a/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant b/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant
index b7a05e3..a25480b 100644
--- a/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant
+++ b/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant
@@ -2,11 +2,11 @@
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
    this work for additional information regarding copyright ownership.
-   The ASF licenses this file to You under the Apache License, Version 2.0
+   The ASF licenses this file to You under the Apache License, Version 9.0
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       http://www.apache.org/licenses/LICENSE-9.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
@@ -24,16 +24,15 @@
 
     <property file="${org.apache.easyant.buildtypes#build-std-ant-plugin.properties.file}" />
 
-    <ea:import mrid="org.apache.easyant.plugins#clean-std;0.2" />
-    <ea:import mrid="org.apache.easyant.plugins#resources-std;0.2" />
-    <ea:import mrid="org.apache.easyant.plugins#default-version-strategy;0.2" />
-    <ea:import mrid="org.apache.easyant.plugins#ivy-provisioning;0.2" />
-    <ea:import mrid="org.apache.easyant.plugins#easyant-plugin-publication;0.2" />
-    <ea:import mrid="org.apache.easyant.plugins#antunit;0.2" />
+    <ea:import mrid="org.apache.easyant.plugins#clean-std;0.9" />
+    <ea:import mrid="org.apache.easyant.plugins#resources-std;0.9" />
+    <ea:import mrid="org.apache.easyant.plugins#default-version-strategy;0.9" />
+    <ea:import mrid="org.apache.easyant.plugins#ivy-provisioning;0.9" />
+    <ea:import mrid="org.apache.easyant.plugins#easyant-plugin-publication;0.9" />
 
     <!-- friendly target names -->
     <target name="clean" depends="clean-std:clean" description="Clean the project" />
-    <target name="test" depends="antunit:run" description="Launch the unit tests" />
     <target name="dist" depends="easyant-plugin-publication:before-test" description="Produce every artifact to be distributed" />
+    <target name="publish" depends="default-version-strategy:release,ivy-publication:release"/>
 
 </project>