aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.tests
diff options
context:
space:
mode:
authorEvgeny Mandrikov <Godin@users.noreply.github.com>2016-08-16 04:06:56 +0200
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2016-08-16 04:06:56 +0200
commit28a112ca6c6f46cd385f00aa932ec0e334e045a7 (patch)
tree9d92399e1a2e797a87d560e49fc092e0017a113d /org.jacoco.tests
parentc6f2b6b7e887eb645b8aba928ff0134cfe66ec28 (diff)
downloadjacoco-28a112ca6c6f46cd385f00aa932ec0e334e045a7.tar.gz
Do not violate JVMS regarding initialization of final fields (#434)
Without this change instrumented classes can't pass checks and cause IllegalAccessError starting from OpenJDK 9 EA b127 (see https://bugs.openjdk.java.net/browse/JDK-8157181).
Diffstat (limited to 'org.jacoco.tests')
-rw-r--r--org.jacoco.tests/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.jacoco.tests/pom.xml b/org.jacoco.tests/pom.xml
index f91f2750..742e90dc 100644
--- a/org.jacoco.tests/pom.xml
+++ b/org.jacoco.tests/pom.xml
@@ -50,7 +50,7 @@
<artifactId>jacoco-maven-plugin</artifactId>
<version>${project.version}</version>
<configuration>
- <exclClassLoaders>sun.reflect.DelegatingClassLoader:org.jacoco.core.test.TargetLoader</exclClassLoaders>
+ <exclClassLoaders>sun.reflect.DelegatingClassLoader:org.jacoco.core.test.TargetLoader:org.jacoco.core.test.InstrumentingLoader</exclClassLoaders>
<sessionId>${project.artifactId}</sessionId>
<includes>
<include>${jacoco.includes}</include>