You can download vertx-jdbc-client-3.3.3.jar in this page.
Open Source
vertx-jdbc-client-3.3.3.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/io.vertx/vertx-jdbc-client/pom.properties META-INF/maven/io.vertx/vertx-jdbc-client/pom.xml io.vertx.ext.jdbc.JDBCClient.class io.vertx.ext.jdbc.impl.JDBCClientImpl.class io.vertx.ext.jdbc.impl.JDBCConnectionImpl.class io.vertx.ext.jdbc.impl.actions.AbstractJDBCAction.class io.vertx.ext.jdbc.impl.actions.JDBCAutoCommit.class io.vertx.ext.jdbc.impl.actions.JDBCBatch.class io.vertx.ext.jdbc.impl.actions.JDBCCallable.class io.vertx.ext.jdbc.impl.actions.JDBCClose.class io.vertx.ext.jdbc.impl.actions.JDBCCommit.class io.vertx.ext.jdbc.impl.actions.JDBCExecute.class io.vertx.ext.jdbc.impl.actions.JDBCQuery.class io.vertx.ext.jdbc.impl.actions.JDBCRollback.class io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper.class io.vertx.ext.jdbc.impl.actions.JDBCUpdate.class io.vertx.ext.jdbc.package-info.class io.vertx.ext.jdbc.spi.DataSourceProvider.class io.vertx.ext.jdbc.spi.impl.BoneCPDataSourceProvider.class io.vertx.ext.jdbc.spi.impl.C3P0DataSourceProvider.class io.vertx.ext.jdbc.spi.impl.HikariCPDataSourceProvider.class io.vertx.groovy.ext.jdbc.JDBCClient.class io.vertx.rxjava.ext.jdbc.JDBCClient.class vertx-jdbc-js/jdbc_client.js vertx-jdbc-js/jdbc_connection.js vertx-jdbc/jdbc_client.rb
vertx-jdbc-client-3.3.3.pom file content.
<?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> <groupId>io.vertx</groupId> <artifactId>vertx-ext-parent</artifactId> <version>20</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>vertx-jdbc-client</artifactId> <version>3.3.3</version> <properties> <stack.version>3.3.3</stack.version> <maven-bundle-plugin.version>3.0.1</maven-bundle-plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-dependencies</artifactId> <version>${stack.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-sql-common</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-groovy</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-ruby</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-lang-js</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-docgen</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codetrans</artifactId> <optional>true</optional> </dependency> <dependency> <!-- this dependency is aligned with the vert.x core one do avoid dependencies to get another version --> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.5.2</version> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>2.4.6</version> <optional>true</optional> </dependency> <dependency> <groupId>com.jolbox</groupId> <artifactId>bonecp</artifactId> <version>0.8.0.RELEASE</version> <optional>true</optional> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.3.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.12.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.191</version> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>6.0.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin.version}</version> <extensions>true</extensions> <inherited>true</inherited> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Export-Package>io.vertx.ext.jdbc;version=${project.version}, io.vertx.groovy.ext.jdbc;version=${project.version}, io.vertx.rxjava.ext.jdbc;version=${project.version}, io.vertx.ext.jdbc.spi;version=${project.version} </Export-Package> <Import-Package> javax.sql, io.vertx.ext.sql*, io.vertx.core*, *;resolution:=optional</Import-Package> <Include-Resource>{maven-resources}</Include-Resource> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-jdbc-client</artifactId> <version>3.3.3</version> </dependency>
If you think the following vertx-jdbc-client-3.3.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download vertx-jdbc-client-3.3.3.jar file