ko/kosample/client/nbactions.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 14 Jun 2016 06:11:20 +0200
branchLibraries
changeset 1977 46efebc7e220
permissions -rw-r--r--
We need to keep Function.Ax classes in the VM
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3 
     4     Back 2 Browser Bytecode Translator
     5     Copyright (C) 2012-2015 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>exec:exec</goal>
    27         </goals>
    28     </action>
    29     <action>
    30         <actionName>debug</actionName>
    31         <goals>
    32             <goal>process-classes</goal>
    33             <goal>exec:exec</goal>
    34         </goals>
    35         <properties>
    36             <jpda.listen>true</jpda.listen>
    37             <exec.debug.arg>-Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address}</exec.debug.arg>
    38         </properties>
    39     </action>
    40         <action>
    41             <actionName>CUSTOM-Build Desktop App</actionName>
    42             <displayName>Build Desktop App</displayName>
    43             <goals>
    44                 <goal>clean</goal>
    45                 <goal>package</goal>
    46             </goals>
    47             <activatedProfiles>
    48                 <activatedProfile>desktop</activatedProfile>
    49             </activatedProfiles>
    50         </action>
    51 </actions>