|
16 | 16 | <java.version>17</java.version> |
17 | 17 | </properties> |
18 | 18 | <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 --> |
19 | 53 | <dependency> |
20 | 54 | <groupId>org.reflections</groupId> |
21 | 55 | <artifactId>reflections</artifactId> |
22 | 56 | <version>${reflections.version}</version> |
23 | 57 | </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> |
24 | 71 | </dependencies> |
25 | 72 | <build> |
26 | 73 | <plugins> |
|
0 commit comments