vertx-orm-mysql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.longdt</groupId> <artifactId>vertx-orm-mysql</artifactId> <version>2.1.2</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"> <parent> <artifactId>vertx-orm-parent</artifactId> <groupId>com.github.longdt</groupId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>vertx-orm-mysql</artifactId> <version>2.1.2</version> <name>Vertx ORM Mysql</name> <description>A simple library which provide POJO mapping Table utilities</description> <url>https://github.com/longdt/vertx-orm/vertx-orm-mysql</url> <!-- <licenses>--> <!-- <license>--> <!-- <name>Apache License, Version 2.0</name>--> <!-- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>--> <!-- <distribution>repo</distribution>--> <!-- </license>--> <!-- </licenses>--> <!-- <developers>--> <!-- <developer>--> <!-- <name>Long Dinh</name>--> <!-- <email>tronglongcntt@gmail.com</email>--> <!-- <organization>Github</organization>--> <!-- <organizationUrl>https://github.com/longdt</organizationUrl>--> <!-- </developer>--> <!-- </developers>--> <!-- <scm>--> <!-- <connection>scm:git:git://github.com/longdt/vertx-orm-mysql.git</connection>--> <!-- <developerConnection>scm:git:ssh://github.com:longdt/vertx-orm-mysql.git</developerConnection>--> <!-- <url>${project.url}</url>--> <!-- </scm>--> <!-- <distributionManagement>--> <!-- <snapshotRepository>--> <!-- <id>ossrh</id>--> <!-- <name>Sonatype Nexus Snapshots</name>--> <!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url>--> <!-- </snapshotRepository>--> <!-- <repository>--> <!-- <id>ossrh</id>--> <!-- <name>Nexus Release Repository</name>--> <!-- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>--> <!-- </repository>--> <!-- </distributionManagement>--> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>com.github.longdt</groupId> <artifactId>vertx-orm-commons</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-mysql-client</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-junit5</artifactId> <scope>test</scope> </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-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mysql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>test</scope> </dependency> </dependencies> </project>