-
Notifications
You must be signed in to change notification settings - Fork 27
/
pom.xml
137 lines (125 loc) · 4.08 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.spotify</groupId>
<artifactId>foss-root</artifactId>
<version>17</version>
</parent>
<artifactId>missinglink-parent</artifactId>
<version>0.2.12-SNAPSHOT</version>
<packaging>pom</packaging>
<name>missinglink</name>
<description>
Missinglink scans the bytecode of dependency libraries to attempt to find problems
(such as NoSuchMethodError) caused by conflicting versions that would otherwise only
be found at runtime.
</description>
<url>https://github.com/spotify/missinglink</url>
<organization>
<name>Spotify AB</name>
<url>http://www.spotify.com</url>
</organization>
<developers>
<developer>
<id>liljencrantz</id>
<name>Axel Liljencrantz</name>
<email>[email protected]</email>
</developer>
<developer>
<id>krka</id>
<name>Kristofer Karlsson</name>
<email>[email protected]</email>
</developer>
<developer>
<id>mattbrown</id>
<name>Matt Brown</name>
<email>[email protected]</email>
</developer>
<developer>
<id>pettermahlen</id>
<name>Petter Måhlén</name>
<email>[email protected]</email>
</developer>
<developer>
<id>dflemstr</id>
<name>David Flemström</name>
<email>[email protected]</email>
<roles>
<role>contributor</role>
</roles>
</developer>
</developers>
<modules>
<module>benchmarks</module>
<module>core</module>
<module>maven-plugin</module>
</modules>
<properties>
<auto-matter.version>0.26.2</auto-matter.version>
<!-- cobertura format needs to be xml for coveralls integration, but allow it to be specified
as a property so it can be overridden to use html for anyone who wants to generate cobertura
themselves from command-line -->
<cobertura.format>xml</cobertura.format>
</properties>
<scm>
<connection>scm:git:[email protected]:spotify/missinglink.git</connection>
<developerConnection>scm:git:[email protected]:spotify/missinglink.git</developerConnection>
<url>https://github.com/spotify/missinglink</url>
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
<!-- addresses conflict between maven-core:3.3.3 and maven-dependency-tree:3.0.1 -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-annotations</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.17.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<!-- format code within the Maven build. CI will run fmt:check to reject unformatted changes -->
<plugin>
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>