RE: [ANNOUNCE] Apache Groovy 3.0.0-beta-1 Released

2019-05-13 Thread Kerridge, Jon
Hi, I am using groovy 3 beta 1 with open Java 12 using Intellij and got the following warning: WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.codehaus.groovy.reflection.ReflectionUtils (file:/C:/Users/JonKe/.gradle/caches/modules-2/files-2

Re: [ANNOUNCE] Apache Groovy 3.0.0-beta-1 Released

2019-05-13 Thread Paul King
Hi Jon, How is the clone being invoked? We have 3 Jira issues covering illegal access warnings and two are fixed in beta-1. I can't tell just from the clone method definition whether your case might fall into the third Jira which covers some tricky cases. Cheers, Paul. On Tue, May 14, 2019 at 6

RE: [ANNOUNCE] Apache Groovy 3.0.0-beta-1 Released

2019-05-13 Thread Daniel Sun
Please add ` --illegal-access=debug` to JVM options and show us the complete warning(including statck trace). Cheers, Daniel.Sun -- Sent from: http://groovy.329449.n5.nabble.com/Groovy-Dev-f372993.html

TeamCity ci server

2019-05-13 Thread Paul King
I upgraded the TeamCity CI server to the latest version - let me know if you spot anything weird. Cheers, Paul.

Re: TeamCity ci server

2019-05-13 Thread Paul King
There is also now a JDK11 agent. I may retire the JDK9 agent and perhaps add JDK12/13 in due course. Also, a word of warning (mainly just to get this bit of information out of just my head). The JDK6 JDK is now getting very old. We should retire the corresponding agent soon but in the meantime, if

RE: [ANNOUNCE] Apache Groovy 3.0.0-beta-1 Released

2019-05-13 Thread Kerridge, Jon
Hi, The code for the clone is called as follows from a class called ChannelOutputList class ChannelOutputList { List cList = [] …. Lots of other methods void broadcastSeq ( Object value) { int channels = cList.size() for (i in 0 ..< channels) cList[i].wr