freemarkerdor/nbactions.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 15 Apr 2011 21:05:46 +0200
changeset 281 fdf4436aad29
parent 168 a705dedc07d8
permissions -rw-r--r--
Most recent stable version of jersey is 1.6
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3 
     4     Quoridor server and related libraries
     5     Copyright (C) 2009-2010 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     6 
     7     This program is free software: you can redistribute it and/or modify
     8     it under the terms of the GNU General Public License as published by
     9     the Free Software Foundation, either version 3 of the License.
    10 
    11     This program is distributed in the hope that it will be useful,
    12     but WITHOUT ANY WARRANTY; without even the implied warranty of
    13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14     GNU General Public License for more details.
    15 
    16     You should have received a copy of the GNU General Public License
    17     along with this program. Look for COPYING file in the top folder.
    18     If not, see http://www.gnu.org/licenses/.
    19 
    20 -->
    21 
    22 <actions>
    23         <action>
    24             <actionName>run</actionName>
    25             <goals>
    26                 <goal>process-classes</goal>
    27                 <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal>
    28             </goals>
    29             <properties>
    30                 <exec.classpathScope>runtime</exec.classpathScope>
    31                 <exec.args>-classpath %classpath cz.xelfi.quoridor.freemarkerdor.UI 9333 http://quoridor.xelfi.cz/api/</exec.args>
    32                 <exec.executable>java</exec.executable>
    33             </properties>
    34         </action>
    35         <action>
    36             <actionName>debug</actionName>
    37             <goals>
    38                 <goal>process-classes</goal>
    39                 <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal>
    40             </goals>
    41             <properties>
    42                 <exec.classpathScope>runtime</exec.classpathScope>
    43                 <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath cz.xelfi.quoridor.freemarkerdor.UI 9333 http://quoridor.xelfi.cz/api/</exec.args>
    44                 <jpda.listen>true</jpda.listen>
    45                 <exec.executable>java</exec.executable>
    46             </properties>
    47         </action>
    48         <action>
    49             <actionName>profile</actionName>
    50             <goals>
    51                 <goal>process-classes</goal>
    52                 <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal>
    53             </goals>
    54             <properties>
    55                 <exec.args>${profiler.args} -classpath %classpath cz.xelfi.quoridor.freemarkerdor.UI 9333 http://quoridor.xelfi.cz/api/</exec.args>
    56                 <profiler.action>profile</profiler.action>
    57                 <exec.executable>${profiler.java}</exec.executable>
    58             </properties>
    59         </action>
    60     </actions>