Skip to content

Commit 2efec86

Browse files
authored
Merge pull request #4516 from brendandburns/pom
Fix pom.xml versions for e2e and spring modules
2 parents 5a74f7b + 8a8360c commit 2efec86

File tree

4 files changed

+76
-0
lines changed

4 files changed

+76
-0
lines changed

e2e/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@
3030
<artifactId>assertj-core</artifactId>
3131
<scope>test</scope>
3232
</dependency>
33+
34+
<!-- JUnit Jupiter for testing -->
35+
<dependency>
36+
<groupId>org.junit.jupiter</groupId>
37+
<artifactId>junit-jupiter</artifactId>
38+
<scope>test</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.junit.jupiter</groupId>
42+
<artifactId>junit-jupiter-params</artifactId>
43+
<scope>test</scope>
44+
</dependency>
3345

3446
<dependency>
3547
<groupId>org.slf4j</groupId>

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,11 @@
262262
<artifactId>google-auth-library-oauth2-http</artifactId>
263263
<version>1.41.0</version>
264264
</dependency>
265+
<dependency>
266+
<groupId>org.jetbrains</groupId>
267+
<artifactId>annotations</artifactId>
268+
<version>26.0.1</version>
269+
</dependency>
265270

266271
<!-- tests -->
267272
<dependency>

spring-aot/pom.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,58 @@
1616
<java.version>17</java.version>
1717
</properties>
1818
<dependencies>
19+
<!-- Kubernetes client dependencies -->
20+
<dependency>
21+
<groupId>io.kubernetes</groupId>
22+
<artifactId>client-java-extended</artifactId>
23+
<version>${project.version}</version>
24+
</dependency>
25+
26+
<!-- Spring Boot AOT dependencies -->
27+
<dependency>
28+
<groupId>org.springframework.boot</groupId>
29+
<artifactId>spring-boot</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-autoconfigure</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.springframework</groupId>
37+
<artifactId>spring-core</artifactId>
38+
</dependency>
39+
40+
<!-- Gson for JSON handling -->
41+
<dependency>
42+
<groupId>com.google.code.gson</groupId>
43+
<artifactId>gson</artifactId>
44+
</dependency>
45+
46+
<!-- Swagger annotations -->
47+
<dependency>
48+
<groupId>io.swagger</groupId>
49+
<artifactId>swagger-annotations</artifactId>
50+
</dependency>
51+
52+
<!-- Reflections library -->
1953
<dependency>
2054
<groupId>org.reflections</groupId>
2155
<artifactId>reflections</artifactId>
2256
<version>${reflections.version}</version>
2357
</dependency>
58+
59+
<!-- SLF4J for logging -->
60+
<dependency>
61+
<groupId>org.slf4j</groupId>
62+
<artifactId>slf4j-api</artifactId>
63+
</dependency>
64+
65+
<!-- JetBrains annotations for NotNull -->
66+
<dependency>
67+
<groupId>org.jetbrains</groupId>
68+
<artifactId>annotations</artifactId>
69+
<version>26.0.1</version>
70+
</dependency>
2471
</dependencies>
2572
<build>
2673
<plugins>

spring/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,18 @@
7171
<artifactId>assertj-core</artifactId>
7272
<scope>test</scope>
7373
</dependency>
74+
75+
<!-- JUnit Jupiter for testing -->
76+
<dependency>
77+
<groupId>org.junit.jupiter</groupId>
78+
<artifactId>junit-jupiter</artifactId>
79+
<scope>test</scope>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.junit.jupiter</groupId>
83+
<artifactId>junit-jupiter-params</artifactId>
84+
<scope>test</scope>
85+
</dependency>
7486

7587
</dependencies>
7688

0 commit comments

Comments
 (0)