
META-INF.maven.io.zipkin.zipkin2.zipkin-storage-mysql-v1.pom.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2015-2023 The OpenZipkin Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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.zipkin.zipkin2</groupId> <artifactId>zipkin-storage-parent</artifactId> <version>2.24.4</version> </parent> <artifactId>zipkin-storage-mysql-v1</artifactId> <name>Storage: MySQL (v1)</name> <properties> <main.basedir>${project.basedir}/../..</main.basedir> <!-- TODO: upgrade when we make floor JDK 11 or 17 3.16 is the last to compile with JDK <17; 3.14 last for Java 8 --> <jooq.version>3.14.16</jooq.version> <!-- jOOQ doesn't add the Generated annotation, so we have to explicitly disable rules --> <errorprone.args>-Xep:InconsistentCapitalization:OFF</errorprone.args> </properties> <dependencies> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq</artifactId> <version>${jooq.version}</version> </dependency> <!-- for Generated annotation --> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>${javax-annotation-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>${mariadb-java-client.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mysql</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.jooq</groupId> <artifactId>jooq-codegen-maven</artifactId> <version>${jooq.version}</version> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq</artifactId> <version>${jooq.version}</version> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>${mariadb-java-client.version}</version> </dependency> </dependencies> <configuration> <jdbc> <driver>org.mariadb.jdbc.Driver</driver> <url>jdbc:mysql://localhost:3306/zipkin</url> <user>root</user> <password /> </jdbc> <generator> <generate> <relations>false</relations> <deprecated>false</deprecated> <records>false</records> <pojos>false</pojos> <!-- Prevents Intellij from conflating source level with api level --> <generatedAnnotationType>JAVAX_ANNOTATION_GENERATED</generatedAnnotationType> </generate> <database> <name>org.jooq.meta.mysql.MySQLDatabase</name> <includes>.*</includes> <excludes /> <inputSchema>zipkin</inputSchema> </database> <target> <packageName>zipkin2.storage.mysql.v1.internal.generated</packageName> <directory>src/main/java</directory> </target> </generator> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy