/plugins/Beauty/tags/beauty-0-2-1/build.xml
# · XML · 244 lines · 134 code · 42 blank · 68 comment · 0 complexity · 35327687b3036809e816f5df75e1e6eb MD5 · raw file
- <project name="Beauty" default="dist" basedir=".">
- <echo>${java.home}</echo>
- <!-- read build.props to override properties set below -->
- <property file="../build.properties"/>
- <property file="build.properties"/>
- <!-- default location of jedit.jar -->
- <property name="jedit.install.dir" value="../.."/>
- <!-- jar name -->
- <property name="jar.name" value="${ant.project.name}.jar"/>
- <!-- version number -->
- <property name="build.num" value="0.2.0"/>
- <!-- where to put the finished plugin -->
- <property name="install.dir" value=".." />
- <!-- source code directory, this is where the .java files live -->
- <property name="src.dir" location="src" />
- <!-- parser source code directory, this is where the .jj file lives -->
- <property name="parser.src.dir" location="${src.dir}/beauty/parsers"/>
- <!-- temporary directory for post-compile processing -->
- <property name="temp" location="temp"/>
- <!-- configuration directory, this is where the configuration files for the
- plugin are placed for additional processing prior to getting jarred. -->
- <property name="config.dir" location="${temp}/config" />
- <!-- documentation directory, this is where the plugin documentation
- files live. Files in this directory will be distributed with the plugin -->
- <property name="doc.dir" location="${temp}/docs" />
- <!-- the directory for the compiled classes. Files in this directory will be
- included in the finished jar file. -->
- <property name="classes.dir" location="${temp}/classes" />
- <!-- ========================================================================
- Target: set classpath
- ========================================================================= -->
- <target name="setClasspath">
- <path id="classpathref">
- <!-- required locations/jars -->
- <pathelement location="${classes.dir}" />
- <pathelement path="${java.class.path}"/>
- <!-- required for jEdit plugin -->
- <pathelement location="${jedit.install.dir}/jedit.jar" />
- <!-- dependencies -->
- </path>
- </target>
- <!-- ========================================================================
- Target: compile
- ========================================================================= -->
- <target name="compile"
- description="Compile"
- depends="init,setClasspath">
- <javac deprecation="on"
- debug="on"
- nowarn="on"
- destdir="${classes.dir}"
- srcdir="${src.dir}"
- target="1.4"
- source="1.4">
- <classpath refid="classpathref" />
- </javac>
- <copy todir="${classes.dir}/docs" overwrite="no">
- <fileset dir="${src.dir}/docs">
- <include name="**/*"/>
- </fileset>
- </copy>
- </target>
- <!-- ========================================================================
- Target: javacc clean and create
- ========================================================================= -->
- <target name="javacc_clean">
- <delete>
- <fileset dir="${parser.src.dir}/java">
- <include name="*.java"/>
- <exclude name="Token.java"/>
- <exclude name="ModifierSet.java"/>
- </fileset>
- <fileset dir="${parser.src.dir}/javacc">
- <include name="*.java"/>
- <exclude name="Token.java"/>
- <exclude name="ModifierSet.java"/>
- </fileset>
- </delete>
- </target>
- <target name="javacc" description="Runs javacc">
- <condition property="javacchome.set">
- <isset property="javacchome"/>
- </condition>
- <fail unless="javacchome.set" message="Property 'javacchome' needs to be set."/>
- <javacc javacchome="${javacchome}" target="./src/beauty/parsers/java/Java1.5.jj"/>
- <javacc javacchome="${javacchome}" target="./src/beauty/parsers/html/HtmlParser.jj"/>
- </target>
- <!-- ========================================================================
- Target: dist
- creates jar file suitable for dropping into jEdit, and puts it up one
- directory level
- ========================================================================= -->
- <target name="dist"
- description="Compiles, jars, puts the jar in the jEdit jars directory."
- depends="clean,init,compile,prep_files">
- <!-- make the plugin jar file -->
- <tstamp/>
- <jar jarfile="${install.dir}/${ant.project.name}.jar">
- <manifest>
- <attribute name="AppName" value="${ant.project.name}" />
- <attribute name="AppVersion" value="${build.num}" />
- <attribute name="Author" value="Dale Anson" />
- <attribute name="Created-By" value="${user.name}" />
- <attribute name="Created-On" value="${TODAY}"/>
- </manifest>
- <!-- include everything in the build directory -->
- <fileset dir="${classes.dir}">
- <include name="**/*" />
- </fileset>
- <!-- include everything in the config directory-->
- <fileset dir="${config.dir}">
- <include name="**/*" />
- </fileset>
- <!-- include everything in the doc directory -->
- <fileset dir="${doc.dir}">
- <include name="**/*" />
- </fileset>
- </jar>
- </target>
- <!-- ========================================================================
- Target: prep_files
- prepares certain files for distribution by doing string replacement.
- Assumes that the configuration files and documentation files are ready.
- ========================================================================= -->
- <target name="prep_files">
- <echo>preparing files</echo>
- <!-- clean out the config and doc deployment directories -->
- <delete>
- <fileset dir="${config.dir}" includes="**/*"/>
- <fileset dir="${doc.dir}" includes="**/*"/>
- </delete>
- <!-- copy the config files to deployment directory
- CHANGED: apparently, having a 'src/config' directory to hold the configuration
- files is too confusing, so now they are dumped in basedir, along with
- any other crud that may or may not be part of the deployment package.
- Now need to explicitly name the proper files, so we don't pick up the
- crud.
- -->
- <copy todir="${config.dir}">
- <fileset dir="${basedir}">
- <include name="beauty.props"/>
- <include name="actions.xml"/>
- <include name="services.xml"/>
- </fileset>
- </copy>
- <!-- copy the docs -->
- <copy todir="${doc.dir}/docs" overwrite="yes">
- <fileset dir="${src.dir}/docs">
- <include name="**/*"/>
- </fileset>
- </copy>
- <!-- insert the build number into the documentation and configuration
- files -->
- <!-- CHANGED: don't do this, the python build system for jEdit gets
- confused if the build number isn't present BEFORE the build, so need
- to change it by hand everytime there is a new release.
- <replace dir="${config.dir}" token="@@build.num@@"
- value="${build.num}" />
- -->
- <replace dir="${doc.dir}" token="@@build.num@@"
- value="${build.num}" />
- <tstamp/>
- <replace dir="${doc.dir}" token="@@tstamp@@"
- value="${TODAY}" />
- </target>
- <!-- ========================================================================
- Target: clean
- deletes all files from the temp directory
- ========================================================================= -->
- <target name="clean" description="Delete all files from the classes directory.">
- <!-- delete old directories that may still be hanging around. These
- caused some confusion. -->
- <delete dir="config"/>
- <delete dir="docs"/>
- <delete dir="${temp}"/>
- <mkdir dir="${classes.dir}"/>
- <mkdir dir="${doc.dir}" />
- <mkdir dir="${config.dir}" />
- </target>
- <!-- ========================================================================
- Target: init
- this target creates the directories needed for this project and
- only needs to be done once.
- ========================================================================= -->
- <target name="init"
- description="Create directory structure.">
- <fail unless="jedit.install.dir" message="Please set jedit.install.dir property."/>
- <mkdir dir="${src.dir}" />
- <mkdir dir="${classes.dir}" />
- <mkdir dir="${doc.dir}" />
- <mkdir dir="${config.dir}" />
- </target>
- <target name="run"
- description="Run the application."
- depends="setClasspath, javacc, compile">
- <java classname="beauty.JavaBeautyTest" fork="true">
- <classpath refid="classpathref"/>
- <arg file="c:/temp/Testing.java"/>
- </java>
- </target>
- <target name="all" depends="javacc,compile,run"/>
- </project>