trino-product-tests-launcher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.trino</groupId> <artifactId>trino-product-tests-launcher</artifactId> <version>475</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.trino</groupId> <artifactId>trino-root</artifactId> <version>475</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>trino-product-tests-launcher</artifactId> <description>Trino - Product tests launcher</description> <properties> <main-class>io.trino.tests.product.launcher.cli.Launcher</main-class> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> </dependency> <dependency> <groupId>com.github.docker-java</groupId> <artifactId>docker-java-api</artifactId> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> </dependency> <dependency> <groupId>com.squareup.okio</groupId> <artifactId>okio-jvm</artifactId> </dependency> <dependency> <groupId>dev.failsafe</groupId> <artifactId>failsafe</artifactId> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>bootstrap</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>concurrent</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>json</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>log</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>units</artifactId> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-plugin-reader</artifactId> <exclusions> <exclusion> <!-- trino-main pulls a lot of dependencies pumping jar size, and we only need categories definitions defined in PluginReader class. Also, we want product-test-launcher to treat Trino as "blackbox" as possible, and having trino-main on classpath is not in line with that.--> <groupId>io.trino</groupId> <artifactId>trino-main</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-product-tests-groups</artifactId> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-testing-containers</artifactId> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-testing-services</artifactId> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>junit-extensions</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>confluent</id> <url>https://packages.confluent.io/maven/</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> <phase>package</phase> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>executable</shadedClassifierName> <createDependencyReducedPom>false</createDependencyReducedPom> <filters> <filter> <!-- filter out signature files from signed dependencies --> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <manifestEntries> <Main-Class>${main-class}</Main-Class> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy</id> <goals> <goal>copy</goal> </goals> <phase>package</phase> <configuration> <skip>false</skip> <artifactItems> <artifactItem> <groupId>io.confluent</groupId> <artifactId>kafka-protobuf-provider</artifactId> <type>jar</type> <outputDirectory>${project.build.directory}</outputDirectory> <destFileName>kafka-protobuf-provider.jar</destFileName> </artifactItem> <artifactItem> <groupId>io.confluent</groupId> <artifactId>kafka-protobuf-types</artifactId> <type>jar</type> <outputDirectory>${project.build.directory}</outputDirectory> <destFileName>kafka-protobuf-types.jar</destFileName> </artifactItem> <artifactItem> <groupId>org.apache.hive</groupId> <artifactId>hive-jdbc</artifactId> <classifier>standalone</classifier> <version>3.1.3</version> <type>jar</type> <outputDirectory>${project.build.directory}</outputDirectory> <destFileName>hive-jdbc.jar</destFileName> </artifactItem> <artifactItem> <groupId>com.databricks</groupId> <artifactId>databricks-jdbc</artifactId> <version>2.6.36</version> <type>jar</type> <outputDirectory>${project.build.directory}</outputDirectory> <destFileName>databricks-jdbc.jar</destFileName> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.skife.maven</groupId> <artifactId>really-executable-jar-maven-plugin</artifactId> <configuration> <flags>-Xmx256m</flags> <classifier>executable</classifier> </configuration> <executions> <execution> <goals> <goal>really-executable-jar</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> </project>