ko/kosample/client-web/nbactions.xml
changeset 1941 621825e167d7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ko/kosample/client-web/nbactions.xml	Tue Apr 26 08:04:12 2016 +0200
     1.3 @@ -0,0 +1,110 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<!--
     1.6 +
     1.7 +    Back 2 Browser Bytecode Translator
     1.8 +    Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.9 +
    1.10 +    This program is free software: you can redistribute it and/or modify
    1.11 +    it under the terms of the GNU General Public License as published by
    1.12 +    the Free Software Foundation, version 2 of the License.
    1.13 +
    1.14 +    This program is distributed in the hope that it will be useful,
    1.15 +    but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.17 +    GNU General Public License for more details.
    1.18 +
    1.19 +    You should have received a copy of the GNU General Public License
    1.20 +    along with this program. Look for COPYING file in the top folder.
    1.21 +    If not, see http://opensource.org/licenses/GPL-2.0.
    1.22 +
    1.23 +-->
    1.24 +<actions>
    1.25 +    <action>
    1.26 +        <actionName>run</actionName>
    1.27 +        <packagings>
    1.28 +            <packaging>jar</packaging>
    1.29 +        </packagings>
    1.30 +        <goals>
    1.31 +            <goal>package</goal>
    1.32 +            <goal>bck2brwsr:show</goal>
    1.33 +        </goals>
    1.34 +        <properties>
    1.35 +            <skipTests>true</skipTests>
    1.36 +        </properties>
    1.37 +    </action>
    1.38 +    <action>
    1.39 +        <actionName>debug</actionName>
    1.40 +        <packagings>
    1.41 +            <packaging>jar</packaging>
    1.42 +        </packagings>
    1.43 +        <goals>
    1.44 +            <goal>package</goal>
    1.45 +            <goal>bck2brwsr:show</goal>
    1.46 +        </goals>
    1.47 +        <properties>
    1.48 +            <skipTests>true</skipTests>
    1.49 +            <bck2brwsr.obfuscationlevel>NONE</bck2brwsr.obfuscationlevel>
    1.50 +            <jpda.listen>maven</jpda.listen>
    1.51 +        </properties>
    1.52 +    </action>
    1.53 +    <action>
    1.54 +        <actionName>CUSTOM-bck2brwsr-show</actionName>
    1.55 +        <displayName>Run in a Browser</displayName>
    1.56 +        <goals>
    1.57 +            <goal>package</goal>
    1.58 +            <goal>bck2brwsr:show</goal>
    1.59 +        </goals>
    1.60 +        <properties>
    1.61 +            <skipTests>true</skipTests>
    1.62 +            <bck2brwsr.obfuscationlevel>NONE</bck2brwsr.obfuscationlevel>
    1.63 +        </properties>
    1.64 +    </action>
    1.65 +    <action>
    1.66 +        <actionName>CUSTOM-bck2brwsr-web</actionName>
    1.67 +        <displayName>Package for website</displayName>
    1.68 +        <goals>
    1.69 +            <goal>clean</goal>
    1.70 +            <goal>package</goal>
    1.71 +        </goals>
    1.72 +    </action>
    1.73 +    <action>
    1.74 +        <actionName>CUSTOM-teavm-show</actionName>
    1.75 +        <displayName>Run in a Browser via TeaVM</displayName>
    1.76 +        <goals>
    1.77 +            <goal>package</goal>
    1.78 +            <goal>bck2brwsr:show</goal>
    1.79 +        </goals>
    1.80 +        <activatedProfiles>
    1.81 +            <activatedProfile>teavm</activatedProfile>
    1.82 +        </activatedProfiles>
    1.83 +        <properties>
    1.84 +            <skipTests>true</skipTests>
    1.85 +        </properties>
    1.86 +    </action>
    1.87 +    <action>
    1.88 +        <actionName>CUSTOM-teavm-show</actionName>
    1.89 +        <displayName>Debug in a Browser via TeaVM</displayName>
    1.90 +        <goals>
    1.91 +            <goal>package</goal>
    1.92 +            <goal>bck2brwsr:show</goal>
    1.93 +        </goals>
    1.94 +        <activatedProfiles>
    1.95 +            <activatedProfile>teavm</activatedProfile>
    1.96 +        </activatedProfiles>
    1.97 +        <properties>
    1.98 +            <skipTests>true</skipTests>
    1.99 +            <teavm.debug>true</teavm.debug>
   1.100 +        </properties>
   1.101 +    </action>
   1.102 +    <action>
   1.103 +        <actionName>CUSTOM-teavm-web</actionName>
   1.104 +        <displayName>Package for website via TeaVM</displayName>
   1.105 +        <goals>
   1.106 +            <goal>clean</goal>
   1.107 +            <goal>package</goal>
   1.108 +        </goals>
   1.109 +        <activatedProfiles>
   1.110 +            <activatedProfile>teavm</activatedProfile>
   1.111 +        </activatedProfiles>
   1.112 +    </action>
   1.113 +</actions>