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
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3 
     4     Back 2 Browser Bytecode Translator
     5     Copyright (C) 2012 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, version 2 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://opensource.org/licenses/GPL-2.0.
    19 
    20 -->
    21 
    22 <actions>
    23         <action>
    24             <actionName>run</actionName>
    25             <packagings>
    26                 <packaging>jar</packaging>
    27             </packagings>
    28             <goals>
    29                 <goal>process-classes</goal>
    30                 <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
    31             </goals>
    32             <properties>
    33                 <exec.args>-classpath %classpath org.apidesign.bck2brwsr.demo.twitter.Main</exec.args>
    34                 <exec.executable>java</exec.executable>
    35             </properties>
    36         </action>
    37         <action>
    38             <actionName>debug</actionName>
    39             <packagings>
    40                 <packaging>jar</packaging>
    41             </packagings>
    42             <goals>
    43                 <goal>process-classes</goal>
    44                 <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
    45             </goals>
    46             <properties>
    47                 <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath org.apidesign.bck2brwsr.demo.twitter.Main</exec.args>
    48                 <exec.executable>java</exec.executable>
    49                 <jpda.listen>true</jpda.listen>
    50             </properties>
    51         </action>
    52 </actions>