-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpom.xml
108 lines (93 loc) · 3.12 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
<?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>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>82.0.0.2314</version>
</parent>
<groupId>org.sonarsource.html</groupId>
<artifactId>html</artifactId>
<version>3.19.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SonarQube HTML Plugin</name>
<url>http://redirect.sonarsource.com/plugins/web.html</url>
<inceptionYear>2010</inceptionYear>
<organization>
<name>SonarSource</name>
</organization>
<licenses>
<license>
<name>SSALv1</name>
<url>https://sonarsource.com/license/ssal/</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>mgalesloot</id>
<name>Matthijs Galesloot</name>
<email>[email protected]</email>
</developer>
<developer>
<id>fabemn</id>
<name>Fabrice Bellingard</name>
<organization>SonarSource</organization>
</developer>
<developer>
<id>dbolkensteyn</id>
<name>Dinesh Bolkensteyn</name>
<organization>SonarSource</organization>
</developer>
</developers>
<modules>
<module>sonar-html-plugin</module>
</modules>
<scm>
<connection>scm:git:[email protected]:SonarSource/sonar-html.git</connection>
<developerConnection>scm:git:[email protected]:SonarSource/sonar-html.git</developerConnection>
<url>https://github.com/SonarSource/sonar-html</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://jira.sonarsource.com/browse/SONARHTML</url>
</issueManagement>
<properties>
<revision>3.5-SNAPSHOT</revision>
<license.title>SonarQube HTML</license.title>
<gitRepositoryName>sonar-html</gitRepositoryName>
<jakarta.el.version>4.0.2</jakarta.el.version>
<sslr.version>1.24.0.633</sslr.version>
<analyzerCommons.version>2.16.0.3141</analyzerCommons.version>
<sonar.plugin.api.version>10.1.0.809</sonar.plugin.api.version>
<sonarqube.api.impl.version>10.1.0.73491</sonarqube.api.impl.version>
<sonarqube.sonar.ws.version>10.1.0.73491</sonarqube.sonar.ws.version>
<orchestrator.version>3.40.0.183</orchestrator.version>
<junit.version>4.13.2</junit.version>
<assertj.version>3.23.1</assertj.version>
<mockito.version>4.9.0</mockito.version>
<artifactsToPublish>${project.groupId}:sonar-html-plugin:jar</artifactsToPublish>
<jdk.min.version>17</jdk.min.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>its</id>
<modules>
<module>its</module>
</modules>
</profile>
</profiles>
</project>