/plugins/Beauty/tags/beauty-0-2-1/build.xml

# · XML · 244 lines · 134 code · 42 blank · 68 comment · 0 complexity · 35327687b3036809e816f5df75e1e6eb MD5 · raw file

  1. <project name="Beauty" default="dist" basedir=".">
  2. <echo>${java.home}</echo>
  3. <!-- read build.props to override properties set below -->
  4. <property file="../build.properties"/>
  5. <property file="build.properties"/>
  6. <!-- default location of jedit.jar -->
  7. <property name="jedit.install.dir" value="../.."/>
  8. <!-- jar name -->
  9. <property name="jar.name" value="${ant.project.name}.jar"/>
  10. <!-- version number -->
  11. <property name="build.num" value="0.2.0"/>
  12. <!-- where to put the finished plugin -->
  13. <property name="install.dir" value=".." />
  14. <!-- source code directory, this is where the .java files live -->
  15. <property name="src.dir" location="src" />
  16. <!-- parser source code directory, this is where the .jj file lives -->
  17. <property name="parser.src.dir" location="${src.dir}/beauty/parsers"/>
  18. <!-- temporary directory for post-compile processing -->
  19. <property name="temp" location="temp"/>
  20. <!-- configuration directory, this is where the configuration files for the
  21. plugin are placed for additional processing prior to getting jarred. -->
  22. <property name="config.dir" location="${temp}/config" />
  23. <!-- documentation directory, this is where the plugin documentation
  24. files live. Files in this directory will be distributed with the plugin -->
  25. <property name="doc.dir" location="${temp}/docs" />
  26. <!-- the directory for the compiled classes. Files in this directory will be
  27. included in the finished jar file. -->
  28. <property name="classes.dir" location="${temp}/classes" />
  29. <!-- ========================================================================
  30. Target: set classpath
  31. ========================================================================= -->
  32. <target name="setClasspath">
  33. <path id="classpathref">
  34. <!-- required locations/jars -->
  35. <pathelement location="${classes.dir}" />
  36. <pathelement path="${java.class.path}"/>
  37. <!-- required for jEdit plugin -->
  38. <pathelement location="${jedit.install.dir}/jedit.jar" />
  39. <!-- dependencies -->
  40. </path>
  41. </target>
  42. <!-- ========================================================================
  43. Target: compile
  44. ========================================================================= -->
  45. <target name="compile"
  46. description="Compile"
  47. depends="init,setClasspath">
  48. <javac deprecation="on"
  49. debug="on"
  50. nowarn="on"
  51. destdir="${classes.dir}"
  52. srcdir="${src.dir}"
  53. target="1.4"
  54. source="1.4">
  55. <classpath refid="classpathref" />
  56. </javac>
  57. <copy todir="${classes.dir}/docs" overwrite="no">
  58. <fileset dir="${src.dir}/docs">
  59. <include name="**/*"/>
  60. </fileset>
  61. </copy>
  62. </target>
  63. <!-- ========================================================================
  64. Target: javacc clean and create
  65. ========================================================================= -->
  66. <target name="javacc_clean">
  67. <delete>
  68. <fileset dir="${parser.src.dir}/java">
  69. <include name="*.java"/>
  70. <exclude name="Token.java"/>
  71. <exclude name="ModifierSet.java"/>
  72. </fileset>
  73. <fileset dir="${parser.src.dir}/javacc">
  74. <include name="*.java"/>
  75. <exclude name="Token.java"/>
  76. <exclude name="ModifierSet.java"/>
  77. </fileset>
  78. </delete>
  79. </target>
  80. <target name="javacc" description="Runs javacc">
  81. <condition property="javacchome.set">
  82. <isset property="javacchome"/>
  83. </condition>
  84. <fail unless="javacchome.set" message="Property 'javacchome' needs to be set."/>
  85. <javacc javacchome="${javacchome}" target="./src/beauty/parsers/java/Java1.5.jj"/>
  86. <javacc javacchome="${javacchome}" target="./src/beauty/parsers/html/HtmlParser.jj"/>
  87. </target>
  88. <!-- ========================================================================
  89. Target: dist
  90. creates jar file suitable for dropping into jEdit, and puts it up one
  91. directory level
  92. ========================================================================= -->
  93. <target name="dist"
  94. description="Compiles, jars, puts the jar in the jEdit jars directory."
  95. depends="clean,init,compile,prep_files">
  96. <!-- make the plugin jar file -->
  97. <tstamp/>
  98. <jar jarfile="${install.dir}/${ant.project.name}.jar">
  99. <manifest>
  100. <attribute name="AppName" value="${ant.project.name}" />
  101. <attribute name="AppVersion" value="${build.num}" />
  102. <attribute name="Author" value="Dale Anson" />
  103. <attribute name="Created-By" value="${user.name}" />
  104. <attribute name="Created-On" value="${TODAY}"/>
  105. </manifest>
  106. <!-- include everything in the build directory -->
  107. <fileset dir="${classes.dir}">
  108. <include name="**/*" />
  109. </fileset>
  110. <!-- include everything in the config directory-->
  111. <fileset dir="${config.dir}">
  112. <include name="**/*" />
  113. </fileset>
  114. <!-- include everything in the doc directory -->
  115. <fileset dir="${doc.dir}">
  116. <include name="**/*" />
  117. </fileset>
  118. </jar>
  119. </target>
  120. <!-- ========================================================================
  121. Target: prep_files
  122. prepares certain files for distribution by doing string replacement.
  123. Assumes that the configuration files and documentation files are ready.
  124. ========================================================================= -->
  125. <target name="prep_files">
  126. <echo>preparing files</echo>
  127. <!-- clean out the config and doc deployment directories -->
  128. <delete>
  129. <fileset dir="${config.dir}" includes="**/*"/>
  130. <fileset dir="${doc.dir}" includes="**/*"/>
  131. </delete>
  132. <!-- copy the config files to deployment directory
  133. CHANGED: apparently, having a 'src/config' directory to hold the configuration
  134. files is too confusing, so now they are dumped in basedir, along with
  135. any other crud that may or may not be part of the deployment package.
  136. Now need to explicitly name the proper files, so we don't pick up the
  137. crud.
  138. -->
  139. <copy todir="${config.dir}">
  140. <fileset dir="${basedir}">
  141. <include name="beauty.props"/>
  142. <include name="actions.xml"/>
  143. <include name="services.xml"/>
  144. </fileset>
  145. </copy>
  146. <!-- copy the docs -->
  147. <copy todir="${doc.dir}/docs" overwrite="yes">
  148. <fileset dir="${src.dir}/docs">
  149. <include name="**/*"/>
  150. </fileset>
  151. </copy>
  152. <!-- insert the build number into the documentation and configuration
  153. files -->
  154. <!-- CHANGED: don't do this, the python build system for jEdit gets
  155. confused if the build number isn't present BEFORE the build, so need
  156. to change it by hand everytime there is a new release.
  157. <replace dir="${config.dir}" token="@@build.num@@"
  158. value="${build.num}" />
  159. -->
  160. <replace dir="${doc.dir}" token="@@build.num@@"
  161. value="${build.num}" />
  162. <tstamp/>
  163. <replace dir="${doc.dir}" token="@@tstamp@@"
  164. value="${TODAY}" />
  165. </target>
  166. <!-- ========================================================================
  167. Target: clean
  168. deletes all files from the temp directory
  169. ========================================================================= -->
  170. <target name="clean" description="Delete all files from the classes directory.">
  171. <!-- delete old directories that may still be hanging around. These
  172. caused some confusion. -->
  173. <delete dir="config"/>
  174. <delete dir="docs"/>
  175. <delete dir="${temp}"/>
  176. <mkdir dir="${classes.dir}"/>
  177. <mkdir dir="${doc.dir}" />
  178. <mkdir dir="${config.dir}" />
  179. </target>
  180. <!-- ========================================================================
  181. Target: init
  182. this target creates the directories needed for this project and
  183. only needs to be done once.
  184. ========================================================================= -->
  185. <target name="init"
  186. description="Create directory structure.">
  187. <fail unless="jedit.install.dir" message="Please set jedit.install.dir property."/>
  188. <mkdir dir="${src.dir}" />
  189. <mkdir dir="${classes.dir}" />
  190. <mkdir dir="${doc.dir}" />
  191. <mkdir dir="${config.dir}" />
  192. </target>
  193. <target name="run"
  194. description="Run the application."
  195. depends="setClasspath, javacc, compile">
  196. <java classname="beauty.JavaBeautyTest" fork="true">
  197. <classpath refid="classpathref"/>
  198. <arg file="c:/temp/Testing.java"/>
  199. </java>
  200. </target>
  201. <target name="all" depends="javacc,compile,run"/>
  202. </project>