Repository: flex-falcon Updated Branches: refs/heads/develop 19c719764 -> cf76d22eb
create jar for asdoc Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/cf76d22e Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/cf76d22e Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/cf76d22e Branch: refs/heads/develop Commit: cf76d22ebcb3f96859381fc0064b29c866f1647b Parents: 19c7197 Author: Alex Harui <[email protected]> Authored: Sun Dec 11 23:31:29 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Sun Dec 11 23:31:34 2016 -0800 ---------------------------------------------------------------------- compiler-jx/build.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/cf76d22e/compiler-jx/build.xml ---------------------------------------------------------------------- diff --git a/compiler-jx/build.xml b/compiler-jx/build.xml index 42b546f..86e1917 100644 --- a/compiler-jx/build.xml +++ b/compiler-jx/build.xml @@ -56,6 +56,7 @@ <property name="externc.jar" value="${lib}/externc.jar" /> <property name="compc.jar" value="${lib}/compc.jar" /> <property name="jsc.jar" value="${lib}/jsc.jar" /> + <property name="asdoc.jar" value="${lib}/asdoc.jar" /> <!-- env.BUILD_NUMBER is set by Jenkins CI --> <condition property="build.number" value="nightly-${env.BUILD_NUMBER}"> @@ -162,6 +163,20 @@ </manifest> </jar> + <echo message="Building ${asdoc.jar}" /> + <jar file="${asdoc.jar}" basedir="${classes.dir}"> + <include name="META-INF/LICENSE"/> + <include name="META-INF/NOTICE"/> + <manifest> + <attribute name="Sealed" value="${manifest.sealed}"/> + <attribute name="Implementation-Title" value="${manifest.Implementation-Title}"/> + <attribute name="Implementation-Version" value="${manifest.Implementation-Version}.${build.number}"/> + <attribute name="Implementation-Vendor" value="${manifest.Implementation-Vendor}"/> + <attribute name="Main-Class" value="org.apache.flex.compiler.clients.ASDOCJSC" /> + <attribute name="Class-Path" value="jsc.jar" /> + </manifest> + </jar> + <chmod dir="${basedir}/src/assembly" excludes="**/*.bat" perm="+x" /> </target> @@ -191,6 +206,7 @@ <include name="externc.jar" /> <include name="mxmlc.jar" /> <include name="jsc.jar" /> + <include name="asdoc.jar" /> </fileset> </delete> </target>
