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>
|
||||
</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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue