spring-k8swatcher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.k8swatcher</groupId> <artifactId>spring-k8swatcher</artifactId> <version>1.0.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.k8swatcher</groupId> <artifactId>spring-k8swatcher</artifactId> <version>1.0.5</version> <name>Viktor Pergjoka</name> <description>Spring Boot library for watching Kubernetes resources with Informers. Create Kubernetes Controllers and Kubernetes Operators</description> <url>https://github.com/viktorpergjoka/spring-k8swatcher</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Viktor Pergjoka</name> <email>viktor.pergjoka@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/viktorpergjoka/spring-k8swatcher</connection> <developerConnection>scm:git:https://github.com/viktorpergjoka/spring-k8swatcher</developerConnection> <url>https://github.com/viktorpergjoka/spring-k8swatcher</url> </scm> <dependencies> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client</artifactId> <version>7.2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>3.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>runtime</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.4.5</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>