Skip to content

Commit cf5439f

Browse files
committed
?
1 parent 0bcf3e5 commit cf5439f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Diff for: nbactions.xml

+29
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,33 @@
1414
<exec.executable>java</exec.executable>
1515
</properties>
1616
</action>
17+
<action>
18+
<actionName>debug</actionName>
19+
<packagings>
20+
<packaging>jar</packaging>
21+
</packagings>
22+
<goals>
23+
<goal>process-classes</goal>
24+
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
25+
</goals>
26+
<properties>
27+
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath info.debatty.java.stringsimilarity.Main</exec.args>
28+
<exec.executable>java</exec.executable>
29+
<jpda.listen>true</jpda.listen>
30+
</properties>
31+
</action>
32+
<action>
33+
<actionName>profile</actionName>
34+
<packagings>
35+
<packaging>jar</packaging>
36+
</packagings>
37+
<goals>
38+
<goal>process-classes</goal>
39+
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
40+
</goals>
41+
<properties>
42+
<exec.args>-classpath %classpath info.debatty.java.stringsimilarity.Main</exec.args>
43+
<exec.executable>java</exec.executable>
44+
</properties>
45+
</action>
1746
</actions>

0 commit comments

Comments
 (0)