/asl/asl-java.xml
XML | 42 lines | 12 code | 3 blank | 27 comment | 0 complexity | 32f8919ee996cb6978cd7841f379fef4 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3******************************************************************************** 4* Ant Script Library - Java top level module 5* Module that imports all the other java modules for a plain java build 6* Module property prefix: "java" 7******************************************************************************** 8* Copyright 2009 Joe Schmetzer 9* 10* Licensed under the Apache License, Version 2.0 (the "License"); 11* you may not use this file except in compliance with the License. 12* You may obtain a copy of the License at 13* 14* http://www.apache.org/licenses/LICENSE-2.0 15* 16* Unless required by applicable law or agreed to in writing, software 17* distributed under the License is distributed on an "AS IS" BASIS, 18* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 19* See the License for the specific language governing permissions and 20* limitations under the License. 21******************************************************************************** 22 --> 23<project name="asl-java"> 24 <dirname property="asl-java.basedir" file="${ant.file.asl-java}"/> 25 26 <import file="${asl-java.basedir}/asl-java-build.xml"/> 27 <import file="${asl-java.basedir}/asl-java-test.xml"/> 28 <import file="${asl-java.basedir}/asl-java-report.xml"/> 29 <import file="${asl-java.basedir}/asl-java-package.xml"/> 30 31 <!-- *********************************************************************** 32 * target: smoketest 33 ************************************************************************ --> 34 <target name="smoketest" depends="clean, dist, test-run-unit, report-all, test-unit" 35 description="Runs smoketests on a clean compile"/> 36 37 <!-- *********************************************************************** 38 * target: fulltest 39 ************************************************************************ --> 40 <target name="fulltest" depends="clean, dist, test-run-unit, test-run-integration, report-all, test-all" 41 description="Runs full tests on a clean compile"/> 42</project>