jenkinsci/jenkinsfile-runner
在 GitHub 查看Prevent the IllegalReflectiveAccess warnings in JFR when running on Java 11
Open
#343 创建于 2020年7月28日
enhancementhelp wanted
描述
Java 11 permits illegal reflective access by default, so it is not a bug. At the same time, it would be great to cleanup up reflective access to avoid warnings on default code paths. There are many reports on the Jenkins side: https://issues.jenkins-ci.org/browse/JENKINS-40689 . Cleanup requires a number of major changes, including upgrading Groovy to 3.0, patching XStream and Jenkins classloading mechanisms.
Default execution:
docker run --rm -v $(pwd)/Jenkinsfile:/workspace/Jenkinsfile jenkins4eval/jenkinsfile-runner
Jul 28, 2020 9:50:14 AM org.eclipse.jetty.util.log.Log initialized
INFO: Logging initialized @833ms to org.eclipse.jetty.util.log.Slf4jLog
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of com.thoughtworks.xstream.core.util.Fields
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
2020-07-28 09:50:20.210+0000 [id=1] WARNING j.branch.WorkspaceLocatorImpl#getWorkspaceRoot: JENKINS-2111 path sanitization ineffective when using legacy Workspace Root Directory ‘/build’; switch to ‘${JENKINS_HOME}/workspace/${ITEM_FULL_NAME}’ as in JENKINS-8446 / JENKINS-21942
2020-07-28 09:50:20.397+0000 [id=43] WARNING o.j.p.w.flow.FlowExecutionList#unregister: Owner[job/1:job #1] was not in the list to begin with: []
Started
....
Warn mode:
docker run --rm -e JAVA_OPTS="--illegal-access=warn" -v $(pwd)/Jenkinsfile:/workspace/Jenkinsfile jenkins4eval/jenkinsfile-runner
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.util.TreeMap.comparator
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.util.TreeSet.m
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.util.Properties.defaults
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.lang.reflect.Proxy.h
WARNING: Illegal reflective access by com.thoughtworks.xstream.converters.reflection.AbstractAttributedCharacterIteratorAttributeConverter (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to method java.text.AttributedCharacterIterator$Attribute.getName()
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.awt.font.TextAttribute.instanceMap
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.util.EnumSet.elementType
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/app/repo/org/jvnet/hudson/xstream/1.4.7-jenkins-1/xstream-1.4.7-jenkins-1.jar) to field java.util.EnumMap.keyType
WARNING: Illegal reflective access by jenkins.ClassLoaderReflectionToolkit (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.findClass(java.lang.String)
WARNING: Illegal reflective access by jenkins.ClassLoaderReflectionToolkit (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.findLoadedClass(java.lang.String)
WARNING: Illegal reflective access by jenkins.ClassLoaderReflectionToolkit (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.findResource(java.lang.String)
WARNING: Illegal reflective access by jenkins.ClassLoaderReflectionToolkit (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.findResources(java.lang.String)
WARNING: Illegal reflective access by jenkins.ClassLoaderReflectionToolkit (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.getClassLoadingLock(java.lang.String)
WARNING: Illegal reflective access by jenkins.model.AssetManager (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.findResource(java.lang.String)
WARNING: Illegal reflective access by hudson.ExtensionFinder$GuiceFinder$SezpozModule (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.resolveClass(java.lang.Class)
WARNING: Illegal reflective access by hudson.ExtensionFinder$GuiceFinder$SezpozModule (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.resolveClass(java.lang.Class)
WARNING: Illegal reflective access by hudson.ExtensionFinder$GuiceFinder$SezpozModule (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.resolveClass(java.lang.Class)
WARNING: Illegal reflective access by hudson.ExtensionFinder$GuiceFinder$SezpozModule (file:/app/repo/org/jenkins-ci/main/jenkins-core/2.235.2/jenkins-core-2.235.2.jar) to method java.lang.ClassLoader.resolveClass(java.lang.Class)
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$2 (file:/app/repo/com/google/inject/guice/4.0/guice-4.0.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Object.finalize()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Object.clone()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Object.registerNatives()
WARNING: Illegal reflective access by org.codehaus.groovy.vmplugin.v7.Java7$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.lang.invoke.MethodHandles$Lookup(java.lang.Class,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractCollection.hugeCapacity(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractCollection.finishToArray(java.lang.Object[],java.util.Iterator)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractList.subListRangeCheck(int,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractList.removeRange(int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractList.rangeCheckForAdd(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractList.outOfBoundsMsg(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.elementData(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.grow()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.grow(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.indexOfRange(java.lang.Object,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.lastIndexOfRange(java.lang.Object,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.elementAt(java.lang.Object[],int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.equalsRange(java.util.List,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.equalsArrayList(java.util.ArrayList)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.checkForComodification(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.hashCodeRange(int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.fastRemove(java.lang.Object[],int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.shiftTailOverGap(java.lang.Object[],int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.batchRemove(java.util.Collection,boolean,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.nBits(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.setBit(long[],int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.isClear(long[],int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.replaceAllRange(java.util.function.UnaryOperator,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.checkInvariants()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.add(java.lang.Object,java.lang.Object[],int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.readObject(java.io.ObjectInputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.writeObject(java.io.ObjectOutputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.newCapacity(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.hugeCapacity(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.removeIf(java.util.function.Predicate,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.removeRange(int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.rangeCheckForAdd(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.outOfBoundsMsg(int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.ArrayList.outOfBoundsMsg(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.AbstractCollection.MAX_ARRAY_SIZE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.AbstractList.modCount
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.ArrayList.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.ArrayList.DEFAULT_CAPACITY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.ArrayList.EMPTY_ELEMENTDATA
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.ArrayList.DEFAULTCAPACITY_EMPTY_ELEMENTDATA
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.ArrayList.elementData
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.ArrayList.size
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.ArrayList.MAX_ARRAY_SIZE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractMap.clone()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.AbstractMap.eq(java.lang.Object,java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.hash(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.readObject(java.io.ObjectInputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.writeObject(java.io.ObjectOutputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.loadFactor()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.tableSizeFor(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.capacity()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.resize()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.comparableClassFor(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.compareComparables(java.lang.Class,java.lang.Object,java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.putMapEntries(java.util.Map,boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.getNode(int,java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.putVal(int,java.lang.Object,java.lang.Object,boolean,boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.treeifyBin(java.util.HashMap$Node[],int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.removeNode(int,java.lang.Object,java.lang.Object,boolean,boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.newNode(int,java.lang.Object,java.lang.Object,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.replacementNode(java.util.HashMap$Node,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.newTreeNode(int,java.lang.Object,java.lang.Object,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.replacementTreeNode(java.util.HashMap$Node,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.reinitialize()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.afterNodeAccess(java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.afterNodeInsertion(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.afterNodeRemoval(java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashMap.internalWriteEntries(java.io.ObjectOutputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.removeEldestEntry(java.util.Map$Entry)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.linkNodeLast(java.util.LinkedHashMap$Entry)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.transferLinks(java.util.LinkedHashMap$Entry,java.util.LinkedHashMap$Entry)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.newNode(int,java.lang.Object,java.lang.Object,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.replacementNode(java.util.HashMap$Node,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.newTreeNode(int,java.lang.Object,java.lang.Object,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.replacementTreeNode(java.util.HashMap$Node,java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.reinitialize()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.afterNodeAccess(java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.afterNodeInsertion(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.afterNodeRemoval(java.util.HashMap$Node)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.LinkedHashMap.internalWriteEntries(java.io.ObjectOutputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.AbstractMap.keySet
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.AbstractMap.values
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.DEFAULT_INITIAL_CAPACITY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.MAXIMUM_CAPACITY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.DEFAULT_LOAD_FACTOR
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.TREEIFY_THRESHOLD
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.UNTREEIFY_THRESHOLD
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.MIN_TREEIFY_CAPACITY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.table
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.entrySet
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.size
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.modCount
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.threshold
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashMap.loadFactor
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.LinkedHashMap.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.LinkedHashMap.head
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.LinkedHashMap.tail
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.LinkedHashMap.accessOrder
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.newTable(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.maskNull(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.unmaskNull(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.indexFor(int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.expungeStaleEntries()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.getTable()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.removeMapping(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.containsNullValue()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.hash(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.resize(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.eq(java.lang.Object,java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.transfer(java.util.WeakHashMap$Entry[],java.util.WeakHashMap$Entry[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.WeakHashMap.getEntry(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.DEFAULT_INITIAL_CAPACITY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.MAXIMUM_CAPACITY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.DEFAULT_LOAD_FACTOR
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.table
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.size
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.threshold
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.loadFactor
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.queue
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.modCount
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.NULL_KEY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.WeakHashMap.entrySet
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashSet.readObject(java.io.ObjectInputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.HashSet.writeObject(java.io.ObjectOutputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashSet.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashSet.map
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.HashSet.PRESENT
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.LinkedHashSet.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.lang.System()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.initPhase1()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.initPhase2(boolean,boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.initPhase3()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.registerNatives()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.checkIO()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.setIn0(java.io.InputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.setOut0(java.io.PrintStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.setErr0(java.io.PrintStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.setSecurityManager0(java.lang.SecurityManager)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.initProperties(java.util.Properties)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.checkKey(java.lang.String)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.newPrintStream(java.io.FileOutputStream,java.lang.String)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.logInitException(boolean,boolean,java.lang.String,java.lang.Throwable)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.setJavaLangAccess()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.System.lambda$getLogger$0(java.lang.String,java.util.ResourceBundle,java.lang.Class)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.System.cons
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.System.props
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.System.lineSeparator
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.System.bootLayer
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.lang.String(char[],int,int,java.lang.Void)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.lang.String(java.lang.AbstractStringBuilder,java.lang.Void)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.lang.String(byte[],byte)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.CharSequence.lambda$codePoints$1()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.CharSequence.lambda$chars$0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.value()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.indexOf(byte[],byte,int,java.lang.String,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.checkIndex(int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.coder()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.rangeCheck(char[],int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.getBytes(byte[],int,byte)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.nonSyncContentEquals(java.lang.AbstractStringBuilder)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.lastIndexOf(byte[],byte,int,java.lang.String,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.indexOfNonWhitespace()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.isLatin1()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.checkOffset(int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.checkBoundsOffCount(int,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.checkBoundsBeginEnd(int,int,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.String.valueOfCodePoint(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.value
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.coder
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.hash
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.COMPACT_STRINGS
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.serialPersistentFields
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.LATIN1
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.String.UTF16
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.io.File(java.lang.String,java.io.File)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.io.File(java.lang.String,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.io.File.getPrefixLength()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.io.File.slashify(java.lang.String,boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.io.File.readObject(java.io.ObjectInputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.io.File.writeObject(java.io.ObjectOutputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.io.File.isInvalid()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.fs
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.path
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.status
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.prefixLength
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.UNSAFE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.PATH_OFFSET
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.PREFIX_LENGTH_OFFSET
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.filePath
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.io.File.$assertionsDisabled
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.lang.Class(java.lang.ClassLoader,java.lang.Class)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.reflect.AnnotatedElement.lambda$getDeclaredAnnotationsByType$0(java.lang.annotation.Annotation,java.lang.annotation.Annotation)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.checkPackageAccess(java.lang.SecurityManager,java.lang.ClassLoader,boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.forName0(java.lang.String,boolean,java.lang.ClassLoader,java.lang.Class)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.registerNatives()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.reflectionData()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.enumConstantDirectory()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.annotationData()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.initClassName()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getClassLoader0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getInterfaces(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getInterfaces0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.setSigners(java.lang.Object[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getEnclosingMethod0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getEnclosingMethodInfo()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.toClass(java.lang.reflect.Type)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getDeclaringClass0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getSimpleName0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getCanonicalName0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getSimpleBinaryName()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getSimpleBinaryName0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.isTopLevelClass()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.isLocalOrAnonymousClass()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.hasEnclosingMethodInfo()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getDeclaredPublicMethods(java.lang.String,java.lang.Class[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.isOpenToCaller(java.lang.String,java.lang.Class)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getProtectionDomain0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getPrimitiveClass(java.lang.String)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.checkMemberAccess(java.lang.SecurityManager,int,java.lang.Class,boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.resolveName(java.lang.String)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.newReflectionData(java.lang.ref.SoftReference,int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getGenericSignature0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getFactory()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getGenericInfo()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getRawAnnotations()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getRawTypeAnnotations()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getExecutableTypeAnnotationBytes(java.lang.reflect.Executable)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getConstantPool()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.privateGetDeclaredFields(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.privateGetPublicFields()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.addAll(java.util.Collection,java.lang.reflect.Field[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.privateGetDeclaredConstructors(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.privateGetDeclaredMethods(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.privateGetPublicMethods()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.searchFields(java.lang.reflect.Field[],java.lang.String)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getField0(java.lang.String)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.searchMethods(java.lang.reflect.Method[],java.lang.String,java.lang.Class[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getMethod0(java.lang.String,java.lang.Class[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getMethodsRecursive(java.lang.String,java.lang.Class[],boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getConstructor0(java.lang.Class[],int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.arrayContentsEq(java.lang.Object[],java.lang.Object[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.copyFields(java.lang.reflect.Field[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.copyMethods(java.lang.reflect.Method[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.copyConstructors(java.lang.reflect.Constructor[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getDeclaredFields0(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getDeclaredMethods0(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getDeclaredConstructors0(boolean)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getDeclaredClasses0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.methodToString(java.lang.String,java.lang.Class[])
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.desiredAssertionStatus0(java.lang.Class)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getReflectionFactory()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getEnumConstantsShared()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.cannotCastMsg(java.lang.Object)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.createAnnotationData(int)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.casAnnotationType(sun.reflect.annotation.AnnotationType,sun.reflect.annotation.AnnotationType)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getAnnotationType()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getDeclaredAnnotationMap()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getNestHost0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Class.getNestMembers0()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.ANNOTATION
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.ENUM
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.SYNTHETIC
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.cachedConstructor
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.newInstanceCallerCache
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.name
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.module
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.packageName
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.componentType
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.allPermDomain
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.reflectionData
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.classRedefinedCount
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.genericInfo
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.EMPTY_CLASS_ARRAY
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.serialVersionUID
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.serialPersistentFields
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.reflectionFactory
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.enumConstants
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.enumConstantDirectory
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.annotationData
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.annotationType
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Class.classValueMap
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to constructor java.util.concurrent.TimeUnit(java.lang.String,int,long)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Enum.finalize()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Enum.clone()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Enum.readObject(java.io.ObjectInputStream)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.lang.Enum.readObjectNoData()
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.concurrent.TimeUnit.cvt(long,long,long)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to method java.util.concurrent.TimeUnit.excessNanos(long,long)
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Enum.name
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.lang.Enum.ordinal
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.NANO_SCALE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.MICRO_SCALE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.MILLI_SCALE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.SECOND_SCALE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.MINUTE_SCALE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.HOUR_SCALE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.DAY_SCALE
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.scale
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.maxNanos
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.maxMicros
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.maxMillis
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.maxSecs
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.microRatio
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.milliRatio
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.secRatio
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/app/repo/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.jar) to field java.util.concurrent.TimeUnit.$VALUES