summaryrefslogtreecommitdiff
path: root/java/plugins/pom.xml
blob: 161656471fa22cdc323744d64cab85c7eec8f9c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.apache.qpid</groupId>
    <artifactId>jython-plugin</artifactId>
    <packaging>maven-plugin</packaging>
    <version>1.0-incubating-M3-SNAPSHOT</version>
    <name>Jython Launcher</name>

    <parent>
        <groupId>org.apache.qpid</groupId>
        <artifactId>qpid</artifactId>
        <version>1.0-incubating-M3-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <properties>
        <!-- This is an assembly/distribution pom so no test code exists -->
        <maven.test.skip>true</maven.test.skip>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>2.0</version>
        </dependency>

        <dependency>
            <groupId>org.python</groupId>
            <artifactId>jython</artifactId>
            <version>2.2-rc1</version>
        </dependency>
    </dependencies>
</project>