Changeset 30
- Timestamp:
- 10/04/07 14:52:38 (1 year ago)
- Location:
- branches/aspectj_planetsim
- Files:
-
- 2 modified
-
bin/build.xml (modified) (4 diffs)
-
lib/planetsimaj.jar (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
branches/aspectj_planetsim/bin/build.xml
r29 r30 6 6 7 7 <taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties"> 8 <classpath>9 <pathelement location="${ajtools}" />10 </classpath>11 </taskdef>8 <classpath> 9 <pathelement location="${ajtools}" /> 10 </classpath> 11 </taskdef> 12 12 <property environment="env" /> 13 13 <property file="planetsim.properties" /> … … 17 17 <pathelement path="${classpath}" /> 18 18 <fileset dir="C:/Programme/Java/aspectj1.5/lib"> 19 <include name="**/*.jar" />20 </fileset>19 <include name="**/*.jar" /> 20 </fileset> 21 21 <fileset dir="../lib"> 22 22 <include name="**/*.jar" /> 23 23 </fileset> 24 24 25 25 </path> 26 26 27 27 28 29 28 29 30 30 31 31 … … 56 56 57 57 <target name="run"> 58 58 59 <java classname="planet.test.SimTest"> 59 60 <arg value="${event_file}" /> 60 61 <arg value="${steps}" /> 61 62 <classpath refid="base.path"> 62 63 63 64 </classpath> 64 65 </java> 65 66 </target> 66 67 <target name="run2" description="planet.test.helloworld.DHTPeerTest"> 67 <java classname="planet.test.helloworld.DHTPeerTest">68 69 <classpath refid="base.path">70 71 </classpath>72 </java>73 74 </target>68 <java classname="planet.test.helloworld.DHTPeerTest"> 69 70 <classpath refid="base.path"> 71 72 </classpath> 73 </java> 74 75 </target> 75 76 <target name="test"> 76 77 <mkdir dir="reports" /> … … 113 114 <target name="ajcompile"> 114 115 <delete dir="../out" /> 115 <mkdir dir="../out" /> 116 <delete file="../lib/planetsimaj.jar" /> 117 <iajc source="1.5" target="1.5" sourceroots="../src" classpath="${ajruntime};../lib/junit.jar;${ajtools}" outjar="../lib/planetsimaj.jar" /> 118 116 <mkdir dir="../out" /> 117 <delete file="../lib/planetsimaj.jar" /> 118 <iajc source="1.5" target="1.5" sourceroots="../src" classpath="${ajruntime};../lib/junit.jar;${ajtools}" outjar="../lib/planetsimaj.jar" > 119 <exclude name="planet/aspect/statistic/Statistics.aj"/> 120 </iajc> 121 119 122 </target> 120 123
