Mercurial > public > JIRA
diff ssdt-jira-plugins-v2/plugins/pom.xml @ 0:92d945347fc0
V2 of the SSDT JIRA Plugins. Uses new Maven 2 based project. Created
for JIRA 3.12.
author | smith |
---|---|
date | Tue, 20 May 2008 17:11:35 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ssdt-jira-plugins-v2/plugins/pom.xml Tue May 20 17:11:35 2008 -0400 @@ -0,0 +1,122 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + + <parent> + <groupId>com.atlassian.jira.plugins</groupId> + <artifactId>jira-plugin-base</artifactId> + <version>5</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.nwoca.ssdt.jira</groupId> + <artifactId>ssdt-jira-plugins</artifactId> + <version>2.0-SNAPSHOT</version> + + <name>SSDT JIRA Plugins V2</name> + <packaging>jar</packaging> + <description>Custom plugs by SSDT for work flow.</description> + + <properties> + <atlassian.plugin.key>org.nwoca.ssdt.jira.plugins</atlassian.plugin.key> + <!-- + Change this property to compile your plugin against different JIRA + versions. + --> + <jira.version>3.12</jira.version> + </properties> + + <!-- TODO: Add project description --> + <!-- + <description></description> + <url></url> + --> + + <!-- TODO: Complete developer details --> + <!-- + <developers> + <developer> + <name>John Smith</name> + <organization>Example Company</organization> + </developer> + </developers> + --> + + <!-- TODO: Complete source control details --> + <!-- + <scm> + <connection></connection> + <developerConnection></developerConnection> + <url></url> + </scm> + --> + + <build> + <!-- + The following plugin definitions are required to invoke functions that + build run-time environment for running integration tests against JIRA + --> + <plugins> + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.cargo</groupId> + <artifactId>cargo-maven2-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.0.2</version> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>plugin-debug</id> + <build> + <defaultGoal>verify</defaultGoal> + </build> + <activation> + </activation> + <properties> + <http.port>8080</http.port> + <rmi.port>9001</rmi.port> + <maven.test.skip>true</maven.test.skip> + <cargo.wait>true</cargo.wait> + <jvmargs>-Xms128m -Xmx256m -Xdebug -Xnoagent -Xrunjdwp:server=y,transport=dt_socket,address=5005,suspend=n</jvmargs> + <jira.config.directory>plugin-debug</jira.config.directory> + <unpack.jira.config.overwrite>false</unpack.jira.config.overwrite> + </properties> + </profile> + </profiles> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + </dependencies> + + <distributionManagement> + <repository> + <id>atlassian-contrib</id> + <name>Atlassian repository of contributed code</name> + <url>dav:https://maven.atlassian.com/contrib</url> + </repository> + <snapshotRepository> + <id>atlassian-contrib-snapshot</id> + <name>Atlassian repository of contributed code snapshots</name> + <url>dav:https://maven.atlassian.com/contrib-snapshot</url> + </snapshotRepository> + </distributionManagement> + +</project>