twitter/nbactions.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 20 Jun 2013 13:18:10 +0200
branchclassloader
changeset 36 7ff8ac49cd8c
parent 2 38aa0b98ef49
permissions -rw-r--r--
Rewriting to be Grizzly independent and also ajusting to Twitter's removal of 1.0 APIs
jtulach@0
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@0
     2
<!--
jtulach@0
     3
jtulach@0
     4
    The MIT License (MIT)
jtulach@0
     5
jtulach@0
     6
    Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@0
     7
jtulach@0
     8
    Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@0
     9
    of this software and associated documentation files (the "Software"), to deal
jtulach@0
    10
    in the Software without restriction, including without limitation the rights
jtulach@0
    11
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@0
    12
    copies of the Software, and to permit persons to whom the Software is
jtulach@0
    13
    furnished to do so, subject to the following conditions:
jtulach@0
    14
jtulach@0
    15
    The above copyright notice and this permission notice shall be included in
jtulach@0
    16
    all copies or substantial portions of the Software.
jtulach@0
    17
jtulach@0
    18
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@0
    19
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@0
    20
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@0
    21
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@0
    22
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@0
    23
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@0
    24
    THE SOFTWARE.
jtulach@0
    25
jtulach@36
    26
--><actions>
jtulach@36
    27
        <action>
jtulach@36
    28
            <actionName>debug</actionName>
jtulach@36
    29
            <packagings>
jtulach@36
    30
                <packaging>jar</packaging>
jtulach@36
    31
            </packagings>
jtulach@36
    32
            <goals>
jtulach@36
    33
                <goal>process-classes</goal>
jtulach@36
    34
                <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
jtulach@36
    35
            </goals>
jtulach@36
    36
            <properties>
jtulach@36
    37
                <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath org.apidesign.html.demo.twitter.TwitterMain</exec.args>
jtulach@36
    38
                <exec.executable>java</exec.executable>
jtulach@36
    39
                <jpda.listen>true</jpda.listen>
jtulach@36
    40
            </properties>
jtulach@36
    41
        </action>
jtulach@36
    42
        <action>
jtulach@36
    43
            <actionName>run</actionName>
jtulach@36
    44
            <packagings>
jtulach@36
    45
                <packaging>jar</packaging>
jtulach@36
    46
            </packagings>
jtulach@36
    47
            <goals>
jtulach@36
    48
                <goal>process-classes</goal>
jtulach@36
    49
                <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
jtulach@36
    50
            </goals>
jtulach@36
    51
            <properties>
jtulach@36
    52
                <exec.args>-classpath %classpath org.apidesign.html.demo.twitter.TwitterMain</exec.args>
jtulach@36
    53
                <exec.executable>java</exec.executable>
jtulach@36
    54
            </properties>
jtulach@36
    55
        </action>
jtulach@0
    56
</actions>