You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2012/11/27 08:21:36 UTC

svn commit: r1414013 - in /incubator/easyant/plugins/trunk: abstract-compile/module.ivy antunit/module.ivy phases-std/src/main/resources/phases-std.ant

Author: jlboudart
Date: Tue Nov 27 08:21:32 2012
New Revision: 1414013

URL: http://svn.apache.org/viewvc?rev=1414013&view=rev
Log:
It's now buildtype responsability to invoke the build sequence behind high level targets such as publish-local, publish-shared and release

Modified:
    incubator/easyant/plugins/trunk/abstract-compile/module.ivy
    incubator/easyant/plugins/trunk/antunit/module.ivy
    incubator/easyant/plugins/trunk/phases-std/src/main/resources/phases-std.ant

Modified: incubator/easyant/plugins/trunk/abstract-compile/module.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/abstract-compile/module.ivy?rev=1414013&r1=1414012&r2=1414013&view=diff
==============================================================================
--- incubator/easyant/plugins/trunk/abstract-compile/module.ivy (original)
+++ incubator/easyant/plugins/trunk/abstract-compile/module.ivy Tue Nov 27 08:21:32 2012
@@ -33,4 +33,4 @@
     <publications>
         <artifact type="ant" />
     </publications>
-</ivy-module>
\ No newline at end of file
+</ivy-module>

Modified: incubator/easyant/plugins/trunk/antunit/module.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/antunit/module.ivy?rev=1414013&r1=1414012&r2=1414013&view=diff
==============================================================================
--- incubator/easyant/plugins/trunk/antunit/module.ivy (original)
+++ incubator/easyant/plugins/trunk/antunit/module.ivy Tue Nov 27 08:21:32 2012
@@ -16,7 +16,7 @@
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org">
     <info organisation="org.apache.easyant.plugins" module="antunit" revision="0.9">
-        <extends organisation="org.apache.easyant.plugins" module="parent-plugin" revision="0.1" parent="parent.ivy"/>
+        <extends organisation="org.apache.easyant.plugins" module="parent-plugin" revision="0.1"/>
         <description>This module provides antunit test features.</description>
         <ea:build organisation="org.apache.easyant.buildtypes" module="build-std-ant-plugin" revision="0.1" />
     </info>

Modified: incubator/easyant/plugins/trunk/phases-std/src/main/resources/phases-std.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/phases-std/src/main/resources/phases-std.ant?rev=1414013&r1=1414012&r2=1414013&view=diff
==============================================================================
--- incubator/easyant/plugins/trunk/phases-std/src/main/resources/phases-std.ant (original)
+++ incubator/easyant/plugins/trunk/phases-std/src/main/resources/phases-std.ant Tue Nov 27 08:21:32 2012
@@ -28,11 +28,11 @@
         description="process and deploy the package if necessary into an environment where integration tests can be run" />
     <extension-point name="verify" depends="package, test, integration-test"
         description="run any checks to verify the package is valid and meets quality criteria" />
-    <extension-point name="publish-local" depends="package"
+    <extension-point name="publish-local"
         description="publish the package into the local repository, for use as a dependency in other projects locally" />
-    <extension-point name="publish-shared" depends="package"
+    <extension-point name="publish-shared"
         description="done in an integration environment, copies the final package to the remote repository for sharing with other developers and projects" />
-    <extension-point name="release" depends="verify"
+    <extension-point name="release"
         description="done in an integration or release environment, copies the final package to the remote repository for sharing with other developers and projects" />
     <extension-point name="report" description="generate report" />
-</project>
\ No newline at end of file
+</project>