jasync-r2dbc-mysql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.jasync-sql</groupId> <artifactId>jasync-r2dbc-mysql</artifactId> <version>2.2.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.github.jasync-sql</groupId> <artifactId>jasync-r2dbc-mysql</artifactId> <version>2.2.4</version> <name>jasync-sql</name> <description>jasync-sql - Async, Netty based, JVM database drivers for PostgreSQL and MySQL written in Kotlin</description> <url>https://github.com/jasync-sql/jasync-sql</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Ohad Shai</name> <email>ohadshai@gmail.com</email> <organization>github</organization> <organizationUrl>http://www.github.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/jasync-sql/jasync-sql.git</connection> <developerConnection>scm:git:ssh://github.com:jasync-sql/jasync-sql.git</developerConnection> <url>https://github.com/jasync-sql/jasync-sql/tree/master</url> </scm> <dependencies> <dependency> <groupId>com.github.jasync-sql</groupId> <artifactId>jasync-common</artifactId> <version>2.2.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.jasync-sql</groupId> <artifactId>jasync-pool</artifactId> <version>2.2.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.jasync-sql</groupId> <artifactId>jasync-mysql</artifactId> <version>2.2.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.8.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.8.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.r2dbc</groupId> <artifactId>r2dbc-spi</artifactId> <version>1.0.0.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.12.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.joda</groupId> <artifactId>joda-convert</artifactId> <version>2.2.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> <version>4.1.93.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>4.1.93.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.oshai</groupId> <artifactId>kotlin-logging-jvm</artifactId> <version>5.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.5.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.projectreactor.kotlin</groupId> <artifactId>reactor-kotlin-extensions</artifactId> <version>1.2.2</version> <scope>runtime</scope> </dependency> </dependencies> </project>