diff options
author | Shevek <[email protected]> | 2013-12-27 05:49:13 -0800 |
---|---|---|
committer | Shevek <[email protected]> | 2013-12-27 05:49:13 -0800 |
commit | bdc6c852f418c3e042aa41469d84544e5f60a526 (patch) | |
tree | 7866346f0fa48ad46a6a427d016dd4b83451dbbe /etc/targets/global-cobertura.xml | |
parent | 39264fd6d2a6646e49f83b5b2b3512c1663a1c9b (diff) |
Version bump to 1.4.0-SNAPSHOT.
Rewrite build system to use gradle.
Clean up source for the new generation.
Diffstat (limited to 'etc/targets/global-cobertura.xml')
-rw-r--r-- | etc/targets/global-cobertura.xml | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/etc/targets/global-cobertura.xml b/etc/targets/global-cobertura.xml deleted file mode 100644 index 425a9fd..0000000 --- a/etc/targets/global-cobertura.xml +++ /dev/null @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project name="global-cobertura" basedir="."> - - <target name="global-cobertura-instrument" depends="global-taskdefs" - unless="test.no.cobertura"> - <delete dir="${global.dir.build.cobertura}" /> - <mkdir dir="${global.dir.build.cobertura}" /> - - <cobertura-instrument - todir="${global.dir.build.cobertura}" - datafile="${global.dir.build.cobertura}/cobertura.ser"> - <fileset dir="${global.dir.build.classes}"> - <include name="**/*.class" /> - <exclude name="**/Main.class" /> - <exclude name="**/cmd/**" /> - <exclude name="**/soap/port/*/*PortSoapBindingStub.class" /> - <exclude name="**/soap/port/*/*PortServiceLocator.class" /> - <exclude name="**/soap/port/*/*PortService.class" /> - </fileset> - </cobertura-instrument> - - </target> - - <target name="global-cobertura-report" depends="global-taskdefs" - unless="test.no.cobertura"> - <cobertura-report - format="html" - datafile="${global.dir.build.cobertura}/cobertura.ser" - destdir="${global.dir.build.reports}/cobertura" - srcdir="${global.dir.build.java}" /> - </target> - - -</project> |