PageRenderTime 147ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/asl/asl-java.xml

http://mp-rechnungs-und-kundenverwaltung.googlecode.com/
XML | 42 lines | 12 code | 3 blank | 27 comment | 0 complexity | 32f8919ee996cb6978cd7841f379fef4 MD5 | raw file
Possible License(s): LGPL-3.0, Apache-2.0, GPL-3.0, GPL-2.0, AGPL-3.0, JSON, BSD-3-Clause
  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. <import file="${asl-java.basedir}/asl-java-build.xml"/>
  26. <import file="${asl-java.basedir}/asl-java-test.xml"/>
  27. <import file="${asl-java.basedir}/asl-java-report.xml"/>
  28. <import file="${asl-java.basedir}/asl-java-package.xml"/>
  29. <!-- ***********************************************************************
  30. * target: smoketest
  31. ************************************************************************ -->
  32. <target name="smoketest" depends="clean, dist, test-run-unit, report-all, test-unit"
  33. description="Runs smoketests on a clean compile"/>
  34. <!-- ***********************************************************************
  35. * target: fulltest
  36. ************************************************************************ -->
  37. <target name="fulltest" depends="clean, dist, test-run-unit, test-run-integration, report-all, test-all"
  38. description="Runs full tests on a clean compile"/>
  39. </project>