forked from ntiss/sonar-apigee-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
163 lines (143 loc) · 4.68 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?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.arkea.satd.sonar.apigee</groupId>
<artifactId>sonar-apigee-plugin</artifactId>
<version>3.0.2</version>
<name>sonar-apigee-plugin</name>
<packaging>sonar-plugin</packaging>
<description>Sonar Plugin for Apigee</description>
<inceptionYear>2017</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Crédit Mutuel Arkéa</name>
<url>https://github.com/CreditMutuelArkea</url>
</organization>
<developers>
<developer>
<id>ntiss</id>
<name>Nicolas Tisserand</name>
<organization>Crédit Mutuel Arkéa</organization>
</developer>
</developers>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/CreditMutuelArkea/sonar-apigee-plugin/issues</url>
</issueManagement>
<ciManagement>
<system>Travis-ci</system>
<url>https://travis-ci.org/CreditMutuelArkea/sonar-apigee-plugin</url>
</ciManagement>
<properties>
<license.title>SonarQube Apigee Plugin</license.title>
<!-- backward compatible with LTS -->
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<sonar.version>9.3.0.51899</sonar.version>
<sonar-xml.version>2.2.0.2973</sonar-xml.version>
<sonar.analyzerCommons.version>1.28.0.1058</sonar.analyzerCommons.version>
<!-- Release: enable publication to Bintray -->
<artifactsToPublish>${project.groupId}:sonar-apigee-plugin:jar</artifactsToPublish>
</properties>
<dependencies>
<dependency>
<groupId>org.sonarsource.analyzer-commons</groupId>
<artifactId>sonar-analyzer-commons</artifactId>
<version>${sonar.analyzerCommons.version}</version>
</dependency>
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${sonar.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sonarsource.analyzer-commons</groupId>
<artifactId>sonar-xml-parsing</artifactId>
<version>${sonar.analyzerCommons.version}</version>
</dependency>
<dependency>
<groupId>org.sonarsource.xml</groupId>
<artifactId>sonar-xml-plugin</artifactId>
<version>${sonar-xml.version}</version>
<scope>provided</scope>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-plugin-api-impl</artifactId>
<version>${sonar.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.sonarsource.analyzer-commons</groupId>
<artifactId>sonar-analyzer-test-commons</artifactId>
<version>${sonar.analyzerCommons.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.sonarsource.analyzer-commons</groupId>
<artifactId>test-sonar-xml-parsing</artifactId>
<version>${sonar.analyzerCommons.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.19.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.7.0</version>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId>
<version>1.18.0.372</version>
<extensions>true</extensions>
<configuration>
<pluginKey>apigee</pluginKey>
<pluginName>Apigee</pluginName>
<pluginClass>com.arkea.satd.sonar.ApigeePlugin</pluginClass>
<pluginUrl>https://github.com/CreditMutuelArkea/sonar-apigee-plugin</pluginUrl>
<basePlugin>xml</basePlugin>
<skipDependenciesPackaging>false</skipDependenciesPackaging>
<sonarLintSupported>false</sonarLintSupported>
<sonarQubeMinVersion>8.8</sonarQubeMinVersion>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Use javac's release flag for Java 8 and higher -->
<id>java8+</id>
<activation>
<jdk>[8,)</jdk>
</activation>
<properties>
<maven.compiler.release>8</maven.compiler.release>
</properties>
</profile>
</profiles>
</project>