Changeset 3953 for trunk/src/examples/plugins/build.xml
- Timestamp:
- Nov 13, 2007, 1:36:12 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 5 5 .settings 6 6 testdata 7 package 8 examples 9 plugins
-
- Property svn:ignore
-
trunk/src/examples/plugins/build.xml
r3763 r3953 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <project 3 name="ExamplePlugins" 4 default="build.plugin" 5 basedir="." 6 > 3 name="ExamplePlugins" 4 default="build.plugin" 5 basedir="."> 7 6 8 9 10 11 7 <!-- variables used --> 8 <property name="plugin.name" value="ExamplePlugins" /> 9 <property name="src" value="src" /> 10 <property name="bin" value="bin" /> 12 11 13 14 15 16 <include name="**/*.jar"/>17 18 19 20 21 22 name="build.plugin"23 24 25 26 encoding="ISO-8859-1" 27 srcdir="${src}" 28 destdir="${bin}" 29 debug="true" 30 31 32 33 34 basedir="bin" 35 manifest="MANIFEST.MF"36 37 <metainf file="./base-plugins.xml"></metainf>38 <metainf file="./base-configurations.xml"></metainf>39 40 41 </project> 12 <!-- set up classpath for compiling --> 13 <path id="classpath"> 14 <fileset dir="lib"> 15 <include name="**/*.jar" /> 16 </fileset> 17 </path> 18 19 <!-- main target --> 20 <target 21 name="build.plugin" 22 description="Compiles the plugin and put in jar" 23 > 24 <javac 25 encoding="ISO-8859-1" 26 srcdir="${src}" 27 destdir="${bin}" 28 debug="true" 29 classpathref="classpath"> 30 </javac> 31 <jar 32 jarfile="${plugin.name}.jar" 33 basedir="bin" 34 manifest="META-INF/MANIFEST.MF" 35 > 36 <metainf file="META-INF/base-plugins.xml" /> 37 <metainf file="META-INF/base-configurations.xml" /> 38 </jar> 39 </target> 40 </project>
Note: See TracChangeset
for help on using the changeset viewer.