Rather than just picking a few classes to be the roots of the vcf jar and
including all dependencies, use the entire codecs.vcf and variantcontext packages as roots. Fix for my fix for Jim Robinson.
This commit is contained in:
parent
b732f740d2
commit
dd780dba5f
10
build.xml
10
build.xml
|
|
@ -545,12 +545,10 @@
|
||||||
|
|
||||||
<target name="vcf.jar" depends="gatk.compile,init.jar">
|
<target name="vcf.jar" depends="gatk.compile,init.jar">
|
||||||
<jar jarfile="${dist.dir}/vcf.jar">
|
<jar jarfile="${dist.dir}/vcf.jar">
|
||||||
<fileset dir="${java.classes}">
|
<classfileset dir="${java.classes}">
|
||||||
<include name="**/utils/codecs/**/*.class"/>
|
<rootfileset dir="${java.classes}" includes="org/broadinstitute/sting/utils/codecs/vcf/**/*.class" />
|
||||||
<include name="**/utils/variantcontext/**/*.class"/>
|
<rootfileset dir="${java.classes}" includes="org/broadinstitute/sting/utils/variantcontext/**/*.class" />
|
||||||
<include name="org/broadinstitute/sting/utils/exceptions/**"/>
|
</classfileset>
|
||||||
<include name="org/broadinstitute/sting/utils/help/DocumentedGATKFeature.class"/>
|
|
||||||
</fileset>
|
|
||||||
</jar>
|
</jar>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue