-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathpom.xml
More file actions
103 lines (93 loc) · 3.18 KB
/
pom.xml
File metadata and controls
103 lines (93 loc) · 3.18 KB
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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>87.0.0.3057</version>
</parent>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-scanner-maven</artifactId>
<name>org.sonarsource.scanner.maven:sonar-scanner-maven</name>
<version>5.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Trigger SonarQube analysis on Maven projects</description>
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>GNU LGPL 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>olamy</id>
<name>Olivier Lamy</name>
<email>olamy@apache.org</email>
<timezone>+1</timezone>
</developer>
<developer>
<id>godin</id>
<name>Evgeny Mandrikov</name>
<email>mandrikov@gmail.com</email>
<timezone>+3</timezone>
</developer>
<developer>
<id>simon.brandhof</id>
<name>Simon Brandhof</name>
<email>simon.brandhof@gmail.com</email>
<timezone>+1</timezone>
</developer>
<developer>
<id>henryju</id>
<name>Julien Henry</name>
<email>henryju@yahoo.fr</email>
<timezone>+1</timezone>
</developer>
</developers>
<modules>
<module>e2e</module>
<module>property-dump-plugin</module>
<module>sonar-maven-plugin</module>
</modules>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<scm>
<connection>scm:git:https://github.com/SonarSource/sonar-scanner-maven.git</connection>
<developerConnection>scm:git:ssh://git@github.com/SonarSource/sonar-scanner-maven.git</developerConnection>
<url>https://github.com/SonarSource/sonar-scanner-maven</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>http://jira.sonarsource.com/browse/MSONAR</url>
</issueManagement>
<distributionManagement>
<site>
<id>github</id>
<name>GitHub</name>
<url>scm:git:git@github.com:SonarSource/sonar-scanner-maven.git</url>
</site>
</distributionManagement>
<properties>
<!--
We can't update the Maven core dependencies unless we remove the dependency on SecDispatcher
For more details see this ticket https://sonarsource.atlassian.net/browse/SCANMAVEN-222
-->
<gitRepositoryName>sonar-scanner-maven</gitRepositoryName>
<license.name>GNU LGPL v3</license.name>
<sonar.sca.exclusions>e2e/projects/**,sonar-maven-plugin/src/it/**,sonar-maven-plugin/src/test/projects/**</sonar.sca.exclusions>
<sonar.organization>sonarsource</sonar.organization>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>