dew/nbactions.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 12:58:12 +0100
branchemul
changeset 694 0d277415ed02
parent 547 36ec0a7616d0
permissions -rw-r--r--
Rebasing the Inflater support on jzlib which, unlike GNU ClassPath, has correct implementation of Huffman code. Making the implementation more easily testable by turning Inflater and ZipInputStream into pure delegates. Current implementation is going to need proper long support.
jaroslav@546
     1
<?xml version="1.0" encoding="UTF-8"?>
jaroslav@547
     2
<!--
jaroslav@547
     3
jaroslav@547
     4
    Back 2 Browser Bytecode Translator
jaroslav@547
     5
    Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@547
     6
jaroslav@547
     7
    This program is free software: you can redistribute it and/or modify
jaroslav@547
     8
    it under the terms of the GNU General Public License as published by
jaroslav@547
     9
    the Free Software Foundation, version 2 of the License.
jaroslav@547
    10
jaroslav@547
    11
    This program is distributed in the hope that it will be useful,
jaroslav@547
    12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@547
    13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@547
    14
    GNU General Public License for more details.
jaroslav@547
    15
jaroslav@547
    16
    You should have received a copy of the GNU General Public License
jaroslav@547
    17
    along with this program. Look for COPYING file in the top folder.
jaroslav@547
    18
    If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@547
    19
jaroslav@547
    20
-->
jaroslav@546
    21
<actions>
jaroslav@546
    22
        <action>
jaroslav@546
    23
            <actionName>run</actionName>
jaroslav@546
    24
            <goals>
jaroslav@546
    25
                <goal>process-classes</goal>
jaroslav@546
    26
                <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
jaroslav@546
    27
            </goals>
jaroslav@546
    28
        </action>
jaroslav@546
    29
        <action>
jaroslav@546
    30
            <actionName>debug</actionName>
jaroslav@546
    31
            <goals>
jaroslav@546
    32
                <goal>process-classes</goal>
jaroslav@546
    33
                <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
jaroslav@546
    34
            </goals>
jaroslav@546
    35
            <properties>
jaroslav@546
    36
                <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath org.apidesign.bck2brwsr.dew.Dew</exec.args>
jaroslav@546
    37
                <exec.executable>java</exec.executable>
jaroslav@546
    38
                <jpda.listen>true</jpda.listen>
jaroslav@546
    39
            </properties>
jaroslav@546
    40
        </action>
jaroslav@546
    41
        <action>
jaroslav@546
    42
            <actionName>profile</actionName>
jaroslav@546
    43
            <goals>
jaroslav@546
    44
                <goal>process-classes</goal>
jaroslav@546
    45
                <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
jaroslav@546
    46
            </goals>
jaroslav@546
    47
            <properties>
jaroslav@546
    48
                <exec.args>${profiler.args} -classpath %classpath org.apidesign.bck2brwsr.dew.Dew</exec.args>
jaroslav@546
    49
                <exec.executable>${profiler.java}</exec.executable>
jaroslav@546
    50
            </properties>
jaroslav@546
    51
        </action>
jaroslav@546
    52
    </actions>