presto-mysql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-mysql</artifactId> <version>0.293</version> </dependency>
<?xml version="1.0"?> <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>com.facebook.presto</groupId> <artifactId>presto-root</artifactId> <version>0.293</version> </parent> <artifactId>presto-mysql</artifactId> <description>Presto - MySQL Connector</description> <packaging>presto-plugin</packaging> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> </properties> <dependencies> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-base-jdbc</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>configuration</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <!-- Presto SPI --> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-spi</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-common</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.esri.geometry</groupId> <artifactId>esri-geometry-api</artifactId> </dependency> <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-geospatial-toolkit</artifactId> </dependency> <dependency> <groupId>com.facebook.drift</groupId> <artifactId>drift-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>slice</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>units</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <scope>provided</scope> </dependency> <!-- for testing --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-testng-services</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-main-base</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-tpch</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.airlift.tpch</groupId> <artifactId>tpch</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-tests</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>testing-mysql-server-8</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.presto</groupId> <artifactId>testing-mysql-server-base</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>19.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- integration tests take a very long time so only run them in the CI server --> <excludes> <exclude>**/TestMySqlDistributedQueries.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>ci</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes combine.self="override" /> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>