trino-phoenix5-patched
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.trino</groupId> <artifactId>trino-phoenix5-patched</artifactId> <version>446</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>trino-root</artifactId> <groupId>io.trino</groupId> <version>446</version> <relativePath>../../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>trino-phoenix5-patched</artifactId> <description>Trino - patched Phoenix5 client to work with JDK17</description> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>false</createSourcesJar> <shadeSourcesContent>false</shadeSourcesContent> <promoteTransitiveDependencies>false</promoteTransitiveDependencies> <relocations> <relocation> <pattern>org.apache.zookeeper</pattern> <shadedPattern>org.apache.phoenix.shaded.org.apache.zookeeper</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>org.apache.phoenix:phoenix-client-embedded-hbase-2.2</artifact> <excludes> <exclude>org/apache/phoenix/shaded/org/apache/zookeeper/client/StaticHostProvider.class</exclude> <exclude>org/apache/phoenix/shaded/org/apache/zookeeper/client/StaticHostProvider$*.class</exclude> <exclude>javax/xml/bind/**</exclude> <exclyde>META-INF/services/javax.xml.bind.JAXBContext</exclyde> <exclude>org/apache/phoenix/shaded/com/sun/xml/bind/**</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.basepom.maven</groupId> <artifactId>duplicate-finder-maven-plugin</artifactId> <configuration> <ignoredDependencies> <dependency> <groupId>org.apache.phoenix</groupId> <artifactId>phoenix-client-embedded-hbase-2.2</artifactId> </dependency> </ignoredDependencies> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.airlift</groupId> <artifactId>junit-extensions</artifactId> <version>2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>log-manager</artifactId> <groupId>io.airlift</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.10.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>opentest4j</artifactId> <groupId>org.opentest4j</groupId> </exclusion> <exclusion> <artifactId>junit-platform-commons</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> </properties> </project>