dew/nbactions.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 28 Sep 2013 13:08:41 +0200
branchjavac
changeset 1322 1bf52dbf783e
parent 547 36ec0a7616d0
permissions -rw-r--r--
Adding some implementation of in/out/err streams
     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 <actions>
    22         <action>
    23             <actionName>run</actionName>
    24             <goals>
    25                 <goal>process-classes</goal>
    26                 <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
    27             </goals>
    28         </action>
    29         <action>
    30             <actionName>debug</actionName>
    31             <goals>
    32                 <goal>process-classes</goal>
    33                 <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
    34             </goals>
    35             <properties>
    36                 <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath org.apidesign.bck2brwsr.dew.Dew</exec.args>
    37                 <exec.executable>java</exec.executable>
    38                 <jpda.listen>true</jpda.listen>
    39             </properties>
    40         </action>
    41         <action>
    42             <actionName>profile</actionName>
    43             <goals>
    44                 <goal>process-classes</goal>
    45                 <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
    46             </goals>
    47             <properties>
    48                 <exec.args>${profiler.args} -classpath %classpath org.apidesign.bck2brwsr.dew.Dew</exec.args>
    49                 <exec.executable>${profiler.java}</exec.executable>
    50             </properties>
    51         </action>
    52     </actions>