blob: 60acdc34e2e0fdd6a9f7682905b779456ceacc03 [file] [log] [blame]
<?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>org.apache.phoenix</groupId>
<artifactId>phoenix</artifactId>
<version>4.15.0-HBase-1.4-SNAPSHOT</version>
</parent>
<name>Presto Apache Phoenix Shaded</name>
<description>Shaded version of Apache Phoenix for Presto</description>
<artifactId>presto-phoenix-shaded</artifactId>
<packaging>pom</packaging>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<!-- Don't make a test-jar -->
<maven.test.skip>true</maven.test.skip>
<shadeBase>org.apache.phoenix.shaded</shadeBase>
</properties>
<modules>
<module>presto-hbase-testing-util-shaded</module>
<module>presto-phoenix-client-shaded</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<verbose>true</verbose>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>