kubernetes-webhooks-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>kubernetes-webhooks-framework</artifactId> <version>3.0.0</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> <groupId>io.javaoperatorsdk</groupId> <artifactId>kubernetes-webhooks-framework</artifactId> <version>3.0.0</version> <packaging>pom</packaging> <name>Kubernetes Webhooks Framework</name> <description>Framework to Implement Admission Controllers and Conversion Hooks in Java</description> <url>https://github.com/java-operator-sdk/kubernetes-webhooks-framework</url> <licenses> <license> <name>Apache 2 License</name> <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <developers> <developer> <name>Attila Mészáros</name> <email>csviri@gmail.com</email> </developer> </developers> <modules> <module>core</module> <module>samples</module> </modules> <scm> <connection>scm:git:git://github.com/java-operator-sdk/kubernetes-webhooks-framework.git</connection> <developerConnection>scm:git:git@github.com/java-operator-sdk/kubernetes-webhooks-framework.git</developerConnection> <url>https://github.com/java-operator-sdk/kubernetes-webhooks-framework/tree/master</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>17</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <sonar.organization>java-operator-sdk</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <junit.version>5.12.2</junit.version> <fabric8-client.version>7.1.0</fabric8-client.version> <slf4j.version>2.0.17</slf4j.version> <log4j.version>2.24.3</log4j.version> <mokito.version>5.15.2</mokito.version> <commons-lang3.version>3.12.0</commons-lang3.version> <auto-service.version>1.0.1</auto-service.version> <assertj.version>3.27.1</assertj.version> <awaitility.version>4.2.2</awaitility.version> <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> <directory-maven-plugin.version>1.0</directory-maven-plugin.version> <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> <impsort-maven-plugin.version>1.10.0</impsort-maven-plugin.version> <maven-install-plugin.version>3.1.3</maven-install-plugin.version> <maven-clean-plugin.version>3.4.0</maven-clean-plugin.version> <git-commit-id-maven-plugin.version>9.0.1</git-commit-id-maven-plugin.version> <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <spotless-maven-plugin.version>2.43.0</spotless-maven-plugin.version> <spring-boot-dependencies.version>3.4.3</spring-boot-dependencies.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client-bom</artifactId> <version>${fabric8-client.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>${awaitility.version}</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mokito.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> <configuration> <pom> <includes> <include>pom.xml</include> <include>./**/pom.xml</include> </includes> <sortPom> <expandEmptyElements>false</expandEmptyElements> </sortPom> </pom> <java> <eclipse> <file>contributing/eclipse-format.xml</file> </eclipse> <importOrder> <file>contributing/eclipse.importorder</file> </importOrder> <removeUnusedImports/> </java> </configuration> <executions> <execution> <goals> <goal>apply</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.commonjava.maven.plugins</groupId> <artifactId>directory-maven-plugin</artifactId> <version>${directory-maven-plugin.version}</version> <executions> <execution> <id>directories</id> <goals> <goal>highest-basedir</goal> </goals> <phase>initialize</phase> <configuration> <property>acf.project.root</property> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/*IT.java</exclude> <exclude>**/*E2E.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>all-tests</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> <include>**/*IT.java</include> <include>**/*E2E.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>no-unit-tests</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*IT.java</include> </includes> <excludes> <exclude>**/*Test.java</exclude> <exclude>**/*E2E.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>end-to-end-tests</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*E2E.java</include> </includes> <excludes> <exclude>**/*Test.java</exclude> <exclude>**/*IT.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*IT.java</exclude> <exclude>**/*E2E.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>