Github user ss77892 commented on a diff in the pull request: https://github.com/apache/phoenix/pull/159#discussion_r66281559 --- Diff: phoenix-queryserver/pom.xml --- @@ -24,6 +26,50 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <id>query-server</id> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <finalName>phoenix-${project.version}-queryserver</finalName> + <shadedArtifactAttached>false</shadedArtifactAttached> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <shadeTestJar>false</shadeTestJar> + <artifactSet> + <includes> + <include>org.apache.phoenix:phoenix-server</include> --- End diff -- Oh. Thanks. The default artifact for module is added automatically, so we can just remove that at all. I will check. Will do a fresh look on all poms after all those moving back and forth.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---