Re: Gradle project created by Grails has error on load

2018-04-16 Thread Thomas Kazakoff
Possibly, but we don't know much about your setup environment. To eliminate possibilities, could you try building your project via the terminal only, and detail your system for us. Thanks On Tue, Apr 17, 2018 at 2:10 AM, Matthias Barmeier wrote: > Hi, > > I have set platform for the project an

Re: Gradle project created by Grails has error on load

2018-04-16 Thread Matthias Barmeier
Hi, I have set platform for the project and the subproject to jdk1.8 shouldn’t it work when I set the platform to jdk1.8 ? Is this a bug in the grails plugin ? Ciao Matze > Am 16.04.2018 um 09:22 schrieb Thomas Kazakoff : > > > "Grails 3.3.2 does not support Java 9", but "you can compile

Re: Gradle project created by Grails has error on load

2018-04-16 Thread Paul Franz
My guess is that Gradle 3.4.x does not recognize the new java version. From Java 1.0 to Java 8.0. The version string has always been 1.x. So for JDK 8 the version string is actually 1.8 not 8.0. In JDK 9, this was change (URL: https://blogs.oracle.com/java-platform-group/a-new-jdk-9-version-str

Re: Programmatically select a node after being created

2018-04-16 Thread Marco Rossi
Ok, I decided to subclass my beanTreeView. public final class LibraryViewerTopComponent extends TopComponent implements ExplorerManager.Provider { private final ExplorerManager explorerManager = new ExplorerManager(); private BeanTreeView beanTreeView; private fin