You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2014/08/30 17:05:56 UTC

git commit: [flex-utilities] [refs/heads/develop] - Fixed a small bug in the pom-generation script.

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 4177253a9 -> 694d98d6b


Fixed a small bug in the pom-generation script.


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/694d98d6
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/694d98d6
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/694d98d6

Branch: refs/heads/develop
Commit: 694d98d6b6a843522fa29582feccd2045c90e2a2
Parents: 4177253
Author: cdutz <ch...@c-ware.de>
Authored: Sat Aug 30 16:58:27 2014 +0200
Committer: cdutz <ch...@c-ware.de>
Committed: Sat Aug 30 16:58:27 2014 +0200

----------------------------------------------------------------------
 Squiggly/main/maven.xml | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/694d98d6/Squiggly/main/maven.xml
----------------------------------------------------------------------
diff --git a/Squiggly/main/maven.xml b/Squiggly/main/maven.xml
index ab796de..ca013f4 100644
--- a/Squiggly/main/maven.xml
+++ b/Squiggly/main/maven.xml
@@ -17,7 +17,7 @@
   limitations under the License.
 
 -->
-<project default="install">
+<project default="install" basedir=".">
 
     <property name="version" value="1.0"/>
 
@@ -42,9 +42,7 @@
         <equals arg1="${type}" arg2="RELEASE"/>
     </condition>
 
-    <import file="build.xml"/>
-
-    <target name="package" depends="test">
+    <target name="package">
         <echo message="Preparing Maven artifacts vor version ${maven.version} ..."/>
 
         <delete dir="generated/maven"/>
@@ -193,7 +191,7 @@
 
     <target name="-pack-maven-artifact">
         <echo message="Packing module ${moduleName} as Maven artifact ${artifactName}"/>
-        <copy file="main/maven/${artifactName}.pom" tofile="generated/maven/${artifactName}.pom">
+        <copy file="maven/${artifactName}.pom" tofile="generated/maven/${artifactName}.pom">
             <filterchain>
                 <tokenfilter>
                     <replacestring from="@VERSION@" to="${maven.version}"/>