Merge pull request #524 from broadinstitute/ks_symlink_bin_jar

Create symlinks target/GenomeAnalysisTK.jar and target/Queue.jar
This commit is contained in:
kshakir 2014-02-15 02:32:59 +08:00
commit 8b136d53b9
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>