-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathnbactions.xml
executable file
·68 lines (68 loc) · 2.73 KB
/
nbactions.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?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.2:exec</goal>
</goals>
<properties>
<exec.executable>java</exec.executable>
<exec.classpathScope>runtime</exec.classpathScope>
</properties>
</action>
<action>
<actionName>debug</actionName>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2:exec</goal>
</goals>
<properties>
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath org.freaknet.gtrends.client.App -P http://localhost:3128 -u scotttrend12312013 -p stockstrends -C username:password -d ./ -q "jobs"</exec.args>
<exec.executable>java</exec.executable>
<exec.classpathScope>runtime</exec.classpathScope>
<jpda.listen>true</jpda.listen>
<exec.workingdir>/home/l186120/dev/tmp</exec.workingdir>
</properties>
</action>
<action>
<actionName>profile</actionName>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2:exec</goal>
</goals>
<properties>
<exec.args>${profiler.args} -classpath %classpath org.freaknet.gtrends.client.App -P http://localhost:3128 -u scotttrend12312013 -p stockstrends -C username:password -d ./ -q "jobs"</exec.args>
<exec.executable>${profiler.java}</exec.executable>
<exec.workingdir>/home/l186120/dev/tmp</exec.workingdir>
</properties>
</action>
<action>
<actionName>CUSTOM-release:prepare</actionName>
<displayName>release:prepare</displayName>
<goals>
<goal>release:prepare</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-release:perform</actionName>
<displayName>release:perform</displayName>
<goals>
<goal>release:perform</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-deploy</actionName>
<displayName>deploy</displayName>
<goals>
<goal>deploy</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-build</actionName>
<displayName>build</displayName>
<goals>
<goal>build</goal>
</goals>
</action>
</actions>