-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
84 lines (71 loc) · 2.45 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
<?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>52</version>
</parent>
<groupId>org.sonarsource.html</groupId>
<artifactId>html</artifactId>
<version>3.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SonarSource :: HTML</name>
<url>http://redirect.sonarsource.com/plugins/web.html</url>
<inceptionYear>2010</inceptionYear>
<organization>
<name>SonarSource and Matthijs Galesloot</name>
</organization>
<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>
<license.name>AL2</license.name>
<license.owner>SonarSource SA and Matthijs Galesloot</license.owner>
<license.mailto>[email protected]</license.mailto>
<gitRepositoryName>sonar-html</gitRepositoryName>
<orchestrator.version>3.26.0.2111</orchestrator.version>
<junit.version>4.12</junit.version>
<sslr.version>1.22</sslr.version>
<assertj.version>3.5.2</assertj.version>
<analyzerCommons.version>1.10.3.509</analyzerCommons.version>
<artifactsToPublish>${project.groupId}:sonar-html-plugin:jar</artifactsToPublish>
<maven.compiler.release>8</maven.compiler.release>
</properties>
<profiles>
<profile>
<id>its</id>
<modules>
<module>its</module>
</modules>
</profile>
</profiles>
</project>