trino-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.tidb</groupId> <artifactId>trino-connector</artifactId> <version>0.0.4</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/maven-v4_0_0.xsd"> <parent> <artifactId>bigdata</artifactId> <groupId>io.tidb</groupId> <version>0.0.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>trino-connector</artifactId> <name>Trino Connector</name> <url>https://github.com/pingcap-incubator/TiBigData</url> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>11</source> <target>11</target> <encoding>UTF-8</encoding> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> <configuration> <descriptors> <descriptor>src/main/assembly/tidb.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>com.google.common</pattern> <shadedPattern>shade.bigdata.com.google.common</shadedPattern> </relocation> </relocations> <finalName>${project.artifactId}-${project.version}</finalName> <transformers> <transformer /> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/LICENSE</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.trino</groupId> <artifactId>trino-spi</artifactId> <version>359</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>slice</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>jol-core</artifactId> <groupId>org.openjdk.jol</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>protobuf-java</artifactId> <groupId>com.google.protobuf</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-main</artifactId> <version>359</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>trino-array</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-client</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-geospatial-toolkit</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-matching</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-memory-context</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-parser</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-plugin-toolkit</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>aircompressor</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>bytecode</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>concurrent</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>discovery</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>event</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>http-client</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>http-server</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>jaxrs</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>jmx</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>jmx-http</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>joni</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>node</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>security</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>stats</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>trace-token</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>discovery-server</artifactId> <groupId>io.airlift.discovery</groupId> </exclusion> <exclusion> <artifactId>stream</artifactId> <groupId>com.clearspring.analytics</groupId> </exclusion> <exclusion> <artifactId>esri-geometry-api</artifactId> <groupId>com.esri.geometry</groupId> </exclusion> <exclusion> <artifactId>scribejava-apis</artifactId> <groupId>com.github.scribejava</groupId> </exclusion> <exclusion> <artifactId>scribejava-core</artifactId> <groupId>com.github.scribejava</groupId> </exclusion> <exclusion> <artifactId>re2j-td</artifactId> <groupId>com.teradata</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>jjwt</artifactId> <groupId>io.jsonwebtoken</groupId> </exclusion> <exclusion> <artifactId>fastutil</artifactId> <groupId>it.unimi.dsi</groupId> </exclusion> <exclusion> <artifactId>javax.servlet-api</artifactId> <groupId>javax.servlet</groupId> </exclusion> <exclusion> <artifactId>javax.ws.rs-api</artifactId> <groupId>javax.ws.rs</groupId> </exclusion> <exclusion> <artifactId>joda-time</artifactId> <groupId>joda-time</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>lucene-analyzers-common</artifactId> <groupId>org.apache.lucene</groupId> </exclusion> <exclusion> <artifactId>jgrapht-core</artifactId> <groupId>org.jgrapht</groupId> </exclusion> <exclusion> <artifactId>jts-core</artifactId> <groupId>org.locationtech.jts</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>pcollections</artifactId> <groupId>org.pcollections</groupId> </exclusion> <exclusion> <artifactId>okhttp</artifactId> <groupId>com.squareup.okhttp3</groupId> </exclusion> <exclusion> <artifactId>okhttp-urlconnection</artifactId> <groupId>com.squareup.okhttp3</groupId> </exclusion> <exclusion> <artifactId>slice</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>jol-core</artifactId> <groupId>org.openjdk.jol</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-tests</artifactId> <version>359</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>trino-main</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-testing</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-testing-services</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-tpch</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>tpch</artifactId> <groupId>io.trino.tpch</groupId> </exclusion> <exclusion> <artifactId>testing</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>assertj-core</artifactId> <groupId>org.assertj</groupId> </exclusion> <exclusion> <artifactId>testng</artifactId> <groupId>org.testng</groupId> </exclusion> <exclusion> <artifactId>h2</artifactId> <groupId>com.h2database</groupId> </exclusion> <exclusion> <artifactId>trino-client</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-parser</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>trino-plugin-toolkit</artifactId> <groupId>io.trino</groupId> </exclusion> <exclusion> <artifactId>concurrent</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>node</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>okhttp</artifactId> <groupId>com.squareup.okhttp3</groupId> </exclusion> <exclusion> <artifactId>joda-time</artifactId> <groupId>joda-time</groupId> </exclusion> <exclusion> <artifactId>http-client</artifactId> <groupId>io.airlift</groupId> </exclusion> <exclusion> <artifactId>javax.ws.rs-api</artifactId> <groupId>javax.ws.rs</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <dep.airlift.version>207</dep.airlift.version> <dep.trino.version>359</dep.trino.version> </properties> </project>