Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Carl Burke
Chuck:

I don't know what to tell you. When I told the Netbeans installer to use the 
JDK, it complained there was no JRE. When I pointed it at the JRE, it 
complained there was no JDK. It was only when I put a 'jre' folder into the JDK 
directory that the installer was happy and ran. I agree, the JDK has a jvm.dll 
in it, I don't have a clue why the installer would not work, anymore than I 
understand why the IDE won't launch without removing JShell from the 
configuration.

It might have been JAVA_HOME; I had to set that manually, and didn't get around 
to that until after installing Netbeans. PATH was updated automatically with 
both JDK and JRE bin directories, but JAVA_HOME was never set.

The AdoptOpenJDK distribution does not contain a JRE directory, I don't know 
where you're seeing one.

I'm not going to install 13, it's not the current LTS. I see no reason to 
change versions more frequently than every two years, especially if I want to 
maintain compatibility with my office work (which is still on 8, and rarely 
uses language features later than 6).

Out of curiosity, which version on Windows is on that old Windows box? This is 
Windows 10 Home 1809. It could be differences between Home and Pro, or between 
major releases, or something like that.


- Original Message -
From: "Chuck Davis" 
Cc: "users" 
Sent: Sunday, September 22, 2019 11:48:15 PM
Subject: Re: Netbeans 11 won't launch in Windows 10

Carl:

I just fired up an old Windows 10 box that I turn on every 3 to 4 months to
test my hypothesis.  Installed like a hot knife through butter.  The only
glitch might be you have to check @ installation of AdoptOpenJDK 13 to have
it modify the JAVA_HOME environment variable.  If you miss that (it should
be the default in my opinion) you might/will have a problem with NB (or
anything else java related) finding the JDK/JRE.  AdoptOpenJDK DOES have a
JRE/JVM in it.

On Sun, Sep 22, 2019 at 11:14 AM Carl Burke  wrote:

> I've got a brand new laptop, just installed AdoptOpenJDK 11 and Netbeans
> 11.1, and Netbeans will not launch in Windows 10 (1809). I have run
> previous versions of Netbeans on other Windows 10 systems, including with
> AdoptOpenJDK, but those were with Java 8 and earlier releases of both
> Netbeans and Windows 10.
>
> There were some issues getting the installer to run: since AdoptOpenJDK
> does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> from it's separate installation so that the installer would find both the
> JRE and the JDK. However, after that was done the installer appeared to
> work fine.
>
> When I try to launch Netbeans 11 by clicking the desktop icon, nothing
> visible happens. When I open a command shell and run .\netbeans64.exe from
> the Netbeans bin directory, I get:
> <<
> Error occurred during initialization of boot layer
> java.lang.module.FindException: Module jdk.jshell not found
> >>
> This happens whether I add --jdkhome "C:\Program
> Files\AdoptOpenJDK\jdk-11.0.4.11-hotspot" to the command or not;
> netbeans.conf has the uncommented correct value.
>
> Typing jshell in that directory opens JShell 11.0.4, for whatever that's
> worth.
>
> There is no {user}\AppData\Roaming\Netbeans directory, so no log output to
> be had, possibly because the IDE never gets that far.
>
> Any suggestions how I might run Netbeans in this version of Windows 10? Do
> I need to fall back to Java 8 and an earlier Netbeans as well?
>
> --
> Carl Burke
> cdbu...@his.com
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Carl Burke
Chuck,

It seems to be true. I downloaded the zip files for both JDK 11 and JDK 13, to 
see exactly what files were included without needing to run any installer 
again. Even though the name specifies 'hotspot' for the JVM, neither of those 
JDK distributions contain a jre directory. The JRE is packaged separately and 
requires a separate download (from the same page, they make it easy to get, 
they just don't follow the original Sun directory structure that the Netbeans 
installer expects.)

Reviewing all of the current releases from AdoptOpenJDK, JDK 8 was the last JDK 
that included a jre folder within the JDK distribution. JDK 9 and higher 
distribute them entirely separately. That's probably a cleaner way to do it, 
only one copy of the JRE instead of two, but it causes a problem for apps that 
depend on a particular directory structure.


- Original Message -
From: "Chuck Davis" 
Cc: "users" 
Sent: Sunday, September 22, 2019 11:03:08 PM
Subject: Re: Netbeans 11 won't launch in Windows 10

Carl:

Can this possibly be true?  I just visited the site and you must choose
which JVM you wish to install.  AdoptOpenJDK would not be used by anyone if
there is no JRE in it.  Sounds to me like your install is screwed-up.  Can
you upgrade to version JDK 13, reinstall NB 11.1 and see what happens?  I
don't work with Windows but I cannot conceive that AdoptOpenJDK would not
have a JRE to make it usable.

There were some issues getting the installer to run: since AdoptOpenJDK
> does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> from it's separate installation so that the installer would find both the
> JRE and the JDK. However, after that was done the installer appeared to
> work fine.
>
>

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Chuck Davis
Carl:

I just fired up an old Windows 10 box that I turn on every 3 to 4 months to
test my hypothesis.  Installed like a hot knife through butter.  The only
glitch might be you have to check @ installation of AdoptOpenJDK 13 to have
it modify the JAVA_HOME environment variable.  If you miss that (it should
be the default in my opinion) you might/will have a problem with NB (or
anything else java related) finding the JDK/JRE.  AdoptOpenJDK DOES have a
JRE/JVM in it.

On Sun, Sep 22, 2019 at 11:14 AM Carl Burke  wrote:

> I've got a brand new laptop, just installed AdoptOpenJDK 11 and Netbeans
> 11.1, and Netbeans will not launch in Windows 10 (1809). I have run
> previous versions of Netbeans on other Windows 10 systems, including with
> AdoptOpenJDK, but those were with Java 8 and earlier releases of both
> Netbeans and Windows 10.
>
> There were some issues getting the installer to run: since AdoptOpenJDK
> does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> from it's separate installation so that the installer would find both the
> JRE and the JDK. However, after that was done the installer appeared to
> work fine.
>
> When I try to launch Netbeans 11 by clicking the desktop icon, nothing
> visible happens. When I open a command shell and run .\netbeans64.exe from
> the Netbeans bin directory, I get:
> <<
> Error occurred during initialization of boot layer
> java.lang.module.FindException: Module jdk.jshell not found
> >>
> This happens whether I add --jdkhome "C:\Program
> Files\AdoptOpenJDK\jdk-11.0.4.11-hotspot" to the command or not;
> netbeans.conf has the uncommented correct value.
>
> Typing jshell in that directory opens JShell 11.0.4, for whatever that's
> worth.
>
> There is no {user}\AppData\Roaming\Netbeans directory, so no log output to
> be had, possibly because the IDE never gets that far.
>
> Any suggestions how I might run Netbeans in this version of Windows 10? Do
> I need to fall back to Java 8 and an earlier Netbeans as well?
>
> --
> Carl Burke
> cdbu...@his.com
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Netbeans 11.1 Javadoc in external browser

2019-09-22 Thread César García
Hi,

Netbeans does not display Javadoc from the Maven repository in Windows
10 in the extarnal browser.

The rerror that show the server is "Error: 500"

Try on a Linux VM and it showed the Javadoc without problems.

Thanks for any help you can provide,

Bestregards,



Libre
de virus. www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>


Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Carl Burke
Thanks, but I'm not going to install and learn Scala just to figure out why 
Netbeans can't find jdk.jshell.

I'm able to get the Netbeans IDE to startup by removing both references to 
JShell from netbeans.conf. It's something I've never used in the past, so I'm 
not going to miss it as long as Netbeans hasn't made it an integral part of the 
infrastructure. If it has, I'm going to have to use Eclipse; not my preferred 
choice, but at least it runs without issue.


- Original Message -
From: "Alonso Del Arte" 
To: "Carl Burke" 
Cc: "users" 
Sent: Sunday, September 22, 2019 10:40:00 PM
Subject: Re: Netbeans 11 won't launch in Windows 10

Not sure if this will help any, but here goes: I would use the Scala REPL
to see if I can get some information about the FindException, like maybe
the stack trace, or maybe a prefiguring cause. Maybe this can be done
through JShell...

Al

On Sun, Sep 22, 2019 at 8:08 PM Carl Burke  wrote:

> I did as you suggested and unzipped the ZIP file. I get the same error:
>
> Error occurred during initialization of boot layer
> java.lang.module.FindException: Module jdk.jshell not found
>
> I have never heard of jshell before, but when I'm in the netbeans\bin
> directory I can run it, so it's clearly present in the system.
> It just isn't found by netbeans64.exe.
>
>
> - Original Message -
> From: "Geertjan Wielenga" 
> To: "Carl Burke" 
> Cc: "users" 
> Sent: Sunday, September 22, 2019 3:00:15 PM
> Subject: Re: Netbeans 11 won't launch in Windows 10
>
> Nothing needs to be moved or separated when you use the installer. I’d
> recommend you start from scratch with 11.1, if you’re having problems with
> the installer, unzip the ZIP file instead.
>
> Gj
>
> On Sun, 22 Sep 2019 at 20:14, Carl Burke  wrote:
>
> > I've got a brand new laptop, just installed AdoptOpenJDK 11 and Netbeans
> > 11.1, and Netbeans will not launch in Windows 10 (1809). I have run
> > previous versions of Netbeans on other Windows 10 systems, including with
> > AdoptOpenJDK, but those were with Java 8 and earlier releases of both
> > Netbeans and Windows 10.
> >
> > There were some issues getting the installer to run: since AdoptOpenJDK
> > does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> > from it's separate installation so that the installer would find both the
> > JRE and the JDK. However, after that was done the installer appeared to
> > work fine.
> >
> > When I try to launch Netbeans 11 by clicking the desktop icon, nothing
> > visible happens. When I open a command shell and run .\netbeans64.exe
> from
> > the Netbeans bin directory, I get:
> > <<
> > Error occurred during initialization of boot layer
> > java.lang.module.FindException: Module jdk.jshell not found
> > >>
> > This happens whether I add --jdkhome "C:\Program
> > Files\AdoptOpenJDK\jdk-11.0.4.11-hotspot" to the command or not;
> > netbeans.conf has the uncommented correct value.
> >
> > Typing jshell in that directory opens JShell 11.0.4, for whatever that's
> > worth.
> >
> > There is no {user}\AppData\Roaming\Netbeans directory, so no log output
> to
> > be had, possibly because the IDE never gets that far.
> >
> > Any suggestions how I might run Netbeans in this version of Windows 10?
> Do
> > I need to fall back to Java 8 and an earlier Netbeans as well?
> >
> > --
> > Carl Burke
> > cdbu...@his.com
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> > For additional commands, e-mail: users-h...@netbeans.apache.org
> >
> > For further information about the NetBeans mailing lists, visit:
> > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>

-- 
Alonso del Arte
Author at SmashWords.com

Musician at ReverbNation.com 

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Chuck Davis
Carl:

Can this possibly be true?  I just visited the site and you must choose
which JVM you wish to install.  AdoptOpenJDK would not be used by anyone if
there is no JRE in it.  Sounds to me like your install is screwed-up.  Can
you upgrade to version JDK 13, reinstall NB 11.1 and see what happens?  I
don't work with Windows but I cannot conceive that AdoptOpenJDK would not
have a JRE to make it usable.

There were some issues getting the installer to run: since AdoptOpenJDK
> does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> from it's separate installation so that the installer would find both the
> JRE and the JDK. However, after that was done the installer appeared to
> work fine.
>
>


Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Alonso Del Arte
Not sure if this will help any, but here goes: I would use the Scala REPL
to see if I can get some information about the FindException, like maybe
the stack trace, or maybe a prefiguring cause. Maybe this can be done
through JShell...

Al

On Sun, Sep 22, 2019 at 8:08 PM Carl Burke  wrote:

> I did as you suggested and unzipped the ZIP file. I get the same error:
>
> Error occurred during initialization of boot layer
> java.lang.module.FindException: Module jdk.jshell not found
>
> I have never heard of jshell before, but when I'm in the netbeans\bin
> directory I can run it, so it's clearly present in the system.
> It just isn't found by netbeans64.exe.
>
>
> - Original Message -
> From: "Geertjan Wielenga" 
> To: "Carl Burke" 
> Cc: "users" 
> Sent: Sunday, September 22, 2019 3:00:15 PM
> Subject: Re: Netbeans 11 won't launch in Windows 10
>
> Nothing needs to be moved or separated when you use the installer. I’d
> recommend you start from scratch with 11.1, if you’re having problems with
> the installer, unzip the ZIP file instead.
>
> Gj
>
> On Sun, 22 Sep 2019 at 20:14, Carl Burke  wrote:
>
> > I've got a brand new laptop, just installed AdoptOpenJDK 11 and Netbeans
> > 11.1, and Netbeans will not launch in Windows 10 (1809). I have run
> > previous versions of Netbeans on other Windows 10 systems, including with
> > AdoptOpenJDK, but those were with Java 8 and earlier releases of both
> > Netbeans and Windows 10.
> >
> > There were some issues getting the installer to run: since AdoptOpenJDK
> > does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> > from it's separate installation so that the installer would find both the
> > JRE and the JDK. However, after that was done the installer appeared to
> > work fine.
> >
> > When I try to launch Netbeans 11 by clicking the desktop icon, nothing
> > visible happens. When I open a command shell and run .\netbeans64.exe
> from
> > the Netbeans bin directory, I get:
> > <<
> > Error occurred during initialization of boot layer
> > java.lang.module.FindException: Module jdk.jshell not found
> > >>
> > This happens whether I add --jdkhome "C:\Program
> > Files\AdoptOpenJDK\jdk-11.0.4.11-hotspot" to the command or not;
> > netbeans.conf has the uncommented correct value.
> >
> > Typing jshell in that directory opens JShell 11.0.4, for whatever that's
> > worth.
> >
> > There is no {user}\AppData\Roaming\Netbeans directory, so no log output
> to
> > be had, possibly because the IDE never gets that far.
> >
> > Any suggestions how I might run Netbeans in this version of Windows 10?
> Do
> > I need to fall back to Java 8 and an earlier Netbeans as well?
> >
> > --
> > Carl Burke
> > cdbu...@his.com
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> > For additional commands, e-mail: users-h...@netbeans.apache.org
> >
> > For further information about the NetBeans mailing lists, visit:
> > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>

-- 
Alonso del Arte
Author at SmashWords.com

Musician at ReverbNation.com 


Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Carl Burke
I did as you suggested and unzipped the ZIP file. I get the same error:

Error occurred during initialization of boot layer
java.lang.module.FindException: Module jdk.jshell not found

I have never heard of jshell before, but when I'm in the netbeans\bin
directory I can run it, so it's clearly present in the system.
It just isn't found by netbeans64.exe.


- Original Message -
From: "Geertjan Wielenga" 
To: "Carl Burke" 
Cc: "users" 
Sent: Sunday, September 22, 2019 3:00:15 PM
Subject: Re: Netbeans 11 won't launch in Windows 10

Nothing needs to be moved or separated when you use the installer. I’d
recommend you start from scratch with 11.1, if you’re having problems with
the installer, unzip the ZIP file instead.

Gj

On Sun, 22 Sep 2019 at 20:14, Carl Burke  wrote:

> I've got a brand new laptop, just installed AdoptOpenJDK 11 and Netbeans
> 11.1, and Netbeans will not launch in Windows 10 (1809). I have run
> previous versions of Netbeans on other Windows 10 systems, including with
> AdoptOpenJDK, but those were with Java 8 and earlier releases of both
> Netbeans and Windows 10.
>
> There were some issues getting the installer to run: since AdoptOpenJDK
> does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> from it's separate installation so that the installer would find both the
> JRE and the JDK. However, after that was done the installer appeared to
> work fine.
>
> When I try to launch Netbeans 11 by clicking the desktop icon, nothing
> visible happens. When I open a command shell and run .\netbeans64.exe from
> the Netbeans bin directory, I get:
> <<
> Error occurred during initialization of boot layer
> java.lang.module.FindException: Module jdk.jshell not found
> >>
> This happens whether I add --jdkhome "C:\Program
> Files\AdoptOpenJDK\jdk-11.0.4.11-hotspot" to the command or not;
> netbeans.conf has the uncommented correct value.
>
> Typing jshell in that directory opens JShell 11.0.4, for whatever that's
> worth.
>
> There is no {user}\AppData\Roaming\Netbeans directory, so no log output to
> be had, possibly because the IDE never gets that far.
>
> Any suggestions how I might run Netbeans in this version of Windows 10? Do
> I need to fall back to Java 8 and an earlier Netbeans as well?
>
> --
> Carl Burke
> cdbu...@his.com
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: [ install ] Not sure I have correct download of NetBeans

2019-09-22 Thread Emilian Bold
> Beginning in macOS 10.14.5, all new or updated kernel extensions and all
software from developers new to distributing with Developer ID must be
notarized in order to run. Beginning in macOS 10.15, notarization is
required by default for all software.

10.14.5 was released on May 13, 2019 and the 8.2 installer is signed by
Oracle (but not notarized) which is why it went well for you as I assume
you did the install before May.

The current macOS installer is signed by the ASF but not notarized...

--emi

dum., 22 sept. 2019, 21:52 Alonso Del Arte  a
scris:

> Last week, Geertjan Wielenga helped me resolve a NetBeans 8.2 problem I
> was having with the Kotlin plugin on my MacBook Air.
>
> Then he suggested I upgrade to NetBeans 11.1. I downloaded the ZIP file
> and expanded it. In the bin folder, there are three executable files,
> though two of them are for Windows.
>
> When I click on the first file, identified as a "Unix executable," I get
> this message:
>
>
> *“netbeans” can’t be opened because it is from an unidentified developer.*
>
>
> Your security preferences allow installation of only apps from the App
> Store and identified developers.
>
>
> Opera downloaded this file on September 19, 2019 from *mirror.olnevhost.net
> *.
>
>
> The OS is Mac OS Mojave 10.14.6. I can certainly go into System
> Preferences and tell it to open NetBeans 11.1 anyway. I could also relax
> the security preferences. But maybe some caution is warranted, and I don't
> recall having to do this with NetBeans 8.2 earlier this year (or maybe I
> did but I don't remember now).
>
> Geertjan says there's no need to change or override any security settings.
> Did I take a wrong turn somewhere?
>
> Al
>
> --
> Alonso del Arte
> Author at SmashWords.com
> 
> Musician at ReverbNation.com 
>


Re: [ install ] Not sure I have correct download of NetBeans

2019-09-22 Thread David Green
I find that I have to right-click open on these files. I then get a dialog
telling me where it was downloaded from and do I want to open it. After
confirming, things run and macOS remembers I have  blessed it to execute
and other launch mechanisms work now. This behavior occurs for most code
not from the Apple store.
-- 
Sent from a mobile device. Please excuse any typos.


Re: Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Geertjan Wielenga
Nothing needs to be moved or separated when you use the installer. I’d
recommend you start from scratch with 11.1, if you’re having problems with
the installer, unzip the ZIP file instead.

Gj

On Sun, 22 Sep 2019 at 20:14, Carl Burke  wrote:

> I've got a brand new laptop, just installed AdoptOpenJDK 11 and Netbeans
> 11.1, and Netbeans will not launch in Windows 10 (1809). I have run
> previous versions of Netbeans on other Windows 10 systems, including with
> AdoptOpenJDK, but those were with Java 8 and earlier releases of both
> Netbeans and Windows 10.
>
> There were some issues getting the installer to run: since AdoptOpenJDK
> does not bundle a JRE under the JDK, the JRE had to be moved and renamed
> from it's separate installation so that the installer would find both the
> JRE and the JDK. However, after that was done the installer appeared to
> work fine.
>
> When I try to launch Netbeans 11 by clicking the desktop icon, nothing
> visible happens. When I open a command shell and run .\netbeans64.exe from
> the Netbeans bin directory, I get:
> <<
> Error occurred during initialization of boot layer
> java.lang.module.FindException: Module jdk.jshell not found
> >>
> This happens whether I add --jdkhome "C:\Program
> Files\AdoptOpenJDK\jdk-11.0.4.11-hotspot" to the command or not;
> netbeans.conf has the uncommented correct value.
>
> Typing jshell in that directory opens JShell 11.0.4, for whatever that's
> worth.
>
> There is no {user}\AppData\Roaming\Netbeans directory, so no log output to
> be had, possibly because the IDE never gets that far.
>
> Any suggestions how I might run Netbeans in this version of Windows 10? Do
> I need to fall back to Java 8 and an earlier Netbeans as well?
>
> --
> Carl Burke
> cdbu...@his.com
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: [ install ] Not sure I have correct download of NetBeans

2019-09-22 Thread Geertjan Wielenga
You can use the installer instead of the ZIP, see the Download page on
netbeans.apache.org. That should avoid this problem.

Gj

On Sun, 22 Sep 2019 at 20:52, Alonso Del Arte 
wrote:

> Last week, Geertjan Wielenga helped me resolve a NetBeans 8.2 problem I
> was having with the Kotlin plugin on my MacBook Air.
>
> Then he suggested I upgrade to NetBeans 11.1. I downloaded the ZIP file
> and expanded it. In the bin folder, there are three executable files,
> though two of them are for Windows.
>
> When I click on the first file, identified as a "Unix executable," I get
> this message:
>
>
> *“netbeans” can’t be opened because it is from an unidentified developer.*
>
>
> Your security preferences allow installation of only apps from the App
> Store and identified developers.
>
>
> Opera downloaded this file on September 19, 2019 from *mirror.olnevhost.net
> *.
>
>
> The OS is Mac OS Mojave 10.14.6. I can certainly go into System
> Preferences and tell it to open NetBeans 11.1 anyway. I could also relax
> the security preferences. But maybe some caution is warranted, and I don't
> recall having to do this with NetBeans 8.2 earlier this year (or maybe I
> did but I don't remember now).
>
> Geertjan says there's no need to change or override any security settings.
> Did I take a wrong turn somewhere?
>
> Al
>
> --
> Alonso del Arte
> Author at SmashWords.com
> 
> Musician at ReverbNation.com 
>


[ install ] Not sure I have correct download of NetBeans

2019-09-22 Thread Alonso Del Arte
Last week, Geertjan Wielenga helped me resolve a NetBeans 8.2 problem I was
having with the Kotlin plugin on my MacBook Air.

Then he suggested I upgrade to NetBeans 11.1. I downloaded the ZIP file and
expanded it. In the bin folder, there are three executable files, though
two of them are for Windows.

When I click on the first file, identified as a "Unix executable," I get
this message:


*“netbeans” can’t be opened because it is from an unidentified developer.*


Your security preferences allow installation of only apps from the App
Store and identified developers.


Opera downloaded this file on September 19, 2019 from *mirror.olnevhost.net
*.


The OS is Mac OS Mojave 10.14.6. I can certainly go into System Preferences
and tell it to open NetBeans 11.1 anyway. I could also relax the security
preferences. But maybe some caution is warranted, and I don't recall having
to do this with NetBeans 8.2 earlier this year (or maybe I did but I don't
remember now).

Geertjan says there's no need to change or override any security settings.
Did I take a wrong turn somewhere?

Al

-- 
Alonso del Arte
Author at SmashWords.com

Musician at ReverbNation.com 


Netbeans 11 won't launch in Windows 10

2019-09-22 Thread Carl Burke
I've got a brand new laptop, just installed AdoptOpenJDK 11 and Netbeans 11.1, 
and Netbeans will not launch in Windows 10 (1809). I have run previous versions 
of Netbeans on other Windows 10 systems, including with AdoptOpenJDK, but those 
were with Java 8 and earlier releases of both Netbeans and Windows 10.

There were some issues getting the installer to run: since AdoptOpenJDK does 
not bundle a JRE under the JDK, the JRE had to be moved and renamed from it's 
separate installation so that the installer would find both the JRE and the 
JDK. However, after that was done the installer appeared to work fine.

When I try to launch Netbeans 11 by clicking the desktop icon, nothing visible 
happens. When I open a command shell and run .\netbeans64.exe from the Netbeans 
bin directory, I get:
<<
Error occurred during initialization of boot layer
java.lang.module.FindException: Module jdk.jshell not found
>>
This happens whether I add --jdkhome "C:\Program 
Files\AdoptOpenJDK\jdk-11.0.4.11-hotspot" to the command or not; netbeans.conf 
has the uncommented correct value.

Typing jshell in that directory opens JShell 11.0.4, for whatever that's worth.

There is no {user}\AppData\Roaming\Netbeans directory, so no log output to be 
had, possibly because the IDE never gets that far.

Any suggestions how I might run Netbeans in this version of Windows 10? Do I 
need to fall back to Java 8 and an earlier Netbeans as well?

-- 
Carl Burke
cdbu...@his.com

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Grahical Git Browser?

2019-09-22 Thread Peter Nabbefeld



Hello,

is there any graphical GUI browser plugin available/planned, like in
Eclipse or IntelliJ?

Kind regards
Peter

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists