Changeset 30

Show
Ignore:
Timestamp:
10/04/07 14:52:38 (1 year ago)
Author:
max
Message:
 
Location:
branches/aspectj_planetsim
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/aspectj_planetsim/bin/build.xml

    r29 r30  
    66 
    77        <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> 
    1212        <property environment="env" /> 
    1313        <property file="planetsim.properties" /> 
     
    1717                <pathelement path="${classpath}" /> 
    1818                <fileset dir="C:/Programme/Java/aspectj1.5/lib"> 
    19                                                         <include name="**/*.jar" /> 
    20                                 </fileset> 
     19                        <include name="**/*.jar" /> 
     20                </fileset> 
    2121                <fileset dir="../lib"> 
    2222                        <include name="**/*.jar" /> 
    2323                </fileset> 
    24                  
     24 
    2525        </path> 
    2626 
    2727 
    28          
    29          
     28 
     29 
    3030 
    3131 
     
    5656 
    5757        <target name="run"> 
     58 
    5859                <java classname="planet.test.SimTest"> 
    5960                        <arg value="${event_file}" /> 
    6061                        <arg value="${steps}" /> 
    6162                        <classpath refid="base.path"> 
    62                                          
     63 
    6364                        </classpath> 
    6465                </java> 
    6566        </target> 
    6667        <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> 
    7576        <target name="test"> 
    7677                <mkdir dir="reports" /> 
     
    113114        <target name="ajcompile"> 
    114115                <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 
    119122        </target> 
    120123