forked from deepy/sonar-crowd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
104 lines (104 loc) · 3.83 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
<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>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>36</version>
</parent>
<artifactId>sonar-crowd-plugin</artifactId>
<version>2.1-SNAPSHOT</version>
<packaging>sonar-plugin</packaging>
<name>Sonar Crowd Plugin</name>
<description>Delegates authentication to Atlassian Crowd.</description>
<url>https://github.com/SonarQubeCommunity/sonar-crowd</url>
<inceptionYear>2009</inceptionYear>
<organization>
<name>SonarSource</name>
<url>http://www.sonarsource.com</url>
</organization>
<licenses>
<license>
<name>GNU LGPL 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>godin</id>
<name>Evgeny Mandrikov</name>
<timezone>+3</timezone>
</developer>
<developer>
<id>aheritier</id>
<name>Arnaud Héritier</name>
<url>https://github.com/aheritier</url>
</developer>
</developers>
<contributors>
<contributor>
<name>Ferdinand Hübner</name>
<url>https://github.com/ferdinandhuebner</url>
</contributor>
</contributors>
<scm>
<connection>scm:git:https://github.com/SonarQubeCommunity/sonar-crowd.git</connection>
<developerConnection>scm:git:[email protected]:SonarQubeCommunity/sonar-crowd.git</developerConnection>
<url>https://github.com/SonarQubeCommunity/sonar-crowd</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/SonarQubeCommunity/sonar-crowd/issues</url>
</issueManagement>
<properties>
<sonar.version>5.6</sonar.version>
<sonar.pluginName>Crowd</sonar.pluginName>
<sonar.pluginClass>org.sonar.plugins.crowd.CrowdPlugin</sonar.pluginClass>
<bintray.package>sonar-crowd</bintray.package>
</properties>
<dependencies>
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${sonar.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.crowd</groupId>
<artifactId>crowd-integration-client-rest</artifactId>
<version>2.7.2</version>
<exclusions>
<!-- Provided by Sonar -->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<!-- unit tests -->
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-testing-harness</artifactId>
<version>${sonar.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>atlassian</id>
<url>https://maven.atlassian.com/content/repositories/public</url>
</repository>
</repositories>
</project>