forked from strimzi/strimzi-kafka-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
102 lines (98 loc) · 3.93 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
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.strimzi</groupId>
<artifactId>strimzi</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.surefire.version>2.20.1</maven.surefire.version>
<fabric8.kubernetes-client.version>3.1.0</fabric8.kubernetes-client.version>
<vertx.version>3.5.0</vertx.version>
<slf4j.version>1.7.21</slf4j.version>
<junit.version>4.12</junit.version>
<maven.assembly.version>3.1.0</maven.assembly.version>
<maven.shade.version>3.1.0</maven.shade.version>
<netty.version>4.1.15.Final</netty.version>
<jacoco.version>0.7.9</jacoco.version>
<license.maven.version>2.11</license.maven.version>
<fasterxml.jackson.version>2.7.7</fasterxml.jackson.version>
<kafka.version>1.0.0</kafka.version>
<zookeeper.version>3.4.10</zookeeper.version>
</properties>
<modules>
<module>topic-controller</module>
<module>cluster-controller</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>surefireArgLine</propertyName>
</configuration>
</execution>
<execution>
<id>report</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<inherited>true</inherited>
<version>${maven.surefire.version}</version>
<configuration>
<environmentVariables>
<ENV_VAR_EXISTS>value</ENV_VAR_EXISTS>
<ENV_VAR_EXISTS_BOOLEAN>true</ENV_VAR_EXISTS_BOOLEAN>
</environmentVariables>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license.maven.version}</version>
<configuration>
<aggregate>true</aggregate>
<header>header.txt</header>
<properties>
<owner>Red Hat, Inc.</owner>
</properties>
<excludes>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefireArgLine}</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>