Download vertx-mysql-postgresql-client-3.2.1.jar file

Introduction

You can download vertx-mysql-postgresql-client-3.2.1.jar in this page.

License

Open Source

Type List

vertx-mysql-postgresql-client-3.2.1.jar file has the following types.

META-INF/INDEX.LIST
META-INF/MANIFEST.MF
META-INF/maven/io.vertx/vertx-mysql-postgresql-client/pom.properties
META-INF/maven/io.vertx/vertx-mysql-postgresql-client/pom.xml
io.vertx.ext.asyncsql.AsyncSQLClient.class
io.vertx.ext.asyncsql.MySQLClient.class
io.vertx.ext.asyncsql.PostgreSQLClient.class
io.vertx.ext.asyncsql.impl.AsyncSQLClientImpl.class
io.vertx.ext.asyncsql.impl.AsyncSQLConnectionImpl.class
io.vertx.ext.asyncsql.impl.BaseSQLClient.class
io.vertx.ext.asyncsql.impl.ClientHelper.class
io.vertx.ext.asyncsql.impl.ClientHolder.class
io.vertx.ext.asyncsql.impl.ClientWrapper.class
io.vertx.ext.asyncsql.impl.MYSQLClientImpl.class
io.vertx.ext.asyncsql.impl.MySQLConnectionImpl.class
io.vertx.ext.asyncsql.impl.PostgreSQLClientImpl.class
io.vertx.ext.asyncsql.impl.ScalaUtils.class
io.vertx.ext.asyncsql.impl.VertxEventLoopExecutionContext.class
io.vertx.ext.asyncsql.impl.pool.AsyncConnectionPool.class
io.vertx.ext.asyncsql.impl.pool.MysqlAsyncConnectionPool.class
io.vertx.ext.asyncsql.impl.pool.PostgresqlAsyncConnectionPool.class
io.vertx.ext.asyncsql.package-info.class
io.vertx.groovy.ext.asyncsql.AsyncSQLClient.class
io.vertx.groovy.ext.asyncsql.MySQLClient.class
io.vertx.groovy.ext.asyncsql.PostgreSQLClient.class
io.vertx.rxjava.ext.asyncsql.AsyncSQLClient.class
io.vertx.rxjava.ext.asyncsql.MySQLClient.class
io.vertx.rxjava.ext.asyncsql.PostgreSQLClient.class
vertx-mysql-postgresql-js/async_sql_client.js
vertx-mysql-postgresql-js/async_sql_service.js
vertx-mysql-postgresql-js/my_sql_client.js
vertx-mysql-postgresql-js/postgre_sql_client.js
vertx-mysql-postgresql/async_sql_client.rb
vertx-mysql-postgresql/my_sql_client.rb
vertx-mysql-postgresql/postgre_sql_client.rb

Pom

vertx-mysql-postgresql-client-3.2.1.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>19</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>

  <artifactId>vertx-mysql-postgresql-client</artifactId>
  <version>3.2.1</version>

  <name>Vert.x MySQL/PostgreSQL Client</name>

  <properties>
    <stack.version>3.2.1</stack.version>
    <scala.version>2.11.4</scala.version>
    <asyncdriver.version>0.2.18</asyncdriver.version>

    <host>localhost</host>
  </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>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.6.2</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-sql-common</artifactId>
    </dependency>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-unit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-library</artifactId>
      <version>${scala.version}</version>
    </dependency>
    <dependency>
      <groupId>com.github.mauricio</groupId>
      <artifactId>postgresql-async_2.11</artifactId>
      <version>${asyncdriver.version}</version>
      <exclusions>
        <exclusion>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.github.mauricio</groupId>
      <artifactId>mysql-async_2.11</artifactId>
      <version>${asyncdriver.version}</version>
      <exclusions>
        <exclusion>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </exclusion>
      </exclusions>
    </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>
      <version>${stack.version}</version>
    </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>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-core</artifactId>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
      <version>4.11</version>
    </dependency>
    <dependency>
      <groupId>com.jayway.awaitility</groupId>
      <artifactId>awaitility</artifactId>
      <version>1.6.3</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <!-- Copy resources after compilation phase as we generate JS in src/main/resources -->
      <plugin>
        <artifactId>maven-resources-plugin</artifactId>
        <executions>
          <execution>
            <id>default-resources</id>
            <phase>process-classes</phase>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <systemPropertyVariables>
            <vertx.test.timeout>60</vertx.test.timeout>
            <io.netty.leakDetectionLevel>PARANOID</io.netty.leakDetectionLevel>
            <db.host>${host}</db.host>
          </systemPropertyVariables>
          <argLine>-server -Xms128m -Xmx1024m -XX:NewRatio=2</argLine>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <!-- To launch the database in docker container using docker-machine, execute:
       mvn clean install -Pdocker -Dhost=(docker-machine ip default)
       where `default` is the docker machine you use.
      -->
      <id>docker</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.4.0</version>
            <executions>
              <execution>
                <id>start-db</id>
                <phase>process-test-classes</phase>
                <goals>
                  <goal>exec</goal>
                </goals>
                <configuration>
                  <workingDirectory>${project.basedir}/src/test/resources/docker</workingDirectory>
                  <executable>./start-db.sh</executable>
                </configuration>
              </execution>

              <execution>
                <id>stop-db</id>
                <phase>prepare-package</phase>
                <goals>
                  <goal>exec</goal>
                </goals>
                <configuration>
                  <workingDirectory>${project.basedir}/src/test/resources/docker</workingDirectory>
                  <executable>./stop-db.sh</executable>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

</project>

POM Entry

<dependency>
   <groupId>io.vertx</groupId>
   <artifactId>vertx-mysql-postgresql-client</artifactId>
   <version>3.2.1</version>
</dependency>

Download

If you think the following vertx-mysql-postgresql-client-3.2.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download vertx-mysql-postgresql-client-3.2.1.jar file




PreviousNext

Related