Skip to content

Commit 0a9061d

Browse files
committed
Migrate cobertura to Maven. Add formatter plugin to ensure all code always respects same format.
1 parent 15e612c commit 0a9061d

File tree

682 files changed

+75487
-70393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

682 files changed

+75487
-70393
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
build/
12
cobertura/bin/
23
cobertura/build/
34
cobertura/cobertura.jar
@@ -10,3 +11,8 @@ cobertura/examples/functionaltest1/cobertura.ser
1011
cobertura/examples/functionaltest1/instrumented/
1112
cobertura/examples/functionaltest1/reports/
1213
cobertura/examples/functionaltest1/tmp/
14+
*.iml
15+
*.project
16+
*.classpath
17+
**/target/
18+
*.idea

cobertura/COPYING LICENSE.txt

File renamed without changes.

cobertura/ChangeLog README.txt

+67-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,70 @@
1-
version 2.0:
1+
ABOUT
2+
Cobertura is a free Java code coverage reporting tool. It is
3+
based on jcoverage 1.0.5. See the Cobertura web page for more
4+
details. http://cobertura.sourceforge.net/
5+
6+
COPYRIGHT
7+
See the included file "COPYRIGHT"
8+
9+
LICENSE
10+
Cobertura is free software. Most of it is licensed under the GNU
11+
GPL, and you can redistribute it and/or modify it under the terms
12+
of the GNU General Public License as published by the Free Software
13+
Foundation; either version 2 of the License, or (at your option)
14+
any later version. Please review the file COPYING included in this
15+
distribution for further details.
16+
Parts of Cobertura are licensed under the Apache Software License,
17+
Version 1.1.
18+
19+
WARRANTY
20+
Cobertura is distributed in the hope that it will be useful, but
21+
WITHOUT ANY WARRANTY; without even the implied warranty of
22+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23+
General Public License for more details.
24+
25+
CONVENTIONS
26+
When contributing consider using the provided xsl for code formatting.
27+
28+
CONTRIBUTORS
29+
List of all contributors to Cobertura listed alphabetically by last name
30+
Copyright (C) 2005 Björn Beskow <bbeskow a.t users d.o.t sourceforge d.o.t net>
31+
Copyright (C) 2008 Matt Cordes <mcordes a.t visa d.o.t com>
32+
Copyright (C) 2005 Erik Dick <erdick a.t users d.o.t sourceforge d.o.t net>
33+
Copyright (C) 2005 Mark Doliner <thekingant a.t users d.o.t sourceforge d.o.t net>
34+
Copyright (C) 2005 Joakim Erdfelt <joakim a.t erdfelt d.o.t net>
35+
Copyright (C) 2008 Scott Frederick <scottyfred a.t gmail d.o.t com>
36+
Copyright (C) 2008 Julian Gamble <juliangamble a.t users d.o.t sourceforge d.o.t net>
37+
Copyright (C) 2006 Dan Godfrey <dgodfrey99 a.t users d.o.t sourceforge d.o.t net>
38+
Copyright (C) 2008 Tri Bao Ho <hotribao a.t users d.o.t sourceforge d.o.t net>
39+
Copyright (C) 2006 Naoki Iwami <naoki_iwami a.t users d.o.t sourceforge d.o.t net>
40+
Copyright (C) 2003 jcoverage ltd.
41+
Copyright (C) 2009 John Lewis <lewijw a.t users d.o.t sourceforge d.o.t net>
42+
Copyright (C) 2005 Grzegorz Lukasik <hauserx a.t users d.o.t sourceforge d.o.t net>
43+
Copyright (C) 2006 Jiri Mares <jirimares a.t users d.o.t sourceforge d.o.t net>
44+
Copyright (C) 2009 Amit Nithianandan <ANithian a.t gmail d.o.t com>
45+
Copyright (C) 2005 Olivier Parent <olivier-parent a.t users d.o.t sourceforge d.o.t net>
46+
Copyright (C) 2009 Ed Randall <ed_randall a.t yahoo d.o.t com>
47+
Copyright (C) 2005 Alex Ruiz <alruiz15 a.t users d.o.t yahoo d.o.t com>
48+
Copyright (C) 2005 James Seigel <cgul a.t users d.o.t sourceforge d.o.t net>
49+
Copyright (C) 2005 Mark Sinke <marksinke a.t users d.o.t sourceforge d.o.t net>
50+
Copyright (C) 2010 Tad Smith <tsmith a.t lw-lmco d.o.t com>
51+
Copyright (C) 2009 Charlie Squires <rockonword a.t users d.o.t sourceforge d.o.t net>
52+
Copyright (C) 2010 Piotr Tabor <piotr.tabor a.t gmail d.o.t com>
53+
Copyright (C) 2005 Jeremy Thomerson <jthomerson a.t users d.o.t sourceforge d.o.t net>
54+
Copyright (C) 2009 Chris van Es <cvanes a.t users d.o.t sourceforge d.o.t net>
55+
Copyright (C) 2006 Srivathsan Varadarajan <vatsanv a.t users d.o.t sourceforge d.o.t net>
56+
Copyright (C) 2005 Nathan Wilson <ndciwilson a.t users d.o.t sourceforge d.o.t net>
57+
Copyright (C) 2005 Alexei Yudichev <sflexus a.t users d.o.t sourceforge d.o.t net>
58+
59+
MAVEN MIGRATION NOTES
60+
* How do we get a good blame while all files were moved?
61+
Use "git blame --follow" nameOfFile.java
62+
63+
64+
CHANGELOG
65+
Code in the net.sourceforge.cobertura.javancss package is
66+
Copyright (C) 2000 Chr. Clemens Lee <clemens a.t kclee d.o.t com>
67+
version 1.9.5:
268
* New --ignoreTrivial switch that tells Cobertura to ignore the
369
following in the coverage report: Getter methods that simply
470
read a class field; Setter methods that set a class field;
@@ -9,7 +75,6 @@ version 2.0:
975
when present on a method, will cause Cobertura to ignore the
1076
method in the coverage report.
1177
(Patch 3010530) (Tad Smith)
12-
1378

1479
version 1.9.4.1:
1580
* Fix a problem that occurs in Tomcat. When TouchCollector
@@ -19,7 +84,6 @@ version 1.9.4.1:
1984
Added a test that highlights this problem. (Thanks to Jack Cobb
2085
for suggesting the fix).
2186
* Runs on Java 5. (Fix for Bug 2962599).
22-
2387

2488
version 1.9.4:
2589
* Cobertura is now up to 10x faster. Aggregates changes in

cobertura/.classpath

-44
This file was deleted.

cobertura/.project

-17
This file was deleted.

cobertura/.settings/org.codehaus.groovy.eclipse.preferences.prefs

-4
This file was deleted.

cobertura/.settings/org.eclipse.jdt.core.prefs

-23
This file was deleted.

cobertura/.settings/org.eclipse.jdt.launching.prefs

-3
This file was deleted.

cobertura/COPYRIGHT

-36
This file was deleted.

cobertura/README

-31
This file was deleted.

cobertura/build.properties

-35
This file was deleted.

0 commit comments

Comments
 (0)