Create symlinks target/GenomeAnalysisTK.jar and target/Queue.jar during package phase.

This commit is contained in:
Khalid Shakir 2014-02-15 01:12:32 +08:00
parent 07a1d55209
commit 2e99a6ecf8
3 changed files with 23 additions and 0 deletions

15
pom.xml
View File

@ -511,6 +511,21 @@
</links>
</configuration>
</execution>
<execution>
<id>link-binary-jar</id>
<goals>
<goal>link</goal>
</goals>
<phase>none</phase>
<configuration>
<links>
<link>
<dst>${sting.basedir}/target/${sting.binary-dist.name}.${project.packaging}</dst>
<src>${project.build.directory}/${project.build.finalName}.${project.packaging}</src>
</link>
</links>
</configuration>
</execution>
<execution>
<id>link-git-release</id>
<goals>

View File

@ -170,6 +170,10 @@
<groupId>com.pyx4j</groupId>
<artifactId>maven-junction-plugin</artifactId>
<executions>
<execution>
<id>link-binary-jar</id>
<phase>${sting.shade.phase}</phase>
</execution>
<execution>
<id>link-git-release</id>
<phase>${sting.shade.phase}</phase>

View File

@ -208,6 +208,10 @@
<groupId>com.pyx4j</groupId>
<artifactId>maven-junction-plugin</artifactId>
<executions>
<execution>
<id>link-binary-jar</id>
<phase>${sting.shade.phase}</phase>
</execution>
<execution>
<id>link-git-release</id>
<phase>${sting.shade.phase}</phase>