Thanks Sven, I am not using eclipse. This message saying "Eclipse OpenJ9" is from the commandline using maven:
$ mvn -version > Listening for transport dt_socket at address: 8787 > Apache Maven 3.6.1 (d66c9c0b3152b2e69ee9bac180bb8fcc8e6af555; > 2019-04-04T21:00:29+02:00) > Maven home: /usr/local/Cellar/maven/3.6.1/libexec > Java version: 11.0.3, vendor: Eclipse OpenJ9, runtime: > /Library/Java/JavaVirtualMachines/adoptopenjdk-11-openj9.jdk/Contents/Home > Default locale: en_US, platform encoding: US-ASCII > OS name: "mac os x", version: "10.14.6", arch: "amd64", family: "mac" > On Wed, Sep 4, 2019 at 8:47 AM Sven Linscheid < [email protected]> wrote: > Hello Daan, > > AdoptOpenJDK — prebuilt OpenJDK binaries maintained by community > > That you're lodaing OpenJ9 instead or OpenJ11 seems to be an configuration > error or project setting error for you'r environment. > > Simply watch this video to change the setting for the project: > https://www.youtube.com/watch?v=S5xeXawYgK0 > > Or, if you prefer to read through text informations: > > Open eclipse config file eclipse.ini in your Eclipse folder. > > Add -vm yourPath\Java\jre6\bin\javaw.exe like: > -startup > plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar > --launcher.library > > plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813 > -product > org.eclipse.epp.package.java.product > --launcher.defaultAction > openFile > --launcher.XXMaxPermSize > 256M > -vm > C:\Java\jre6\bin\javaw.exe > ... > > > If the path contains spaces there is no need to escape them, see the > Eclipse Wiki > for more specs. The -vm option and the path must be on separate lines. The > -vm > option must come before the -vmargs option. On Linux, the path would > typically be > /bin/java instead of the Windows path shown above. You must use the Java > and Eclipse > versions must match (i.e. 32-bit Eclipse runs on 32-bit Java and 64-bit > Eclipse > runs on 64-bit Java). > > If you're running eclipse at Linux base you should get and check you > /etc/profile setting for java path. > > Good luck and happy coding. > > *Sven Linscheid* > Systembetreuung ITSM / IDM > > *Identity & Access Management / assyst-Betrieb* > *EDEKA Minden-Hannover IT-Service GmbH* > > <snip> > > > Von: "Daan Hoogland" <[email protected]> > An: "Apache Directory Developers List" <[email protected]> > Datum: 03.09.2019 22:10 > Betreff: Re: build error > ------------------------------ > > > > Thanks Stefan, > I'm using 'adoptopenjdk-11' and didn't realize it calls itself OpenJ9. > Is adding the vendor as trivial as it seems (adding the conditional > branch for the vendor) or should I add some extra functionality somewhere > to 'truly' support it? > ..... > </snip> -- Daan
