caffeine-bounded-cache-support
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>caffeine-bounded-cache-support</artifactId> <version>5.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.javaoperatorsdk</groupId> <artifactId>java-operator-sdk</artifactId> <version>5.1.1</version> </parent> <artifactId>caffeine-bounded-cache-support</artifactId> <name>Operator SDK - Caffeine Bounded Cache Support</name> <dependencies> <dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>operator-framework-core</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> <dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>operator-framework</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>operator-framework-junit-5</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-httpclient-okhttp</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <executions> <!-- During compilation we need to disable annotation processors (at least the ControllerConfigurationAnnotationProcessor). However, this is needed to compile the tests so let's disable apt just for the compile phase --> <execution> <id>default-compile</id> <goals> <goal>compile</goal> </goals> <phase>compile</phase> <configuration> <compilerArgs> <arg>-proc:none</arg> </compilerArgs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>crd-generator-maven-plugin</artifactId> <version>${fabric8-client.version}</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <phase>process-test-classes</phase> <configuration> <classesToScan>${project.build.testOutputDirectory}</classesToScan> <classpath>WITH_ALL_DEPENDENCIES_AND_TESTS</classpath> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>