ko/kosample/client-web/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         <packagings>
    25             <packaging>jar</packaging>
    26         </packagings>
    27         <goals>
    28             <goal>package</goal>
    29             <goal>bck2brwsr:show</goal>
    30         </goals>
    31         <properties>
    32             <skipTests>true</skipTests>
    33         </properties>
    34     </action>
    35     <action>
    36         <actionName>debug</actionName>
    37         <packagings>
    38             <packaging>jar</packaging>
    39         </packagings>
    40         <goals>
    41             <goal>package</goal>
    42             <goal>bck2brwsr:show</goal>
    43         </goals>
    44         <properties>
    45             <skipTests>true</skipTests>
    46             <bck2brwsr.obfuscationlevel>NONE</bck2brwsr.obfuscationlevel>
    47             <jpda.listen>maven</jpda.listen>
    48         </properties>
    49     </action>
    50     <action>
    51         <actionName>CUSTOM-bck2brwsr-show</actionName>
    52         <displayName>Run in a Browser</displayName>
    53         <goals>
    54             <goal>package</goal>
    55             <goal>bck2brwsr:show</goal>
    56         </goals>
    57         <properties>
    58             <skipTests>true</skipTests>
    59             <bck2brwsr.obfuscationlevel>NONE</bck2brwsr.obfuscationlevel>
    60         </properties>
    61     </action>
    62     <action>
    63         <actionName>CUSTOM-bck2brwsr-web</actionName>
    64         <displayName>Package for website</displayName>
    65         <goals>
    66             <goal>clean</goal>
    67             <goal>package</goal>
    68         </goals>
    69     </action>
    70     <action>
    71         <actionName>CUSTOM-teavm-show</actionName>
    72         <displayName>Run in a Browser via TeaVM</displayName>
    73         <goals>
    74             <goal>package</goal>
    75             <goal>bck2brwsr:show</goal>
    76         </goals>
    77         <activatedProfiles>
    78             <activatedProfile>teavm</activatedProfile>
    79         </activatedProfiles>
    80         <properties>
    81             <skipTests>true</skipTests>
    82         </properties>
    83     </action>
    84     <action>
    85         <actionName>CUSTOM-teavm-show</actionName>
    86         <displayName>Debug in a Browser via TeaVM</displayName>
    87         <goals>
    88             <goal>package</goal>
    89             <goal>bck2brwsr:show</goal>
    90         </goals>
    91         <activatedProfiles>
    92             <activatedProfile>teavm</activatedProfile>
    93         </activatedProfiles>
    94         <properties>
    95             <skipTests>true</skipTests>
    96             <teavm.debug>true</teavm.debug>
    97         </properties>
    98     </action>
    99     <action>
   100         <actionName>CUSTOM-teavm-web</actionName>
   101         <displayName>Package for website via TeaVM</displayName>
   102         <goals>
   103             <goal>clean</goal>
   104             <goal>package</goal>
   105         </goals>
   106         <activatedProfiles>
   107             <activatedProfile>teavm</activatedProfile>
   108         </activatedProfiles>
   109     </action>
   110 </actions>