1
by Guillermo Gonzalez
* initial code import |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
||
3 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
4 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
5 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|
6 |
||
7 |
<parent>
|
|
8 |
<groupId>com.atlassian.jira.plugins</groupId> |
|
9 |
<artifactId>jira-plugin-base</artifactId> |
|
5
by Mattias Amnefelt
Update to version 23 of jira-base-plugin to support APIs for jira4 |
10 |
<version>23</version> |
1
by Guillermo Gonzalez
* initial code import |
11 |
</parent>
|
12 |
||
13 |
<modelVersion>4.0.0</modelVersion> |
|
14 |
<groupId>com.atlassian.jira.plugin.ext.bazaar</groupId> |
|
15 |
<artifactId>bzr-jira</artifactId> |
|
16 |
<version>1.0-SNAPSHOT</version> |
|
17 |
||
18 |
<name><!-- TODO: Add a name for your plugin --></name> |
|
19 |
<packaging>atlassian-plugin</packaging> |
|
20 |
||
21 |
<!-- TODO: Add project description -->
|
|
22 |
<!--
|
|
23 |
<description></description>
|
|
24 |
<url></url>
|
|
25 |
-->
|
|
26 |
||
27 |
<!-- TODO: Complete developer details -->
|
|
28 |
<!--
|
|
29 |
<developers>
|
|
30 |
<developer>
|
|
31 |
<name>John Smith</name>
|
|
32 |
<organization>Example Company</organization>
|
|
33 |
</developer>
|
|
34 |
</developers>
|
|
35 |
-->
|
|
36 |
||
37 |
<!-- TODO: Complete source control details -->
|
|
38 |
<!--
|
|
39 |
<scm>
|
|
40 |
<connection></connection>
|
|
41 |
<developerConnection></developerConnection>
|
|
42 |
<url></url>
|
|
43 |
</scm>
|
|
44 |
-->
|
|
45 |
<repositories>
|
|
46 |
<repository>
|
|
47 |
<id>atlassian</id> |
|
48 |
<url>https://maven.atlassian.com/repository/public</url> |
|
49 |
</repository>
|
|
50 |
</repositories>
|
|
51 |
<dependencies>
|
|
52 |
<dependency>
|
|
53 |
<groupId>org.vcs.bazaar.client</groupId> |
|
54 |
<artifactId>bzr-java-lib</artifactId> |
|
6
by Mattias Amnefelt
Version 0.5.3 for bzr-java-lib |
55 |
<version>0.5.3-SNAPSHOT</version> |
1
by Guillermo Gonzalez
* initial code import |
56 |
<scope>compile</scope> |
57 |
</dependency>
|
|
58 |
<dependency>
|
|
59 |
<groupId>jmock</groupId> |
|
60 |
<artifactId>jmock-cglib</artifactId> |
|
61 |
<version>1.2.0</version> |
|
62 |
<scope>test</scope> |
|
63 |
</dependency>
|
|
64 |
<dependency>
|
|
65 |
<groupId>commons-io</groupId> |
|
66 |
<artifactId>commons-io</artifactId> |
|
67 |
<version>1.2</version> |
|
68 |
<scope>test</scope> |
|
69 |
</dependency>
|
|
70 |
</dependencies>
|
|
71 |
<build><resources>
|
|
72 |
<resource>
|
|
73 |
<directory>src/main/resources</directory> |
|
74 |
<filtering>false</filtering> |
|
75 |
</resource>
|
|
76 |
</resources>
|
|
77 |
<testResources>
|
|
78 |
<testResource>
|
|
79 |
<directory>src/test/resources</directory> |
|
80 |
<filtering>false</filtering> |
|
81 |
<excludes>
|
|
82 |
<exclude>bzr-jira-plugin.properties</exclude> |
|
83 |
</excludes>
|
|
84 |
</testResource>
|
|
85 |
</testResources>
|
|
86 |
<plugins>
|
|
87 |
<!-- plugin>
|
|
88 |
<groupId>com.atlassian.maven.plugins</groupId>
|
|
89 |
<artifactId>maven-clover2-plugin</artifactId>
|
|
90 |
<configuration>
|
|
91 |
<targetPercentage>50%</targetPercentage>
|
|
92 |
</configuration>
|
|
93 |
</plugin-->
|
|
94 |
<plugin>
|
|
95 |
<artifactId>maven-antrun-plugin</artifactId> |
|
96 |
<version>1.1</version> |
|
97 |
<executions>
|
|
98 |
<execution>
|
|
99 |
<id>pre-integration-test-user-ant-tasks</id> |
|
100 |
<configuration>
|
|
101 |
<tasks>
|
|
102 |
<copy file="${project.build.directory}/${project.artifactId}-${project.version}.jar" |
|
103 |
tofile="${project.build.directory}/${project.artifactId}-${project.version}.bak"/> |
|
104 |
<zip destfile="${project.build.directory}/${project.artifactId}-${project.version}.jar" |
|
105 |
update="true"> |
|
106 |
<fileset dir="${project.build.directory}/test-classes" |
|
107 |
includes="subversion-jira-plugin.properties"/> |
|
108 |
</zip>
|
|
109 |
</tasks>
|
|
110 |
</configuration>
|
|
111 |
</execution>
|
|
112 |
||
113 |
<execution>
|
|
114 |
<id>post-integration-test-user-ant-tasks</id> |
|
115 |
<configuration>
|
|
116 |
<tasks>
|
|
117 |
<copy file="${project.build.directory}/${project.artifactId}-${project.version}.bak" |
|
118 |
tofile="${project.build.directory}/${project.artifactId}-${project.version}.jar"/> |
|
119 |
</tasks>
|
|
120 |
</configuration>
|
|
121 |
</execution>
|
|
122 |
</executions>
|
|
123 |
</plugin>
|
|
124 |
</plugins>
|
|
125 |
</build>
|
|
126 |
<properties>
|
|
127 |
<!-- For filtering subversion-jira-plugin.properties -->
|
|
128 |
<bzr.root>http://bzr.atlassian.com/bzr/public/contrib/jira/subversion-jira-plugin/samplerepo/</bzr.root> |
|
129 |
||
130 |
<bzr.test.root.protocol>file://</bzr.test.root.protocol> |
|
131 |
<bzr.test.root.path>${user.dir}/bzr-repository/</bzr.test.root.path> |
|
132 |
<bzr.test.root>${bzr.test.root.protocol}${bzr.test.root.path}</bzr.test.root> |
|
133 |
<bzr.test.root.username>dchui</bzr.test.root.username> |
|
134 |
<bzr.test.root.password>changeit</bzr.test.root.password> |
|
135 |
||
136 |
<bzr.executable>/Users/guillermo/bin/bzr</bzr.executable> |
|
137 |
<bzr.xmlRpcPort>11111</bzr.xmlRpcPort> |
|
138 |
||
8
by Mattias Amnefelt
Updated atlassian version to 4.1.2 |
139 |
<atlassian.product.version>4.1.2</atlassian.product.version> |
140 |
<atlassian.product.test-lib.version>4.1.2</atlassian.product.test-lib.version> |
|
141 |
<atlassian.product.data.version>4.1.2</atlassian.product.data.version> |
|
1
by Guillermo Gonzalez
* initial code import |
142 |
<jdkLevel>1.5</jdkLevel> |
143 |
</properties>
|
|
144 |
||
145 |
</project>
|