|
|
|
@ -15,54 +15,4 @@ |
|
|
|
|
<description> |
|
|
|
|
Reimplementation of the RuneScape game server software. |
|
|
|
|
</description> |
|
|
|
|
|
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>co.paralleluniverse</groupId> |
|
|
|
|
<artifactId>quasar-core</artifactId> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
<plugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>instrument-classes</id> |
|
|
|
|
<phase>compile</phase> |
|
|
|
|
<goals> |
|
|
|
|
<goal>run</goal> |
|
|
|
|
</goals> |
|
|
|
|
<configuration> |
|
|
|
|
<target> |
|
|
|
|
<property name="classpath" refid="maven.dependency.classpath" /> |
|
|
|
|
<taskdef name="instrumentation" classname="co.paralleluniverse.fibers.instrument.InstrumentationTask" classpath="${classpath}" /> |
|
|
|
|
<instrumentation> |
|
|
|
|
<fileset dir="${project.build.directory}/classes" erroronmissingdir="false" includes="**/*.class" /> |
|
|
|
|
</instrumentation> |
|
|
|
|
</target> |
|
|
|
|
</configuration> |
|
|
|
|
</execution> |
|
|
|
|
<execution> |
|
|
|
|
<id>instrument-test-classes</id> |
|
|
|
|
<phase>test-compile</phase> |
|
|
|
|
<goals> |
|
|
|
|
<goal>run</goal> |
|
|
|
|
</goals> |
|
|
|
|
<configuration> |
|
|
|
|
<target> |
|
|
|
|
<property name="classpath" refid="maven.dependency.classpath" /> |
|
|
|
|
<taskdef name="instrumentation" classname="co.paralleluniverse.fibers.instrument.InstrumentationTask" classpath="${classpath}" /> |
|
|
|
|
<instrumentation> |
|
|
|
|
<fileset dir="${project.build.directory}/test-classes" erroronmissingdir="false" includes="**/*.class" /> |
|
|
|
|
</instrumentation> |
|
|
|
|
</target> |
|
|
|
|
</configuration> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
</plugins> |
|
|
|
|
</build> |
|
|
|
|
</project> |
|
|
|
|