File: build.xml

package info (click to toggle)
plexus-container-default 1.0-alpha-9-stable-1-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,760 kB
  • ctags: 2,057
  • sloc: java: 11,200; xml: 878; makefile: 25
file content (24 lines) | stat: -rw-r--r-- 912 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>

<project name="pkg-java" default="package" basedir="..">

    <property file="debian/build.properties"/>
    <property file="/usr/share/maven-ant-helper/maven-defaults.properties"/>
    <property name="maven.test.exclude" value="**/PlexusHierarchyTest.java"/>
    <property name="maven.build.xml" value="/usr/share/maven-ant-helper/maven-build.xml"/>

    <target name="clean">
        <ant target="clean" antfile="${maven.build.xml}" dir="."/>
    </target>

    <target name="package">
        <ant target="package" antfile="${maven.build.xml}" dir=".">
            <property name="artifactId" value="${artfiactId}"/>
        </ant>
        <copy file="build/plexus-container-default-${version}.jar" tofile="build/plexus-container-default-1.0.jar"/>
    </target>

    <target name="javadoc">
        <ant target="javadoc" antfile="${maven.build.xml}" dir="."/>
    </target>
</project>