-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
114 lines (98 loc) · 4.24 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>
<parent>
<groupId>de.aservo</groupId>
<artifactId>parent-pom</artifactId>
<version>0.0.9</version>
</parent>
<artifactId>timestamp-to-date-crowd-plugin</artifactId>
<version>0.0.7-SNAPSHOT</version>
<packaging>atlassian-plugin</packaging>
<name>Timestamp-to-Date for Crowd</name>
<description>Human-readable date tooltips for timestamp values in input fields (e.g. user attributes) for Atlassian Crowd</description>
<url>https://github.com/aservo/timestamp-to-date-crowd-plugin</url>
<organization>
<name>ASERVO Software GmbH</name>
<url>https://www.aservo.com</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>Github</system>
<url>https://github.com/aservo/timestamp-to-date-crowd-plugin/issues</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:aservo/timestamp-to-date-crowd-plugin.git</connection>
<developerConnection>scm:git:[email protected]:aservo/timestamp-to-date-crowd-plugin.git</developerConnection>
<url>https://github.com/aservo/timestamp-to-date-crowd-plugin</url>
<tag>v@{project.version}</tag>
</scm>
<developers>
<developer>
<name>Patrick Hobusch</name>
<email>[email protected]</email>
<organization>ASERVO Software GmbH</organization>
<organizationUrl>https://www.aservo.com</organizationUrl>
</developer>
</developers>
<properties>
<crowd.version>4.3.5</crowd.version>
<amps.version>8.0.2</amps.version>
<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.atlassian.crowd</groupId>
<artifactId>atlassian-crowd</artifactId>
<version>${crowd.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.5.8</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>crowd-maven-plugin</artifactId>
<version>${amps.version}</version>
<extensions>true</extensions>
<configuration>
<productVersion>${crowd.version}</productVersion>
<productDataVersion>${crowd.version}</productDataVersion>
<allowGoogleTracking>false</allowGoogleTracking>
<enableQuickReload>true</enableQuickReload>
<!-- See here for an explanation of default instructions: -->
<!-- https://developer.atlassian.com/docs/advanced-topics/configuration-of-instructions-in-atlassian-plugins -->
<instructions>
<Atlassian-Plugin-Key>${atlassian.plugin.key}</Atlassian-Plugin-Key>
<!-- Ensure plugin is spring powered -->
<Spring-Context>*</Spring-Context>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
</project>