diff options
Diffstat (limited to 'java/client')
| -rw-r--r-- | java/client/pom.xml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/java/client/pom.xml b/java/client/pom.xml index 02958ded6f..b51e540c2d 100644 --- a/java/client/pom.xml +++ b/java/client/pom.xml @@ -134,14 +134,40 @@ <goal>ueberjar</goal> </goals> <configuration> - <stripUnusedClasses>true</stripUnusedClasses> + <stripUnusedClasses>false</stripUnusedClasses> <name>[artifactId]-[version]-single.jar</name> + <classifier>single</classifier> + <attach>true</attach> </configuration> </execution> </executions> </plugin> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>attach-artifacts</id> + <phase>package</phase> + <goals> + <goal>attach-artifact</goal> + </goals> + <configuration> + <artifacts> + <artifact> + <file>target/${artifactId}-${version}-single.jar</file> + <type>jar</type> + <classifier>single</classifier> + </artifact> + </artifacts> + </configuration> + </execution> + </executions> + </plugin> + + + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> </plugin> |
