-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpom.xml
More file actions
128 lines (117 loc) · 3.94 KB
/
pom.xml
File metadata and controls
128 lines (117 loc) · 3.94 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
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
<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>86.0.0.3040</version>
</parent>
<groupId>org.sonarsource.scanner.lib</groupId>
<artifactId>sonar-scanner-java-library-parent</artifactId>
<version>4.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SonarScanner Java Library - Parent</name>
<description>Common library used by all Java-based Scanners</description>
<url>https://github.com/SonarSource/sonar-scanner-java-library</url>
<inceptionYear>2011</inceptionYear>
<organization>
<name>SonarSource</name>
<url>http://www.sonarsource.com</url>
</organization>
<licenses>
<license>
<name>GNU LGPL 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>lib</module>
<module>download-cache</module>
<module>batch</module>
<module>batch-interface</module>
</modules>
<scm>
<connection>scm:git:git@github.com:SonarSource/sonar-scanner-java-library.git</connection>
<developerConnection>scm:git:git@github.com:SonarSource/sonar-scanner-java-library.git</developerConnection>
<url>https://github.com/SonarSource/sonar-scanner-java-library</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://jira.sonarsource.com/browse/SCANJLIB</url>
</issueManagement>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<license.name>GNU LGPL v3</license.name>
<!-- used for deployment to SonarSource Artifactory -->
<gitRepositoryName>sonar-scanner-java-library</gitRepositoryName>
<mockito.version>5.20.0</mockito.version>
<!-- Don't update to slf4j 2 to continue supporting the Scanner for Maven with Maven < 4 -->
<slf4j.version>1.7.36</slf4j.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.20.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.21.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.28.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.13.2</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.14.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.20.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>its</id>
<modules>
<module>its</module>
</modules>
</profile>
</profiles>
</project>