javaquery/demo-twitter/nbactions.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 16 Apr 2013 15:25:58 +0200
branchfx
changeset 998 85cf9a12d503
parent 991 a28d8ee85ba9
permissions -rw-r--r--
Fixing license formating
jaroslav@931
     1
<?xml version="1.0" encoding="UTF-8"?>
jaroslav@931
     2
<!--
jaroslav@931
     3
jaroslav@931
     4
    Back 2 Browser Bytecode Translator
jaroslav@931
     5
    Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@931
     6
jaroslav@931
     7
    This program is free software: you can redistribute it and/or modify
jaroslav@931
     8
    it under the terms of the GNU General Public License as published by
jaroslav@931
     9
    the Free Software Foundation, version 2 of the License.
jaroslav@931
    10
jaroslav@931
    11
    This program is distributed in the hope that it will be useful,
jaroslav@931
    12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@931
    13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@931
    14
    GNU General Public License for more details.
jaroslav@931
    15
jaroslav@931
    16
    You should have received a copy of the GNU General Public License
jaroslav@931
    17
    along with this program. Look for COPYING file in the top folder.
jaroslav@931
    18
    If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@931
    19
jaroslav@998
    20
-->
jaroslav@998
    21
jaroslav@998
    22
<actions>
jaroslav@991
    23
        <action>
jaroslav@991
    24
            <actionName>run</actionName>
jaroslav@991
    25
            <packagings>
jaroslav@991
    26
                <packaging>jar</packaging>
jaroslav@991
    27
            </packagings>
jaroslav@991
    28
            <goals>
jaroslav@991
    29
                <goal>process-classes</goal>
jaroslav@991
    30
                <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
jaroslav@991
    31
            </goals>
jaroslav@991
    32
            <properties>
jaroslav@991
    33
                <exec.args>-classpath %classpath org.apidesign.bck2brwsr.demo.twitter.Main</exec.args>
jaroslav@991
    34
                <exec.executable>java</exec.executable>
jaroslav@991
    35
            </properties>
jaroslav@991
    36
        </action>
jaroslav@991
    37
        <action>
jaroslav@991
    38
            <actionName>debug</actionName>
jaroslav@991
    39
            <packagings>
jaroslav@991
    40
                <packaging>jar</packaging>
jaroslav@991
    41
            </packagings>
jaroslav@991
    42
            <goals>
jaroslav@991
    43
                <goal>process-classes</goal>
jaroslav@991
    44
                <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
jaroslav@991
    45
            </goals>
jaroslav@991
    46
            <properties>
jaroslav@991
    47
                <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath org.apidesign.bck2brwsr.demo.twitter.Main</exec.args>
jaroslav@991
    48
                <exec.executable>java</exec.executable>
jaroslav@991
    49
                <jpda.listen>true</jpda.listen>
jaroslav@991
    50
            </properties>
jaroslav@991
    51
        </action>
jaroslav@931
    52
</actions>