1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <artifactId >client-java-extended</artifactId >
7+ <packaging >bundle</packaging >
8+ <name >client-java-extended</name >
9+ <version >5.0.0-SNAPSHOT</version >
10+ <url >https://github.com/kubernetes-client/java</url >
11+
12+ <parent >
13+ <artifactId >client-java-parent</artifactId >
14+ <groupId >io.kubernetes</groupId >
15+ <version >5.0.0-SNAPSHOT</version >
16+ </parent >
17+
18+ <dependencies >
19+ <dependency >
20+ <groupId >io.kubernetes</groupId >
21+ <artifactId >client-java-api</artifactId >
22+ <version >${project.version} </version >
23+ </dependency >
24+ <dependency >
25+ <groupId >io.kubernetes</groupId >
26+ <artifactId >client-java-proto</artifactId >
27+ <version >${project.version} </version >
28+ </dependency >
29+ <dependency >
30+ <groupId >org.apache.commons</groupId >
31+ <artifactId >commons-lang3</artifactId >
32+ </dependency >
33+ <dependency >
34+ <groupId >com.google.guava</groupId >
35+ <artifactId >guava</artifactId >
36+ <version >25.1-jre</version >
37+ </dependency >
38+ <!-- test dependencies -->
39+ <dependency >
40+ <groupId >junit</groupId >
41+ <artifactId >junit</artifactId >
42+ <version >4.12</version >
43+ <scope >test</scope >
44+ </dependency >
45+ <dependency >
46+ <groupId >org.mockito</groupId >
47+ <artifactId >mockito-core</artifactId >
48+ <version >2.13.0</version >
49+ <scope >test</scope >
50+ </dependency >
51+ <dependency >
52+ <groupId >com.github.stefanbirkner</groupId >
53+ <artifactId >system-rules</artifactId >
54+ <version >1.16.1</version >
55+ <scope >test</scope >
56+ </dependency >
57+ <dependency >
58+ <groupId >com.github.tomakehurst</groupId >
59+ <artifactId >wiremock</artifactId >
60+ <version >2.19.0</version >
61+ <scope >test</scope >
62+ </dependency >
63+ </dependencies >
64+
65+ <build >
66+ <plugins >
67+ <plugin >
68+ <groupId >org.jacoco</groupId >
69+ <artifactId >jacoco-maven-plugin</artifactId >
70+ <version >0.8.2</version >
71+ <executions >
72+ <execution >
73+ <id >jacoco-initialize</id >
74+ <goals >
75+ <goal >prepare-agent</goal >
76+ </goals >
77+ </execution >
78+ <execution >
79+ <id >jacoco-report</id >
80+ <phase >test</phase >
81+ <goals >
82+ <goal >report</goal >
83+ </goals >
84+ </execution >
85+ </executions >
86+ </plugin >
87+ <plugin >
88+ <groupId >org.apache.felix</groupId >
89+ <artifactId >maven-bundle-plugin</artifactId >
90+ <extensions >true</extensions >
91+ </plugin >
92+ <plugin >
93+ <groupId >org.apache.maven.plugins</groupId >
94+ <artifactId >maven-compiler-plugin</artifactId >
95+ <configuration >
96+ <source >8</source >
97+ <target >8</target >
98+ </configuration >
99+ </plugin >
100+ <plugin >
101+ <groupId >org.apache.maven.plugins</groupId >
102+ <artifactId >maven-surefire-plugin</artifactId >
103+ <configuration >
104+ <argLine >@{argLine} -Xms512m -Xmx1500m</argLine >
105+ <parallel >methods</parallel >
106+ <perCoreThreadCount >false</perCoreThreadCount >
107+ <threadCount >1</threadCount >
108+ <forkCount >1</forkCount >
109+ <reuseForks >false</reuseForks >
110+ </configuration >
111+ </plugin >
112+ <plugin >
113+ <groupId >com.coveo</groupId >
114+ <artifactId >fmt-maven-plugin</artifactId >
115+ <executions >
116+ <execution >
117+ <phase >test</phase >
118+ <goals >
119+ <goal >check</goal >
120+ </goals >
121+ </execution >
122+ </executions >
123+ </plugin >
124+ </plugins >
125+ </build >
126+ <properties >
127+ <java .version>1.7</java .version>
128+ <maven .compiler.source>${java.version} </maven .compiler.source>
129+ <maven .compiler.target>${java.version} </maven .compiler.target>
130+ <slf4jVersion >1.7.7</slf4jVersion >
131+ </properties >
132+ </project >
0 commit comments