Appropriate build statements for 'MarkAllAlignmentsAsPrimary' and 'RepairSeattleBAM' - both one-off tools.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3341 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
13fd182b7c
commit
f36726554f
30
build.xml
30
build.xml
|
|
@ -178,6 +178,24 @@
|
||||||
</manifest>
|
</manifest>
|
||||||
</jar>
|
</jar>
|
||||||
|
|
||||||
|
<jar jarfile="${dist.dir}/MarkAllAlignmentsAsPrimary.jar" whenmanifestonly="skip">
|
||||||
|
<fileset dir="build">
|
||||||
|
<include name="**/*.class" />
|
||||||
|
</fileset>
|
||||||
|
<manifest>
|
||||||
|
<attribute name="Main-Class" value="org.broadinstitute.sting.oneoffprojects.tools.MarkAllAlignmentsAsPrimary" />
|
||||||
|
</manifest>
|
||||||
|
</jar>
|
||||||
|
|
||||||
|
<jar jarfile="${dist.dir}/RepairSeattleBAM.jar" whenmanifestonly="skip">
|
||||||
|
<fileset dir="build">
|
||||||
|
<include name="**/*.class" />
|
||||||
|
</fileset>
|
||||||
|
<manifest>
|
||||||
|
<attribute name="Main-Class" value="org.broadinstitute.sting.oneoffprojects.tools.RepairSeattleBAM" />
|
||||||
|
</manifest>
|
||||||
|
</jar>
|
||||||
|
|
||||||
<jar jarfile="${dist.dir}/VCFTool.jar" whenmanifestonly="skip">
|
<jar jarfile="${dist.dir}/VCFTool.jar" whenmanifestonly="skip">
|
||||||
<fileset dir="build">
|
<fileset dir="build">
|
||||||
<include name="**/*.class"/>
|
<include name="**/*.class"/>
|
||||||
|
|
@ -222,6 +240,18 @@
|
||||||
<attribute name="Class-Path" value="${jar.classpath}" />
|
<attribute name="Class-Path" value="${jar.classpath}" />
|
||||||
</manifest>
|
</manifest>
|
||||||
</jar>
|
</jar>
|
||||||
|
|
||||||
|
<jar jarfile="${dist.dir}/MarkAllAlignmentsAsPrimary.jar" update="true" whenmanifestonly="skip">
|
||||||
|
<manifest>
|
||||||
|
<attribute name="Class-Path" value="${jar.classpath}" />
|
||||||
|
</manifest>
|
||||||
|
</jar>
|
||||||
|
|
||||||
|
<jar jarfile="${dist.dir}/RepairSeattleBAM.jar" update="true" whenmanifestonly="skip">
|
||||||
|
<manifest>
|
||||||
|
<attribute name="Class-Path" value="${jar.classpath}" />
|
||||||
|
</manifest>
|
||||||
|
</jar>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="core" description="force a build of the Sting core code">
|
<target name="core" description="force a build of the Sting core code">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue