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