javaquery/demo-twitter/nbactions.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 15 Apr 2013 20:47:42 +0200
branchfx
changeset 991 a28d8ee85ba9
parent 931 9a7df12648b9
child 998 85cf9a12d503
permissions -rw-r--r--
Modifying the Twitter example to run in FX Web View
     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 --><actions>
    21         <action>
    22             <actionName>run</actionName>
    23             <packagings>
    24                 <packaging>jar</packaging>
    25             </packagings>
    26             <goals>
    27                 <goal>process-classes</goal>
    28                 <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
    29             </goals>
    30             <properties>
    31                 <exec.args>-classpath %classpath org.apidesign.bck2brwsr.demo.twitter.Main</exec.args>
    32                 <exec.executable>java</exec.executable>
    33             </properties>
    34         </action>
    35         <action>
    36             <actionName>debug</actionName>
    37             <packagings>
    38                 <packaging>jar</packaging>
    39             </packagings>
    40             <goals>
    41                 <goal>process-classes</goal>
    42                 <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
    43             </goals>
    44             <properties>
    45                 <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath org.apidesign.bck2brwsr.demo.twitter.Main</exec.args>
    46                 <exec.executable>java</exec.executable>
    47                 <jpda.listen>true</jpda.listen>
    48             </properties>
    49         </action>
    50 </actions>