| <?xml version="1.0" ?> |
| |
| <!-- |
| |
| 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 "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 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| |
| <project name="compiler-playerglobalc" default="main" basedir="."> |
| |
| <!-- |
| |
| PROPERTIES |
| |
| --> |
| |
| <!-- The 'compiler-playerglobalc' property is the absolute path, with forward slashes, --> |
| <!-- to the 'compiler-playerglobalc' directory that contains this file. --> |
| <!-- All input paths are expressed as absolute paths starting with ${compiler-playerglobalc}. --> |
| <pathconvert property="compiler-playerglobalc" dirsep="/"> |
| <path location="${basedir}"/> |
| </pathconvert> |
| |
| <!-- The 'compiler-jx' property is the absolute path, with forward slashes, --> |
| <!-- to the 'compiler-jx' directory that is a sibling of the parent folder of this file. --> |
| <!-- All input paths are expressed as absolute paths starting with ${compiler-jx}. --> |
| <pathconvert property="compiler-jx" dirsep="/"> |
| <path location="${basedir}/../compiler-jx"/> |
| </pathconvert> |
| |
| <property name="sdk" value="${compiler-jx}/lib"/> |
| |
| <!-- Properties can be overridden locally by loading a local.properties file --> |
| <!-- Java 8 users probably need javadoc.params=-Xdoclint:none --> |
| <property file="${compiler-playerglobalc}/local.properties"/> |
| <property file="${basedir}/../env.properties"/> |
| |
| <property name="src.depend" value="true"/> |
| |
| <!-- Options for <javac> tasks --> |
| <property name="javac.debug" value="true"/> |
| <property name="javac.deprecation" value="false"/> |
| <property name="javac.src" value="11"/> |
| |
| <!-- JAR manifest entries --> |
| <property name="manifest.sealed" value="false"/> |
| <property name="manifest.Implementation-Title" value="Apache Royale PlayerGlobal Source Generator"/> |
| <property name="manifest.Implementation-Version" value="${release.version}"/> |
| <property name="manifest.Implementation-Vendor" value="Apache Software Foundation"/> |
| |
| <!-- label is set by CruiseControl script based on P4 label incrementer --> |
| <condition property="build.number" value="${env.BUILD_NUMBER}"> |
| <isset property="env.BUILD_NUMBER"/> |
| </condition> |
| |
| <!-- |
| |
| compiler-playerglobalc |
| |
| --> |
| |
| <target name="download" description="Downloads third-party JARs"> |
| <ant antfile="${compiler-playerglobalc}/src/main/resources/downloads.xml" dir="${compiler-playerglobalc}/src/main/resources" inheritAll="false"/> |
| </target> |
| |
| <target name="compile" depends="download"> |
| <mkdir dir="${compiler-playerglobalc}/target/classes"/> |
| <javac debug="${javac.debug}" deprecation="${javac.deprecation}" destdir="${compiler-playerglobalc}/target/classes" includeAntRuntime="true" includes="**/*.java" |
| source="${javac.src}" target="${javac.src}"> |
| <compilerarg value="-Xlint:all,-path,-fallthrough"/> |
| <src path="${compiler-playerglobalc}/src/main/java"/> |
| <classpath> |
| <pathelement location="${compiler-playerglobalc}/target/classes"/> |
| <fileset dir="${compiler-playerglobalc}/../compiler-jx/lib" includes="dom4j.jar"/> |
| <fileset dir="${compiler-playerglobalc}/../compiler/lib" includes="compiler-common.jar,external/flex-tool-api.jar"/> |
| <fileset dir="${compiler-playerglobalc}/../compiler/lib/external" includes="commons-io.jar"/> |
| </classpath> |
| </javac> |
| </target> |
| |
| <target name="prebuild"> |
| <mkdir dir="${compiler-playerglobalc}/target/classes" /> |
| <mkdir dir="${compiler-playerglobalc}/target/classes/META-INF" /> |
| </target> |
| |
| <target name="main" depends="prebuild,compile" > |
| <mkdir dir="${sdk}"/> |
| <copy file="${basedir}/../LICENSE.base" tofile="${compiler-playerglobalc}/target/classes/META-INF/LICENSE"/> |
| <copy file="${basedir}/../NOTICE.base" tofile="${compiler-playerglobalc}/target/classes/META-INF/NOTICE"/> |
| <jar file="${sdk}/compiler-playerglobalc.jar" basedir="${compiler-playerglobalc}/target/classes" includes="**/*.properties,org/apache/**/*,com/google/javascript/**/*,META-INF/**/*"> |
| <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.royale.compiler.clients.PLAYERGLOBALC" /> |
| <attribute name="Class-Path" value="../../compiler/lib/external/commons-io.jar ../../lib/external/commons-io.jar ../../compiler-jx/lib/dom4j.jar dom4j.jar ../../compiler/lib/compiler-common.jar ../../lib/compiler-common.jar ../../compiler/lib/external/flex-tool-api.jar ../../lib/external/flex-tool-api.jar"/> |
| <!-- The .. in the line above allows the compiler to load the env.properties file --> |
| </manifest> |
| </jar> |
| <antcall target="test" /> |
| <antcall target="jar-test" /> |
| </target> |
| |
| <target name="test" > |
| <!--<ant dir="src/test" />--> |
| </target> |
| |
| <target name="jar-test" > |
| <!--<echo>using compiler-playerglobalc.jar from ${sdk}</echo> |
| <java jar="${sdk}/compiler-playerglobalc.jar" fork="true" |
| failonerror="true"> |
| <arg value="playerglobal/bundles/en_US/docs"/> |
| </java>--> |
| </target> |
| |
| <!-- |
| |
| CLEANUP |
| |
| --> |
| |
| <target name="clean" description="clean"> |
| <delete dir="${compiler-playerglobalc}/target/classes"/> |
| <delete file="${compiler-playerglobalc}/target/playerglobal.swc"/> |
| <delete file="${compiler-playerglobalc}/target/airglobal.swc"/> |
| </target> |
| |
| <target name="wipe" depends="clean" description="Wipes everything that didn't come from Git."> |
| <delete dir="${compiler-playerglobalc}/target"/> |
| </target> |
| |
| </project> |