source: ComponentRegistry/trunk/ComponentRegistry/nbactions.xml @ 5549

Last change on this file since 5549 was 5549, checked in by olhsha@mpi.nl, 10 years ago

Added group service. Tested via the tomcat on loclahots (test URI and postman), old unit tests are adjusted and work well. Todo: retest on localhost tomcat, look at run-time exceptions, add new unit tests, adjust front-end

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<actions>
3        <action>
4            <actionName>run</actionName>
5            <goals>
6                <goal>package</goal>
7            </goals>
8            <properties>
9                <netbeans.deploy>true</netbeans.deploy>
10                <skipTests>true</skipTests>
11                <netbeans.deploy.clientUrlPart></netbeans.deploy.clientUrlPart>
12            </properties>
13        </action>
14        <action>
15            <actionName>debug</actionName>
16            <goals>
17                <goal>package</goal>
18            </goals>
19            <properties>
20                <netbeans.deploy.debugmode>true</netbeans.deploy.debugmode>
21                <netbeans.deploy>true</netbeans.deploy>
22                <skipTests>true</skipTests>
23                <netbeans.deploy.clientUrlPart></netbeans.deploy.clientUrlPart>
24            </properties>
25        </action>
26        <action>
27            <actionName>profile</actionName>
28            <goals>
29                <goal>package</goal>
30            </goals>
31            <properties>
32                <netbeans.deploy>true</netbeans.deploy>
33                <netbeans.deploy.profilemode>true</netbeans.deploy.profilemode>
34                <netbeans.deploy.clientUrlPart></netbeans.deploy.clientUrlPart>
35            </properties>
36        </action>
37        <action>
38            <actionName>debug.test.single</actionName>
39            <goals>
40                <goal>test-compile</goal>
41                <goal>surefire:test</goal>
42            </goals>
43            <properties>
44                <test>${packageClassName}</test>
45                <forkMode>once</forkMode>
46                <maven.surefire.debug>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -Xmx512m</maven.surefire.debug>
47                <jpda.listen>true</jpda.listen>
48               
49            </properties>
50        </action>
51    </actions>
Note: See TracBrowser for help on using the repository browser.