11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<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" >
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" >
55 <modelVersion >4.0.0</modelVersion >
6+ <artifactId >k8s-operator</artifactId >
7+ <version >0.1.0-SNAPSHOT</version >
8+ <name >k8s-operator</name >
9+ <packaging >jar</packaging >
610
711 <parent >
812 <groupId >com.baeldung</groupId >
1115 <relativePath >./../../parent-boot-3</relativePath >
1216 </parent >
1317
14- <artifactId >k8s-operator</artifactId >
15- <version >0.1.0-SNAPSHOT</version >
16- <name >k8s-operator</name >
17- <packaging >jar</packaging >
18-
19- <properties >
20- <maven .compiler.source>17</maven .compiler.source>
21- <maven .compiler.target>17</maven .compiler.target>
22- <josdk .version>4.6.0</josdk .version>
23- <fabric8-client .version>6.9.2</fabric8-client .version>
24- <bouncycastle .version>1.77</bouncycastle .version>
25- <slf4j .version>2.0.9</slf4j .version>
26- <operator-framework-spring-boot .version>5.4.0</operator-framework-spring-boot .version>
27- </properties >
28-
29-
3018 <dependencies >
31-
3219 <dependency >
3320 <groupId >io.javaoperatorsdk</groupId >
3421 <artifactId >operator-framework-spring-boot-starter</artifactId >
3522 <version >${operator-framework-spring-boot.version} </version >
3623 </dependency >
37-
3824 <dependency >
3925 <groupId >io.javaoperatorsdk</groupId >
4026 <artifactId >operator-framework-spring-boot-starter-test</artifactId >
4733 </exclusion >
4834 </exclusions >
4935 </dependency >
50-
5136 <dependency >
5237 <groupId >org.springframework.boot</groupId >
5338 <artifactId >spring-boot-starter-webflux</artifactId >
5439 </dependency >
55-
5640 <dependency >
5741 <groupId >org.springframework.boot</groupId >
5842 <artifactId >spring-boot-starter-actuator</artifactId >
5943 </dependency >
60-
6144 <dependency >
6245 <groupId >org.projectlombok</groupId >
6346 <artifactId >lombok</artifactId >
6447 <optional >true</optional >
6548 </dependency >
66-
6749 <dependency >
6850 <groupId >io.fabric8</groupId >
6951 <artifactId >crd-generator-apt</artifactId >
7052 <version >${fabric8-client.version} </version >
7153 <scope >provided</scope >
7254 </dependency >
73-
7455 <dependency >
7556 <groupId >org.bouncycastle</groupId >
7657 <artifactId >bcprov-jdk18on</artifactId >
7758 <version >${bouncycastle.version} </version >
7859 </dependency >
79-
8060 <dependency >
8161 <groupId >org.bouncycastle</groupId >
8262 <artifactId >bcpkix-jdk18on</artifactId >
8363 <version >${bouncycastle.version} </version >
8464 </dependency >
85-
8665 <dependency >
8766 <groupId >org.awaitility</groupId >
8867 <artifactId >awaitility</artifactId >
8968 <scope >test</scope >
9069 </dependency >
91-
9270 </dependencies >
71+
9372 <build >
9473 <plugins >
9574 <plugin >
10887 </plugins >
10988 </build >
11089
90+ <properties >
91+ <maven .compiler.source>17</maven .compiler.source>
92+ <maven .compiler.target>17</maven .compiler.target>
93+ <josdk .version>4.6.0</josdk .version>
94+ <fabric8-client .version>6.9.2</fabric8-client .version>
95+ <bouncycastle .version>1.77</bouncycastle .version>
96+ <slf4j .version>2.0.9</slf4j .version>
97+ <operator-framework-spring-boot .version>5.4.0</operator-framework-spring-boot .version>
98+ </properties >
99+
111100</project >
0 commit comments