-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnbactions.xml
More file actions
27 lines (27 loc) · 733 Bytes
/
Copy pathnbactions.xml
File metadata and controls
27 lines (27 loc) · 733 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-clean-compile-run</actionName>
<displayName>Do the damn thing</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-classpath %classpath la.alsocan.jsonshapeshifter.Main</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
<action>
<actionName>CUSTOM-stage</actionName>
<displayName>Stage</displayName>
<goals>
<goal>clean</goal>
<goal>deploy</goal>
</goals>
<activatedProfiles>
<activatedProfile>sonatype-oss-release</activatedProfile>
</activatedProfiles>
</action>
</actions>