comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:92d945347fc0
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4 <parent>
5 <groupId>com.atlassian.jira.plugins</groupId>
6 <artifactId>jira-plugin-base</artifactId>
7 <version>5</version>
8 </parent>
9
10 <modelVersion>4.0.0</modelVersion>
11 <groupId>org.nwoca.ssdt.jira</groupId>
12 <artifactId>ssdt-jira-plugins</artifactId>
13 <version>2.0-SNAPSHOT</version>
14
15 <name>SSDT JIRA Plugins V2</name>
16 <packaging>jar</packaging>
17 <description>Custom plugs by SSDT for work flow.</description>
18
19 <properties>
20 <atlassian.plugin.key>org.nwoca.ssdt.jira.plugins</atlassian.plugin.key>
21 <!--
22 Change this property to compile your plugin against different JIRA
23 versions.
24 -->
25 <jira.version>3.12</jira.version>
26 </properties>
27
28 <!-- TODO: Add project description -->
29 <!--
30 <description></description>
31 <url></url>
32 -->
33
34 <!-- TODO: Complete developer details -->
35 <!--
36 <developers>
37 <developer>
38 <name>John Smith</name>
39 <organization>Example Company</organization>
40 </developer>
41 </developers>
42 -->
43
44 <!-- TODO: Complete source control details -->
45 <!--
46 <scm>
47 <connection></connection>
48 <developerConnection></developerConnection>
49 <url></url>
50 </scm>
51 -->
52
53 <build>
54 <!--
55 The following plugin definitions are required to invoke functions that
56 build run-time environment for running integration tests against JIRA
57 -->
58 <plugins>
59 <plugin>
60 <artifactId>maven-dependency-plugin</artifactId>
61 </plugin>
62 <plugin>
63 <artifactId>maven-antrun-plugin</artifactId>
64 </plugin>
65 <plugin>
66 <groupId>org.codehaus.cargo</groupId>
67 <artifactId>cargo-maven2-plugin</artifactId>
68 </plugin>
69 <plugin>
70 <artifactId>maven-compiler-plugin</artifactId>
71 <version>2.0.2</version>
72 <configuration>
73 <source>1.5</source>
74 <target>1.5</target>
75 </configuration>
76 </plugin>
77 </plugins>
78 </build>
79
80 <profiles>
81 <profile>
82 <id>plugin-debug</id>
83 <build>
84 <defaultGoal>verify</defaultGoal>
85 </build>
86 <activation>
87 </activation>
88 <properties>
89 <http.port>8080</http.port>
90 <rmi.port>9001</rmi.port>
91 <maven.test.skip>true</maven.test.skip>
92 <cargo.wait>true</cargo.wait>
93 <jvmargs>-Xms128m -Xmx256m -Xdebug -Xnoagent -Xrunjdwp:server=y,transport=dt_socket,address=5005,suspend=n</jvmargs>
94 <jira.config.directory>plugin-debug</jira.config.directory>
95 <unpack.jira.config.overwrite>false</unpack.jira.config.overwrite>
96 </properties>
97 </profile>
98 </profiles>
99
100 <dependencies>
101 <dependency>
102 <groupId>junit</groupId>
103 <artifactId>junit</artifactId>
104 <version>3.8.1</version>
105 <scope>test</scope>
106 </dependency>
107 </dependencies>
108
109 <distributionManagement>
110 <repository>
111 <id>atlassian-contrib</id>
112 <name>Atlassian repository of contributed code</name>
113 <url>dav:https://maven.atlassian.com/contrib</url>
114 </repository>
115 <snapshotRepository>
116 <id>atlassian-contrib-snapshot</id>
117 <name>Atlassian repository of contributed code snapshots</name>
118 <url>dav:https://maven.atlassian.com/contrib-snapshot</url>
119 </snapshotRepository>
120 </distributionManagement>
121
122 </project>