forked from smallrye/jandex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
138 lines (124 loc) · 5.13 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
138
<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>io.smallrye</groupId>
<artifactId>smallrye-build-parent</artifactId>
<version>31</version>
</parent>
<groupId>io.smallrye</groupId>
<artifactId>jandex-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Jandex: Parent</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<version.ant>1.10.11</version.ant>
<version.apiviz>1.3.2.GA</version.apiviz>
<version.bridger>1.6.Final</version.bridger>
<version.bytebuddy>1.11.13</version.bytebuddy>
<version.exec-maven-plugin>3.0.0</version.exec-maven-plugin>
<version.junit>5.8.2</version.junit>
<version.maven>3.8.1</version.maven>
<version.maven-bundle-plugin>5.1.2</version.maven-bundle-plugin>
<version.maven-compiler-plugin>3.10.1</version.maven-compiler-plugin>
<version.maven-dependency-plugin>3.3.0</version.maven-dependency-plugin>
<version.maven-invoker-plugin>3.2.2</version.maven-invoker-plugin>
<version.maven-plugin-tools>3.6.1</version.maven-plugin-tools>
<version.maven-shade-plugin>3.3.0</version.maven-shade-plugin>
<version.mvn-jlink-wrapper>1.1.1</version.mvn-jlink-wrapper>
<version.plexus-compiler-eclipse>2.11.1</version.plexus-compiler-eclipse>
<version.plexus-utils>3.4.1</version.plexus-utils>
</properties>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/smallrye/jandex/issues</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:smallrye/jandex.git</connection>
<developerConnection>scm:git:[email protected]:smallrye/jandex.git</developerConnection>
<url>https://github.com/smallrye/jandex/</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>core</module>
<module>maven-plugin</module>
<module>test-data</module>
<module>benchmarks</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex-test-data</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${version.bytebuddy}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>${version.ant}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${version.maven}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${version.maven}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${version.maven-plugin-tools}</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>${version.plexus-utils}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven-compiler-plugin}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>!release.maven.bug.always.be.active</name>
</property>
</activation>
<modules>
<module>release</module>
</modules>
</profile>
</profiles>
</project>