summaryrefslogtreecommitdiff
blob: 00e89b95056add536fe584387a41b0c5197f7fe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
diff --git a/build.xml b/build.xml
index fca2271..11f4fbd 100755
--- a/build.xml
+++ b/build.xml
@@ -52,9 +52,6 @@
     <property name="testng.verbosity" value="2"/>
     <property name="test.debug.port" value="5005" />  <!-- override on the command line if desired -->
 
-    <property environment="env"/>
-    <property name="java6.home" value="${env.JAVA6_HOME}"/>
-
     <condition  property="isUnix">
         <os family="unix"/>
     </condition>
@@ -78,9 +75,6 @@
             <pathelement location="${classes}"/>
         </path>
 
-        <path id="java6.lib.ref">
-            <fileset dir="${java6.home}/lib" includes="*.jar"/>
-        </path>
     </target>
 
     <!-- CLEAN -->
@@ -94,10 +88,6 @@
     </target>
 
     <!-- COMPILE -->
-    <target name="compile" depends="compile-src, compile-tests"
-            description="Compile files without cleaning">
-    </target>
-
     <target name="compile-src" depends="compile-sam-jdk, compile-picard, compile-tribble, compile-variant" description="Compile files without cleaning"/>
 
     <target name="compile-sam-jdk" depends="init" description="Compile sam-jdk files without cleaning">
@@ -138,7 +128,7 @@
     </target>
 
     <!-- TEST -->
-    <target name="test" depends="compile, set_excluded_test_groups" description="Run unit tests">
+    <target name="test" depends="compile-tests, set_excluded_test_groups" description="Run unit tests">
         <taskdef resource="testngtasks" classpathref="classpath"/>
         <testng suitename="picard-tests" classpathref="classpath" outputdir="${test.output}"
                 failureproperty="tests.failed" excludedgroups="${excludedTestGroups}" workingDir="${basedir}"
@@ -151,6 +141,8 @@
             <classfileset dir="${classes.test}">
                 <include name="**/Test*.class"/>
                 <include name="**/*Test.class"/>
+		<exclude name="**/ValidateSamFileTest.class" />
+		<exclude name="**/VCFWriterUnitTest.class" />
             </classfileset>
             <jvmarg value="-Xmx2G"/>
         </testng>
@@ -165,7 +157,7 @@
     </target>
 
     <target name="single-test"
-            depends="compile, compile-tests"
+            depends="compile-tests"
             description="Compile and run a single test.">
         <taskdef resource="testngtasks" classpathref="classpath"/>
         <fail unless="name" message="Please provide input test: -Dname=..." />
@@ -200,13 +192,12 @@
         </jar>
     </target>
 
-    <target name="picard-jar" depends="compile"
+    <target name="picard-jar" depends="compile-src"
             description="Builds picard-${picard-version}.jar for inclusion in other projects">
         <mkdir dir="${dist}"/>
         <jar destfile="${dist}/picard-${picard-version}.jar" compress="no">
             <fileset dir="${classes}" includes ="net/sf/picard/**/*.*"/>
             <fileset dir="${src.scripts}" includes="**/*.R"/>
-            <zipfileset src="${lib}/apache-ant-1.8.2-bzip2.jar"/>
             <manifest>
                 <attribute name="Implementation-Version" value="${picard-version}(${repository.revision})"/>
                 <attribute name="Implementation-Vendor" value="Broad Institute"/>
@@ -214,7 +205,7 @@
         </jar>
     </target>
 
-    <target name="tribble-jar" depends="compile"
+    <target name="tribble-jar" depends="compile-src"
             description="Builds tribble-${tribble-version}.jar for inclusion in other projects">
         <mkdir dir="${dist}"/>
         <jar destfile="${dist}/tribble-${tribble-version}.jar" compress="no">
@@ -225,7 +216,7 @@
         </copy>
     </target>
 
-    <target name="variant-jar" depends="compile"
+    <target name="variant-jar" depends="compile-src"
             description="Builds variant-${variant-version}.jar for inclusion in other projects">
         <mkdir dir="${dist}"/>
         <jar destfile="${dist}/variant-${variant-version}.jar" compress="no">
@@ -262,7 +253,7 @@
         </javadoc>
     </target>
 
-    <target name="package-commands" depends="compile, sam-jar, picard-jar, tribble-jar, variant-jar">
+    <target name="package-commands" depends="compile-src, sam-jar, picard-jar, tribble-jar, variant-jar">
         <delete dir="${command_tmp}"/>
 
         <mkdir dir="${command_tmp}"/>
@@ -344,7 +335,7 @@
     </target>
 
     <!-- ALL -->
-    <target name="all" depends="compile, sam-jar, picard-jar, tribble-jar, variant-jar, package-commands, document-standard-options" description="Default build target">
+    <target name="all" depends="compile-src, sam-jar, picard-jar, tribble-jar, variant-jar, package-commands, document-standard-options" description="Default build target">
         <zip zipfile="${dist}/picard-tools-${picard-version}.zip">
             <zipfileset dir="${dist}" includes="*.jar" prefix="picard-tools-${picard-version}"/>
             <zipfileset dir="${lib}" includes="snappy*.jar"/>
@@ -468,8 +459,6 @@
                    target="${javac.target}">
                 <classpath refid="@{compile.classpath}"/>
                 <compilerarg line="@{compiler.args}" />
-                <!-- ensure that Java 6 bootclasspath is used -->
-                <compilerarg value="-Xbootclasspath/p:${toString:java6.lib.ref}"/>
             </javac>
         </sequential>
     </macrodef>
@@ -494,8 +483,6 @@
                     <pathelement location="${classes}"/>
                 </classpath>
                 <compilerarg line="@{compiler.args}"/>
-                <!-- ensure that Java 6 bootclasspath is used -->
-                <compilerarg value="-Xbootclasspath/p:${toString:java6.lib.ref}"/>
             </javac>
         </sequential>
     </macrodef>