webidor/nbactions.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Jan 2010 23:08:06 +0100
branchstatistics-and-elo
changeset 181 e3fb438103e0
parent 35 2e85dd878f04
child 266 15fcdfc4cd4a
permissions -rw-r--r--
Test to verify behaviour of getCode and valueOf
jtulach@35
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@35
     2
<actions>
jtulach@35
     3
        <action>
jtulach@35
     4
            <actionName>run</actionName>
jtulach@35
     5
            <goals>
jtulach@35
     6
                <goal>process-classes</goal>
jtulach@35
     7
                <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal>
jtulach@35
     8
            </goals>
jtulach@35
     9
            <properties>
jtulach@35
    10
                <exec.classpathScope>runtime</exec.classpathScope>
jtulach@38
    11
                <exec.args>-classpath %classpath cz.xelfi.quoridor.webidor.resources.Quoridor</exec.args>
jtulach@35
    12
                <exec.executable>java</exec.executable>
jtulach@35
    13
            </properties>
jtulach@35
    14
        </action>
jtulach@38
    15
        <action>
jtulach@38
    16
            <actionName>debug</actionName>
jtulach@38
    17
            <goals>
jtulach@38
    18
                <goal>process-classes</goal>
jtulach@38
    19
                <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal>
jtulach@38
    20
            </goals>
jtulach@38
    21
            <properties>
jtulach@38
    22
                <exec.classpathScope>runtime</exec.classpathScope>
jtulach@38
    23
                <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath cz.xelfi.quoridor.webidor.resources.Quoridor</exec.args>
jtulach@38
    24
                <jpda.listen>true</jpda.listen>
jtulach@38
    25
                <exec.executable>java</exec.executable>
jtulach@38
    26
            </properties>
jtulach@38
    27
        </action>
jtulach@38
    28
        <action>
jtulach@38
    29
            <actionName>profile</actionName>
jtulach@38
    30
            <goals>
jtulach@38
    31
                <goal>process-classes</goal>
jtulach@38
    32
                <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal>
jtulach@38
    33
            </goals>
jtulach@38
    34
            <properties>
jtulach@38
    35
                <exec.args>${profiler.args} -classpath %classpath cz.xelfi.quoridor.webidor.resources.Quoridor</exec.args>
jtulach@38
    36
                <profiler.action>profile</profiler.action>
jtulach@38
    37
                <exec.executable>${profiler.java}</exec.executable>
jtulach@38
    38
            </properties>
jtulach@38
    39
        </action>
jtulach@35
    40
    </actions>