-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
107 lines (99 loc) · 3.43 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
<?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.orchestrator</groupId>
<artifactId>orchestrator-parent</artifactId>
<version>5.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Orchestrator :: Parent</name>
<inceptionYear>2011</inceptionYear>
<organization>
<name>SonarSource</name>
<url>http://www.sonarsource.com</url>
</organization>
<modules>
<module>echo</module>
<module>sonar-orchestrator</module>
<module>sonar-orchestrator-junit4</module>
<module>sonar-orchestrator-junit5</module>
</modules>
<scm>
<connection>scm:git:[email protected]:SonarSource/orchestrator.git</connection>
<developerConnection>scm:git:[email protected]:SonarSource/orchestrator.git</developerConnection>
<url>https://github.com/SonarSource/orchestrator</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://jira.sonarsource.com/browse/ORCH</url>
</issueManagement>
<properties>
<license.name>GNU LGPL v3</license.name>
<version.surefire.plugin>3.0.0</version.surefire.plugin>
<commonsIO.version>2.7</commonsIO.version>
<commonsLang.version>2.6</commonsLang.version>
<commonsExec.version>1.3</commonsExec.version>
<guava.version>18.0</guava.version>
<junit.version>4.13.2</junit.version>
<slf4j.version>2.0.11</slf4j.version>
<version.jacoco.plugin>0.8.10</version.jacoco.plugin>
<sonar.exclusions>
**/com/sonar/orchestrator/echo/**/*.java,target/generated-sources/**/*
</sonar.exclusions>
<!-- used for deployment to SonarSource Artifactory -->
<gitRepositoryName>orchestrator</gitRepositoryName>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.9.1</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.3.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${version.jacoco.plugin}</version>
<configuration>
<excludes>
<exclude>**/*.zip</exclude>
</excludes>
<includes>
<include>com/sonar/orchestrator/**</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>8</source>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
</project>