diff options
author | James Moger <james.moger@gmail.com> | 2013-03-14 22:20:34 -0400 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2013-03-14 22:20:34 -0400 |
commit | 661deb78457b6865b8d27baa3208ce556f1dbab2 (patch) | |
tree | 59a7e2cc3392b6d9d815b035e05a2dba791558ba /build.xml | |
parent | f2109a5436fb7a0d17269554dc6be0c12e23e10c (diff) | |
download | iciql-661deb78457b6865b8d27baa3208ce556f1dbab2.tar.gz iciql-661deb78457b6865b8d27baa3208ce556f1dbab2.zip |
Streamlining Moxie integration
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 17 |
1 files changed, 4 insertions, 13 deletions
@@ -86,19 +86,10 @@ Build
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-->
- <target name="build" depends="compile" description="Builds iciql from source">
-
- <mx:jar packageSources="true" />
- <mx:javadoc redirect="true" />
- <mx:zip>
- <artifact />
- <artifact classifier="sources"/>
- <artifact classifier="javadoc"/>
- <fileset dir="${basedir}">
- <include name="LICENSE" />
- <include name="NOTICE" />
- </fileset>
- </mx:zip>
+ <target name="build" depends="compile" description="Packages iciql for deployment">
+
+ <!-- Package the jar, javadoc, sources, and zip distribution -->
+ <mx:package />
<!-- Deploy the artifacts into the version-controlled repository -->
<mx:deploy basedir="${basedir}/maven" allowSnapshots="false" />
|