Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
f4891097
Commit
f4891097
authored
15 years ago
by
brinn
Browse files
Options
Downloads
Patches
Plain Diff
remove: references to cobertura
SVN: 10710
parent
0bdb0abc
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build_resources/ant/build-common.xml
+0
-44
0 additions, 44 deletions
build_resources/ant/build-common.xml
with
0 additions
and
44 deletions
build_resources/ant/build-common.xml
+
0
−
44
View file @
f4891097
...
...
@@ -18,21 +18,12 @@
<taskdef
name=
"dependency-checker"
classname=
"classycle.ant.DependencyCheckingTask"
classpath=
"${lib}/classycle/classycle.jar"
/>
<!-- Cobertura -->
<path
id=
"cobertura.classpath"
>
<fileset
dir=
"${lib}/cobertura"
includes=
"**/*.jar"
/>
<pathelement
location=
"${lib}/log4j/log4j.jar"
/>
</path>
<property
name=
"cobertura.datafile"
value=
"${targets}/cobertura.ser"
/>
<taskdef
classpathref=
"cobertura.classpath"
resource=
"tasks.properties"
/>
<property
name=
"build.compiler"
value=
"org.eclipse.jdt.core.JDTCompilerAdapter"
/>
<property
name=
"server-resource"
value=
"${resource}/server"
/>
<property
name=
"sources"
value=
"source/java"
/>
<property
name=
"sources.test"
value=
"sourceTest/java"
/>
<property
name=
"classes"
value=
"${targets}/ant/classes"
/>
<property
name=
"cobertura.instrumented"
value=
"${targets}/ant/instrumented"
/>
<property
name=
"cobertura.report"
value=
"${targets}/cobertura-report"
/>
<property
name=
"output.test"
value=
"${targets}/test-output"
/>
<property
name=
"build.info.filename"
value=
"BUILD.INFO"
/>
<property
name=
"build.info.file"
value=
"${classes}/${build.info.filename}"
/>
...
...
@@ -127,39 +118,4 @@
</exec>
</target>
<!--
// Adds the logging code to the already compiled class files.
-->
<target
name=
"cobertura-instrument"
depends=
"compile"
description=
"Adds the logging code to the already compiled class files."
>
<delete
quiet=
"false"
failonerror=
"false"
>
<fileset
dir=
"${cobertura.instrumented}"
/>
</delete>
<cobertura-instrument
todir=
"${cobertura.instrumented}"
datafile=
"${cobertura.datafile}"
>
<fileset
dir=
"${classes}"
>
<include
name=
"**/*.class"
/>
<exclude
name=
"**/*Test.class"
/>
</fileset>
</cobertura-instrument>
</target>
<!--
// Generate a series of HTML files containing the coverage data in a user-readable form.
-->
<target
name=
"cobertura-report"
depends=
"run-tests"
description=
"Generate a series of HTML files containing the coverage data in a user-readable form."
>
<delete
quiet=
"false"
failonerror=
"false"
>
<fileset
dir=
"${cobertura.report}"
/>
</delete>
<cobertura-report
destdir=
"${cobertura.report}/"
datafile=
"${cobertura.datafile}"
>
<fileset
dir=
"${sources}"
>
<include
name=
"**/*.java"
/>
</fileset>
<fileset
dir=
"${sources.test}"
>
<include
name=
"**/*.java"
/>
</fileset>
</cobertura-report>
</target>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment