forked from sourcesense/jira-multi-level-cascade-select
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
executable file
·114 lines (102 loc) · 4.14 KB
/
pom.xml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sourcesense.jira.plugin</groupId>
<artifactId>cascadingselect</artifactId>
<version>3.0-SNAPSHOT</version>
<name>Multilevel Cascade Select</name>
<description>Multilevel Cascade Select custom field, searcher and portlet</description>
<packaging>atlassian-plugin</packaging>
<distributionManagement>
<repository>
<id>nexus</id>
<name>Internal Releases</name>
<url>https://nexus.adaptavist.com/content/repositories/adaptavist</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>Internal Releases</name>
<url>https://nexus.adaptavist.com/content/repositories/adaptavist-snapshots</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/jonmort/jira-multi-level-cascade-select.git</connection>
<developerConnection>scm:git:git://github.com/jonmort/jira-multi-level-cascade-select.git</developerConnection>
<url>http://github.com/jonmort/jira-multi-level-cascade-select</url>
</scm>
<properties>
<jira.version>5.0</jira.version>
<javac.src.version>1.6</javac.src.version>
<javac.target.version>1.6</javac.target.version>
<amps.version>3.9.1</amps.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-jira-plugin</artifactId>
<version>${amps.version}</version>
<extensions>true</extensions>
<configuration>
<productVersion>${jira.version}</productVersion>
<productDataPath>${basedir}/src/test/resources/generated-test-resources.zip</productDataPath>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${javac.src.version}</source>
<target>${javac.target.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
<configuration>
<outputDirectory>${project.build.directory}/site/bin/${project.version}</outputDirectory>
<attach>false</attach>
<descriptors>
<descriptor>${basedir}/src/main/assembly/bundle.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!--
| provided
-->
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>atlassian-jira</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<!--
| test
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-func-tests</artifactId>
<version>${jira.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>