Create symlinks target/GenomeAnalysisTK.jar and target/Queue.jar during package phase.
This commit is contained in:
parent
07a1d55209
commit
2e99a6ecf8
15
pom.xml
15
pom.xml
|
|
@ -511,6 +511,21 @@
|
||||||
</links>
|
</links>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</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>
|
<execution>
|
||||||
<id>link-git-release</id>
|
<id>link-git-release</id>
|
||||||
<goals>
|
<goals>
|
||||||
|
|
|
||||||
|
|
@ -170,6 +170,10 @@
|
||||||
<groupId>com.pyx4j</groupId>
|
<groupId>com.pyx4j</groupId>
|
||||||
<artifactId>maven-junction-plugin</artifactId>
|
<artifactId>maven-junction-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>link-binary-jar</id>
|
||||||
|
<phase>${sting.shade.phase}</phase>
|
||||||
|
</execution>
|
||||||
<execution>
|
<execution>
|
||||||
<id>link-git-release</id>
|
<id>link-git-release</id>
|
||||||
<phase>${sting.shade.phase}</phase>
|
<phase>${sting.shade.phase}</phase>
|
||||||
|
|
|
||||||
|
|
@ -208,6 +208,10 @@
|
||||||
<groupId>com.pyx4j</groupId>
|
<groupId>com.pyx4j</groupId>
|
||||||
<artifactId>maven-junction-plugin</artifactId>
|
<artifactId>maven-junction-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>link-binary-jar</id>
|
||||||
|
<phase>${sting.shade.phase}</phase>
|
||||||
|
</execution>
|
||||||
<execution>
|
<execution>
|
||||||
<id>link-git-release</id>
|
<id>link-git-release</id>
|
||||||
<phase>${sting.shade.phase}</phase>
|
<phase>${sting.shade.phase}</phase>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue