| <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> |