aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2014-03-12 22:36:32 +0100
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2014-03-12 22:36:32 +0100
commit2cd6b616e27c1dd9867038281e491cee9c857545 (patch)
treefabde09ebb2eb6d88b805f700aed874e4e3ee7d1
parentf8176c407fc64cf126a6b66047d295d22ddb402d (diff)
downloadjacoco-2cd6b616e27c1dd9867038281e491cee9c857545.tar.gz
New FAQ entry about Java versions.
-rw-r--r--org.jacoco.doc/docroot/doc/faq.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/org.jacoco.doc/docroot/doc/faq.html b/org.jacoco.doc/docroot/doc/faq.html
index 1aa3716a..82c4c475 100644
--- a/org.jacoco.doc/docroot/doc/faq.html
+++ b/org.jacoco.doc/docroot/doc/faq.html
@@ -29,6 +29,14 @@
various tools.
</p>
+<h3>What Java versions are supported by JaCoCo?</h3>
+<p>
+ JaCoCo supports Java class files from version 1.0 to 1.7. However the minimum
+ JRE version required by the JaCoCo runtime (e.g. the agent) and the JaCoCo
+ tools is 1.5. Also note that class files under test from version 1.6 and above
+ have to contain valid stackmap frames.
+</p>
+
<h3>Why do I get the error "Can't add different class with same name"?</h3>
<p>
For coverage report generation all classes within a group must have unique
@@ -43,7 +51,7 @@
into the control flow at certain positions. Code is considered as executed
when a subsequent probe has been executed. In case of exceptions such a
sequence of instructions is aborted somewhere in the middle and not marked as
- executed.
+ executed.
</p>
<h3>Why does the coverage report not show line coverage figures?</h3>