build.xml
author Jan Lahoda <jlahoda@netbeans.org>
Thu, 28 Apr 2011 20:13:40 +0200
changeset 572 d9b17eac9870
parent 509 141bf0c9fcf6
child 577 a89d30926467
permissions -rw-r--r--
Preventing various exception in the RemoteIndices dialog
jlahoda@0
     1
<?xml version="1.0" encoding="UTF-8"?>
jlahoda@0
     2
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
jlahoda@0
     3
<!-- for some information on what you could do (e.g. targets to override). -->
jlahoda@0
     4
<!-- If you delete this file and reopen the project it will be recreated. -->
jlahoda@0
     5
<project name="jackpot30" basedir=".">
jlahoda@0
     6
    <description>Builds the module suite jackpot30.</description>
jlahoda@0
     7
    <import file="nbproject/build-impl.xml"/>
jlahoda@43
     8
    
jlahoda@127
     9
    <property name="server.modules" value="server/indexer:server/web.api" />
jlahoda@127
    10
    
jlahoda@132
    11
    <target name="-init" depends="suite.-init">
jlahoda@295
    12
        <copy file="${nbplatform.active.dir}/java/modules/org-netbeans-modules-java-source.jar" todir="server/lib" />
jlahoda@295
    13
        <copy file="${nbplatform.active.dir}/platform/core/org-openide-filesystems.jar" todir="server/lib" />
jlahoda@421
    14
        <copy file="${nbplatform.active.dir}/platform/lib/org-openide-util.jar" todir="server/lib" />
jlahoda@421
    15
        <copy file="${nbplatform.active.dir}/platform/lib/org-openide-util-lookup.jar" todir="server/lib" />
jlahoda@517
    16
        <copy file="${nbplatform.active.dir}/ide/modules/org-netbeans-spi-editor-hints.jar" todir="server/lib" />
jlahoda@425
    17
        <copy file="${nbplatform.active.dir}/java/modules/ext/javac-api-nb-7.0-b07.jar" todir="server/lib/javac" />
jlahoda@425
    18
        <copy file="${nbplatform.active.dir}/java/modules/ext/javac-impl-nb-7.0-b07.jar" todir="server/lib/javac" />
jlahoda@132
    19
    </target>
jlahoda@132
    20
    
jlahoda@43
    21
    <target name="findbugs" depends="-init">
jlahoda@43
    22
        <subant target="findbugs" buildpath="${modules}" inheritall="false"/>
jlahoda@43
    23
    </target>
jlahoda@127
    24
jlahoda@127
    25
    <target name="clean" depends="suite.clean">
jlahoda@127
    26
        <subant target="clean" buildpath="${server.modules}" inheritall="false"/>
jlahoda@127
    27
    </target>
jlahoda@127
    28
jlahoda@127
    29
    <target name="build" depends="suite.build">
jlahoda@127
    30
        <subant target="jar" buildpath="${server.modules}" inheritall="false"/>
jlahoda@127
    31
    </target>
jlahoda@127
    32
jlahoda@127
    33
    <target name="test" depends="suite.test">
jlahoda@127
    34
        <subant target="test" buildpath="${server.modules}" inheritall="false"/>
jlahoda@127
    35
    </target>
jlahoda@127
    36
jlahoda@509
    37
<!--    <target name="coverage-report" depends="testcoverage-suite.coverage-report">
jlahoda@436
    38
        <subant target="test" buildpath="${server.modules}" inheritall="false"/>
jlahoda@509
    39
    </target>-->
jlahoda@436
    40
jlahoda@0
    41
</project>