sample-mysql-schema-operator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>sample-mysql-schema-operator</artifactId> <version>4.9.7</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>sample-operators</artifactId> <version>4.9.7</version> </parent> <artifactId>sample-mysql-schema-operator</artifactId> <name>Operator SDK - Samples - MySQL Schema</name> <description>Provisions Schemas in a MySQL database</description> <packaging>jar</packaging> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <jib-maven-plugin.version>3.4.4</jib-maven-plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>operator-framework-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>operator-framework</artifactId> </dependency> <dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>micrometer-support</artifactId> </dependency> <dependency> <groupId>org.takes</groupId> <artifactId>takes</artifactId> <version>1.24.4</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.30</version> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>crd-generator-apt</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.javaoperatorsdk</groupId> <artifactId>operator-framework-junit-5</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <rerunFailingTestsCount>0</rerunFailingTestsCount> </configuration> </plugin> <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven-plugin</artifactId> <version>${jib-maven-plugin.version}</version> <configuration> <from> <image>gcr.io/distroless/java:11</image> </from> <to> <image>mysql-schema-operator</image> </to> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.12.1</version> </plugin> </plugins> </build> </project>