blob: 54bb66e40baa1c116567d61f76c282df0011b5ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal>
</goals>
<properties>
<exec.classpathScope>runtime</exec.classpathScope>
<exec.args>-classpath %classpath de.fhg.fokus.net.packetmatcher.Matcher</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
</actions>
|