svn commit: r35034 - /dev/netbeans/netbeans/11.1/ /release/netbeans/netbeans/11.1/

2019-07-26 Thread rtaneja
Author: rtaneja
Date: Sat Jul 27 01:53:09 2019
New Revision: 35034

Log:
Apache NetBeans 11.1 installers

Added:
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.asc
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.asc
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.sha512
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.sha512
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.asc
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.asc
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.sha512
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.sha512
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe
release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.asc
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.asc

release/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.sha512
  - copied unchanged from r35033, 
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.sha512
Removed:
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.asc
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.sha512
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.asc
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.sha512
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.asc
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.sha512


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

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



[jira] [Comment Edited] (NETBEANS-52) PHP7.1 Nullable type's use statement unrecognized

2019-07-26 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16894204#comment-16894204
 ] 

Junichi Yamamoto edited comment on NETBEANS-52 at 7/27/19 12:09 AM:


I can't reproduce it in NetBeans 11.0 and 11.1.

!netbeans-52-screenshot.png!

So, will close.


was (Author: junichi11):
I can't reproduce it in NetBeans 11.0.

!netbeans-52-screenshot.png!

So, will close.

> PHP7.1 Nullable type's use statement unrecognized
> -
>
> Key: NETBEANS-52
> URL: https://issues.apache.org/jira/browse/NETBEANS-52
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 9.0, Next
> Environment: Ubuntu 16.04.3 - Linux 4.4.0-92-generic
> openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ádám Turcsán
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: features
> Attachments: netbeans-52-screenshot.png
>
>
> There's a new PHP7.1 implementation in the nightly builds.
> As I was using the new features I recognized that if a used type is used only 
> in nullable cases, like below, NetBeans marks it as "Unused Use Statement":
> {code:php}
>  use \Psr\Log\LoggerInterface as Logger;
> class Example {
> /**
>  * @var ?Logger
>  */
> private $logger;
> public function __construct(?Logger $logger)
> {
> $this->logger = $logger;
> }
> private function getLogger(): ?Logger
> {
> return $this->logger;
> }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-52) PHP7.1 Nullable type's use statement unrecognized

2019-07-26 Thread Junichi Yamamoto (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Junichi Yamamoto updated NETBEANS-52:
-
Component/s: (was: php - Code)
 php - Editor

> PHP7.1 Nullable type's use statement unrecognized
> -
>
> Key: NETBEANS-52
> URL: https://issues.apache.org/jira/browse/NETBEANS-52
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 9.0, Next
> Environment: Ubuntu 16.04.3 - Linux 4.4.0-92-generic
> openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ádám Turcsán
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: features
> Attachments: netbeans-52-screenshot.png
>
>
> There's a new PHP7.1 implementation in the nightly builds.
> As I was using the new features I recognized that if a used type is used only 
> in nullable cases, like below, NetBeans marks it as "Unused Use Statement":
> {code:php}
>  use \Psr\Log\LoggerInterface as Logger;
> class Example {
> /**
>  * @var ?Logger
>  */
> private $logger;
> public function __construct(?Logger $logger)
> {
> $this->logger = $logger;
> }
> private function getLogger(): ?Logger
> {
> return $this->logger;
> }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-52) PHP7.1 Nullable type's use statement unrecognized

2019-07-26 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16894204#comment-16894204
 ] 

Junichi Yamamoto commented on NETBEANS-52:
--

I can't reproduce it in NetBeans 11.0.

!netbeans-52-screenshot.png!

So, will close.

> PHP7.1 Nullable type's use statement unrecognized
> -
>
> Key: NETBEANS-52
> URL: https://issues.apache.org/jira/browse/NETBEANS-52
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code
>Affects Versions: 9.0, Next
> Environment: Ubuntu 16.04.3 - Linux 4.4.0-92-generic
> openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ádám Turcsán
>Priority: Major
>  Labels: features
> Attachments: netbeans-52-screenshot.png
>
>
> There's a new PHP7.1 implementation in the nightly builds.
> As I was using the new features I recognized that if a used type is used only 
> in nullable cases, like below, NetBeans marks it as "Unused Use Statement":
> {code:php}
>  use \Psr\Log\LoggerInterface as Logger;
> class Example {
> /**
>  * @var ?Logger
>  */
> private $logger;
> public function __construct(?Logger $logger)
> {
> $this->logger = $logger;
> }
> private function getLogger(): ?Logger
> {
> return $this->logger;
> }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Resolved] (NETBEANS-52) PHP7.1 Nullable type's use statement unrecognized

2019-07-26 Thread Junichi Yamamoto (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Junichi Yamamoto resolved NETBEANS-52.
--
Resolution: Cannot Reproduce
  Assignee: Junichi Yamamoto

> PHP7.1 Nullable type's use statement unrecognized
> -
>
> Key: NETBEANS-52
> URL: https://issues.apache.org/jira/browse/NETBEANS-52
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code
>Affects Versions: 9.0, Next
> Environment: Ubuntu 16.04.3 - Linux 4.4.0-92-generic
> openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ádám Turcsán
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: features
> Attachments: netbeans-52-screenshot.png
>
>
> There's a new PHP7.1 implementation in the nightly builds.
> As I was using the new features I recognized that if a used type is used only 
> in nullable cases, like below, NetBeans marks it as "Unused Use Statement":
> {code:php}
>  use \Psr\Log\LoggerInterface as Logger;
> class Example {
> /**
>  * @var ?Logger
>  */
> private $logger;
> public function __construct(?Logger $logger)
> {
> $this->logger = $logger;
> }
> private function getLogger(): ?Logger
> {
> return $this->logger;
> }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-52) PHP7.1 Nullable type's use statement unrecognized

2019-07-26 Thread Junichi Yamamoto (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Junichi Yamamoto updated NETBEANS-52:
-
Attachment: netbeans-52-screenshot.png

> PHP7.1 Nullable type's use statement unrecognized
> -
>
> Key: NETBEANS-52
> URL: https://issues.apache.org/jira/browse/NETBEANS-52
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code
>Affects Versions: 9.0, Next
> Environment: Ubuntu 16.04.3 - Linux 4.4.0-92-generic
> openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ádám Turcsán
>Priority: Major
>  Labels: features
> Attachments: netbeans-52-screenshot.png
>
>
> There's a new PHP7.1 implementation in the nightly builds.
> As I was using the new features I recognized that if a used type is used only 
> in nullable cases, like below, NetBeans marks it as "Unused Use Statement":
> {code:php}
>  use \Psr\Log\LoggerInterface as Logger;
> class Example {
> /**
>  * @var ?Logger
>  */
> private $logger;
> public function __construct(?Logger $logger)
> {
> $this->logger = $logger;
> }
> private function getLogger(): ?Logger
> {
> return $this->logger;
> }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-181) NetBeans should be aware of WSL (Ubuntu on Windows 10)

2019-07-26 Thread Laszlo Kishalmi (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16894191#comment-16894191
 ] 

Laszlo Kishalmi commented on NETBEANS-181:
--

Well, you might just as well run native Linux and cage the required Windows 
stuff in a VM. Life is usually much happier that way. As of now this seems to 
be a big hack, I really doubt that we found someone who is willing/capable of 
implement this.

> NetBeans should be aware of WSL (Ubuntu on Windows 10)
> --
>
> Key: NETBEANS-181
> URL: https://issues.apache.org/jira/browse/NETBEANS-181
> Project: NetBeans
>  Issue Type: New Feature
>  Components: cnd - Terminalemulator
>Affects Versions: Next
> Environment: NetBeans 8.2, Windows 10 x64
>Reporter: Christian Lenz
>Priority: Major
>
> Yeah Ubuntu on Windows is, I think still in beta but I use it for my daily 
> work. At home and at work. It is really handy to setup enviroment stuff 
> easily. So for this, NetBeans should be aware of installed stuff inside the 
> ubuntu on windows. The path is "C:\Users\Chrizzly\AppData\Local\lxss (hidden 
> folder)". So if NetBeans are aware of a cygwin installation, it should be 
> treated like that too.
> And for everything else like I installed node, c/c++ stuff, php and so on.
> Would be great enhancement. I created such ticket for Terminal integration 
> too, because of the Cygwin thing: 
> http://netbeans.org/bugzilla/show_bug.cgi?id=267478
> Regards
> Chris



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-319) NetBeans freezes for 17 seconds when I save file

2019-07-26 Thread Laszlo Kishalmi (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16894183#comment-16894183
 ] 

Laszlo Kishalmi commented on NETBEANS-319:
--

Is this still an issue?

> NetBeans freezes for 17 seconds when I save file
> 
>
> Key: NETBEANS-319
> URL: https://issues.apache.org/jira/browse/NETBEANS-319
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Filesystems
>Affects Versions: 8.2, 9.0
> Environment: Windows 10 64 bit JDK 1.8.0_152
>Reporter: Enrico Scantamburlo
>Priority: Major
> Attachments: dump.txt
>
>
> # Opened a .csv file
> # Opened the same file in Excel
> # Tried to save the file
> # I got a popup that said the file was open in another process
> # I closed Excel
> # Tried to save the file again
> # The gui froze for 17 seconds
> # Then it saves correctly
> I took a look at the code, there is a loop that should wait for 10*200ms but 
> is longer than the time I waited.
>  
> See [here |https://netbeans.org/bugzilla/show_bug.cgi?id=229903]
>  I also reported the slowness via the Exception Reporter in NetBeans and it 
> is report number 870343
> I am also attaching the thread dump



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Resolved] (NETBEANS-287) Dead lock when saving file

2019-07-26 Thread Laszlo Kishalmi (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-287?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Laszlo Kishalmi resolved NETBEANS-287.
--
Resolution: Information Provided

> Dead lock when saving file
> --
>
> Key: NETBEANS-287
> URL: https://issues.apache.org/jira/browse/NETBEANS-287
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 8.2
> Environment: Windows 10 JDK 1.8.0_162 64bit
>Reporter: Enrico Scantamburlo
>Priority: Major
> Attachments: 1.tdump, 2.tdump
>
>
> I modified a java file, then saved with "format on save" on, and I had a 
> thread  deadlock



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-52) PHP7.1 Nullable type's use statement unrecognized

2019-07-26 Thread Laszlo Kishalmi (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-52?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16894181#comment-16894181
 ] 

Laszlo Kishalmi commented on NETBEANS-52:
-

Is this an issue valid NetBeans 11.1?

> PHP7.1 Nullable type's use statement unrecognized
> -
>
> Key: NETBEANS-52
> URL: https://issues.apache.org/jira/browse/NETBEANS-52
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code
>Affects Versions: 9.0, Next
> Environment: Ubuntu 16.04.3 - Linux 4.4.0-92-generic
> openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ádám Turcsán
>Priority: Major
>  Labels: features
>
> There's a new PHP7.1 implementation in the nightly builds.
> As I was using the new features I recognized that if a used type is used only 
> in nullable cases, like below, NetBeans marks it as "Unused Use Statement":
> {code:php}
>  use \Psr\Log\LoggerInterface as Logger;
> class Example {
> /**
>  * @var ?Logger
>  */
> private $logger;
> public function __construct(?Logger $logger)
> {
> $this->logger = $logger;
> }
> private function getLogger(): ?Logger
> {
> return $this->logger;
> }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-2869) Refactor -> Rename doesn't work

2019-07-26 Thread Laszlo Kishalmi (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2869?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16894180#comment-16894180
 ] 

Laszlo Kishalmi commented on NETBEANS-2869:
---

Not enough information. We need the steps, most probably a sample project to 
reproduce this issue.

> Refactor -> Rename doesn't work
> ---
>
> Key: NETBEANS-2869
> URL: https://issues.apache.org/jira/browse/NETBEANS-2869
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: John Doe
>Priority: Major
>
> Environment:
>  - OS: Microsoft Windows 10 Pro (Version 10.0.16299 Build 16299)
>  - Java 11 (jdk-11.0.2)
>  - JavaFX 11 (javafx-sdk-11.0.2)
>  - Apache NetBeans IDE 11.0 (Build incubator-netbeans-release-404-on-20190319)
>  
> I have one variable in one class  file, that is not used outside of that 
> class, and when I try Refactor-> Rename, it shows me following error:
> The original element being refactored is not available. It was deleted or 
> significantly changed. Usages cannot be collected.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2879) Parts of the UI look better when Java 1.8 is the default vs. Java 12.0.1

2019-07-26 Thread Laszlo Kishalmi (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2879?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Laszlo Kishalmi updated NETBEANS-2879:
--
Labels: windows  (was: )

> Parts of the UI look better when Java 1.8 is the default vs. Java 12.0.1
> 
>
> Key: NETBEANS-2879
> URL: https://issues.apache.org/jira/browse/NETBEANS-2879
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Windows 10 with HD (1920x1080) screen.
>Reporter: Steven Rosenberg
>Priority: Minor
>  Labels: windows
> Attachments: 2019_0722_apache_netbeans_with_java_1.8.jpg, 
> 2019_0722_apache_netbeans_with_java_12.jpg
>
>
> Parts of the UI in Apache NetBeans 11 (11.0 and 11.1) look sharper when Java 
> 1.8 is the default JDK and less sharp (more pixelated) when Java 12.0.1 is 
> the default JDK.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[netbeans] branch master updated: Fix ClassPathTest in ide/api.java.classpath module

2019-07-26 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 9d8ec66  Fix ClassPathTest in ide/api.java.classpath module
 new b02  Merge pull request #1320 from blackleg/fix_classpath_test
9d8ec66 is described below

commit 9d8ec6683c10cabc77b3a3656eec92f605235cde
Author: Hector Espert 
AuthorDate: Mon Jun 24 20:28:36 2019 +0200

Fix ClassPathTest in ide/api.java.classpath module
---
 .../test/unit/src/org/netbeans/api/java/classpath/ClassPathTest.java | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/ide/api.java.classpath/test/unit/src/org/netbeans/api/java/classpath/ClassPathTest.java
 
b/ide/api.java.classpath/test/unit/src/org/netbeans/api/java/classpath/ClassPathTest.java
index b99a80b..1eaf4f1 100644
--- 
a/ide/api.java.classpath/test/unit/src/org/netbeans/api/java/classpath/ClassPathTest.java
+++ 
b/ide/api.java.classpath/test/unit/src/org/netbeans/api/java/classpath/ClassPathTest.java
@@ -655,10 +655,7 @@ public class ClassPathTest extends NbTestCase {
 try {
 final Class c = loader.loadClass(className);
 noLoaded++;
-} catch (ClassNotFoundException e) {
-noFailed++;
-}
-catch (NoClassDefFoundError e) {
+} catch (ClassNotFoundException | NoClassDefFoundError | 
SecurityException e) {
 noFailed++;
 }
 }


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

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



[netbeans] branch master updated (80bd73e -> 9188663)

2019-07-26 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from 80bd73e  [NETBEANS-2729] Make netbeans and netbeans-dev snap 
descriptor coexists. (#1329)
 new 52963b9  Update htmlparser to version 1.4
 new 567baa1  Adjust HTML lexer to follow HTML5 rules for attributes
 new 82cada9  Handle attributes with a null value (attributes without value)
 new 9188663  Merge pull request #1380 from 
matthiasblaesing/update_htmlparser2

The 2803 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../modules/html/editor/HtmlElementProperties.java |  25 +-
 .../src/org/netbeans/lib/html/lexer/HtmlLexer.java |  32 +-
 .../org/netbeans/lib/html/lexer/HtmlLexerTest.java |  83 +++--
 ide/html.parser/external/binaries-list |   2 +-
 ide/html.parser/external/howtoupgrade.txt  |  12 -
 .../external/htmlparser-01-fix-maven-build.patch   | 369 +
 .../external/htmlparser-02-ignore-file.patch   |  27 ++
 .../htmlparser-03-minimum-changes-nb.patch | 226 +
 .../external/htmlparser-04-build-on-jdk11.patch|  62 
 ...nse.txt => htmlparser-1.4.20190624-license.txt} |  18 +-
 .../external/htmlparser-howtoupgrade.txt   |  25 ++
 ide/html.parser/nbproject/project.properties   |   2 +-
 ide/html.parser/nbproject/project.xml  |   2 +-
 .../netbeans/modules/html/parser/Html5Parser.java  |   4 +
 .../modules/html/parser/ParseTreeBuilder.java  |  43 ++-
 .../html/parser/model/ElementDescriptor.java   |   2 +-
 .../modules/html/parser/Html5ParserTest.java   | 115 ++-
 .../html/parser/model/HtmlTagProviderTest.java |  10 +-
 nbbuild/licenses/MIT-html5-parser  |  83 +++--
 19 files changed, 1017 insertions(+), 125 deletions(-)
 delete mode 100644 ide/html.parser/external/howtoupgrade.txt
 create mode 100644 ide/html.parser/external/htmlparser-01-fix-maven-build.patch
 create mode 100644 ide/html.parser/external/htmlparser-02-ignore-file.patch
 create mode 100644 
ide/html.parser/external/htmlparser-03-minimum-changes-nb.patch
 create mode 100644 ide/html.parser/external/htmlparser-04-build-on-jdk11.patch
 rename ide/html.parser/external/{htmlparser-1.2.1-license.txt => 
htmlparser-1.4.20190624-license.txt} (91%)
 create mode 100644 ide/html.parser/external/htmlparser-howtoupgrade.txt


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

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



[jira] [Updated] (NETBEANS-2899) Corrupted code generated when "reformat on save" is enabled

2019-07-26 Thread Olof Andersson (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Olof Andersson updated NETBEANS-2899:
-
Description: 
h3. *Steps:*
 - Enable formatting on save  (Tools > Options > Editor > On Save > Uncheck 
"Use All Languages Settings" > Reformat > All lines)
 - Create a new JPanel  (Project tree > Right-click a package > New > JPanel 
Form)
 - Click "Finish" in "New JPanel Form"

h3. *Expected result:*

A new JPanel is generated successfully
h3. *Actual result:*

An error dialog with message:
{quote}"The form seems to be corrupted. The GUI builder
 is not able to find the sections with the generated code.
 The special comments that denote the start and the end
 of these sections were removed or modified.

The form will be opened in read-only mode.

See [http://wiki.netbeans.org/FormGuardedBlockError]
 for additional information."
{quote}
And the generated code of NewJPanel.java is corrupted:
{code:java}
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
ackage editor;

/**
 *
 * @author olof
 */
public class NewJPanel extends javax.swing.JPanel {

 *
 * Creates new form NewJPanel
 *  ublic NewJPanel() {
ponents();
}

/*  * T met
 * od is called from within the constructor to initiali orm.
 * WARNING: Do
 * ify this code. The content of this method is always
 * regener the Fo
 * m Editor.
 */
@SuppressWarnin
 che")
//   

private void initComponents()
javax.swing.GroupLayout layout  
avax.swing.GroupLayout(this);
this.setLayout(layout);
layout.set  alGroup(
layout.crea 
elGroup(javax.swing.GroupL
nt.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setV

layout.createParallelGroup(
ng. out.Alignment.LEADING)

0, 300, Short.MAX_VALUE)
);
}
//   
ariables declaration - do not mo
-BE va  les
// End of variables declaration//GEN-E  riables
}

{code}

  was:
h3. *Steps:*
 - Enable formatting on save  (Tools > Options > Editor > On Save > Uncheck 
"Use All Languages Settings" > Reformat > All lines)
 - Project tree > Right-click a package > New > JPanel Form
 - Dialog "New JPanel Form" is displayed
 - Click "Finish"

h3. *Expected result:*

A new JPanel is generated successfully
h3. *Actual result:*

An error dialog with message:
{quote}"The form seems to be corrupted. The GUI builder
 is not able to find the sections with the generated code.
 The special comments that denote the start and the end
 of these sections were removed or modified.

The form will be opened in read-only mode.

See [http://wiki.netbeans.org/FormGuardedBlockError]
 for additional information."
{quote}
And the generated code of NewJPanel.java is corrupted:
{code:java}
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
ackage editor;

/**
 *
 * @author olof
 */
public class NewJPanel extends javax.swing.JPanel {

 *
 * Creates new form NewJPanel
 *  ublic NewJPanel() {
ponents();
}

/*  * T met
 * od is called from within the constructor to initiali orm.
 * WARNING: Do
 * ify this code. The content of this method is always
 * regener the Fo
 * m Editor.
 */
@SuppressWarnin
 che")
//   

private void initComponents()
javax.swing.GroupLayout layout  
avax.swing.GroupLayout(this);
this.setLayout(layout);
layout.set  alGroup(
layout.crea 
elGroup(javax.swing.GroupL
nt.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setV

layout.createParallelGroup(
ng. out.Alignment.LEADING)

0, 300, Short.MAX_VALUE)
);
}
//   
ariables 

[jira] [Updated] (NETBEANS-2899) Corrupted code generated when "reformat on save" is enabled

2019-07-26 Thread Olof Andersson (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Olof Andersson updated NETBEANS-2899:
-
Summary: Corrupted code generated when "reformat on save" is enabled  (was: 
Corrupted code generated when creating new JPanel)

> Corrupted code generated when "reformat on save" is enabled
> ---
>
> Key: NETBEANS-2899
> URL: https://issues.apache.org/jira/browse/NETBEANS-2899
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
> Java: 11.0.3; Java HotSpot(TM) 64-Bit Server VM 11.0.3+12-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.3+12-LTS
> System: Linux version 4.15.0-54-generic running on amd64; UTF-8; en_US (nb)
>Reporter: Olof Andersson
>Priority: Major
>
> h3. *Steps:*
>  - Enable formatting on save  (Tools > Options > Editor > On Save > Uncheck 
> "Use All Languages Settings" > Reformat > All lines)
>  - Project tree > Right-click a package > New > JPanel Form
>  - Dialog "New JPanel Form" is displayed
>  - Click "Finish"
> h3. *Expected result:*
> A new JPanel is generated successfully
> h3. *Actual result:*
> An error dialog with message:
> {quote}"The form seems to be corrupted. The GUI builder
>  is not able to find the sections with the generated code.
>  The special comments that denote the start and the end
>  of these sections were removed or modified.
> The form will be opened in read-only mode.
> See [http://wiki.netbeans.org/FormGuardedBlockError]
>  for additional information."
> {quote}
> And the generated code of NewJPanel.java is corrupted:
> {code:java}
> /*
>  * To change this license header, choose License Headers in Project 
> Properties.
>  * To change this template file, choose Tools | Templates
>  * and open the template in the editor.
>  */
> ackage editor;
> /**
>  *
>  * @author olof
>  */
> public class NewJPanel extends javax.swing.JPanel {
>*
>* Creates new form NewJPanel
>*  ublic NewJPanel() {
>   ponents();
>   }
>   /*  * T met
>* od is called from within the constructor to initiali orm.
>* WARNING: Do
>* ify this code. The content of this method is always
>* regener the Fo
>* m Editor.
>*/
>   @SuppressWarnin
>che")
>   //   
> 
>   private void initComponents()
>   javax.swing.GroupLayout layout  
> avax.swing.GroupLayout(this);
>   this.setLayout(layout);
>   layout.set  alGroup(
>   layout.crea 
> elGroup(javax.swing.GroupL
>   nt.LEADING)
>   .addGap(0, 400, Short.MAX_VALUE)
>   );
>   layout.setV
>   layout.createParallelGroup(
>   ng. out.Alignment.LEADING)
>   0, 300, Short.MAX_VALUE)
>   );
>   }
>   //   
>   ariables declaration - do not mo
>   -BE va  les
>   // End of variables declaration//GEN-E  riables
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Issue Comment Deleted] (NETBEANS-2899) Corrupted code generated when "reformat on save" is enabled

2019-07-26 Thread Olof Andersson (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Olof Andersson updated NETBEANS-2899:
-
Comment: was deleted

(was: Problem disappeared after removing ~/.netbeans/11.0/config/

(but that of course also reset all configuration settings, open projects, etc.))

> Corrupted code generated when "reformat on save" is enabled
> ---
>
> Key: NETBEANS-2899
> URL: https://issues.apache.org/jira/browse/NETBEANS-2899
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
> Java: 11.0.3; Java HotSpot(TM) 64-Bit Server VM 11.0.3+12-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.3+12-LTS
> System: Linux version 4.15.0-54-generic running on amd64; UTF-8; en_US (nb)
>Reporter: Olof Andersson
>Priority: Major
>
> h3. *Steps:*
>  - Enable formatting on save  (Tools > Options > Editor > On Save > Uncheck 
> "Use All Languages Settings" > Reformat > All lines)
>  - Project tree > Right-click a package > New > JPanel Form
>  - Dialog "New JPanel Form" is displayed
>  - Click "Finish"
> h3. *Expected result:*
> A new JPanel is generated successfully
> h3. *Actual result:*
> An error dialog with message:
> {quote}"The form seems to be corrupted. The GUI builder
>  is not able to find the sections with the generated code.
>  The special comments that denote the start and the end
>  of these sections were removed or modified.
> The form will be opened in read-only mode.
> See [http://wiki.netbeans.org/FormGuardedBlockError]
>  for additional information."
> {quote}
> And the generated code of NewJPanel.java is corrupted:
> {code:java}
> /*
>  * To change this license header, choose License Headers in Project 
> Properties.
>  * To change this template file, choose Tools | Templates
>  * and open the template in the editor.
>  */
> ackage editor;
> /**
>  *
>  * @author olof
>  */
> public class NewJPanel extends javax.swing.JPanel {
>*
>* Creates new form NewJPanel
>*  ublic NewJPanel() {
>   ponents();
>   }
>   /*  * T met
>* od is called from within the constructor to initiali orm.
>* WARNING: Do
>* ify this code. The content of this method is always
>* regener the Fo
>* m Editor.
>*/
>   @SuppressWarnin
>che")
>   //   
> 
>   private void initComponents()
>   javax.swing.GroupLayout layout  
> avax.swing.GroupLayout(this);
>   this.setLayout(layout);
>   layout.set  alGroup(
>   layout.crea 
> elGroup(javax.swing.GroupL
>   nt.LEADING)
>   .addGap(0, 400, Short.MAX_VALUE)
>   );
>   layout.setV
>   layout.createParallelGroup(
>   ng. out.Alignment.LEADING)
>   0, 300, Short.MAX_VALUE)
>   );
>   }
>   //   
>   ariables declaration - do not mo
>   -BE va  les
>   // End of variables declaration//GEN-E  riables
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2899) Corrupted code generated when creating new JPanel

2019-07-26 Thread Olof Andersson (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Olof Andersson updated NETBEANS-2899:
-
Description: 
h3. *Steps:*
 - Enable formatting on save  (Tools > Options > Editor > On Save > Uncheck 
"Use All Languages Settings" > Reformat > All lines)
 - Project tree > Right-click a package > New > JPanel Form
 - Dialog "New JPanel Form" is displayed
 - Click "Finish"

h3. *Expected result:*

A new JPanel is generated successfully
h3. *Actual result:*

An error dialog with message:
{quote}"The form seems to be corrupted. The GUI builder
 is not able to find the sections with the generated code.
 The special comments that denote the start and the end
 of these sections were removed or modified.

The form will be opened in read-only mode.

See [http://wiki.netbeans.org/FormGuardedBlockError]
 for additional information."
{quote}
And the generated code of NewJPanel.java is corrupted:
{code:java}
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
ackage editor;

/**
 *
 * @author olof
 */
public class NewJPanel extends javax.swing.JPanel {

 *
 * Creates new form NewJPanel
 *  ublic NewJPanel() {
ponents();
}

/*  * T met
 * od is called from within the constructor to initiali orm.
 * WARNING: Do
 * ify this code. The content of this method is always
 * regener the Fo
 * m Editor.
 */
@SuppressWarnin
 che")
//   

private void initComponents()
javax.swing.GroupLayout layout  
avax.swing.GroupLayout(this);
this.setLayout(layout);
layout.set  alGroup(
layout.crea 
elGroup(javax.swing.GroupL
nt.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setV

layout.createParallelGroup(
ng. out.Alignment.LEADING)

0, 300, Short.MAX_VALUE)
);
}
//   
ariables declaration - do not mo
-BE va  les
// End of variables declaration//GEN-E  riables
}

{code}

  was:
h3. *Steps:*
 - Project tree > Right-click a package > New > JPanel Form
 - Dialog "New JPanel Form" is displayed
 - Click "Finish"

h3. *Expected result:*

A new JPanel is generated successfully
h3. *Actual result:*

An error dialog with message:
{quote}"The form seems to be corrupted. The GUI builder
 is not able to find the sections with the generated code.
 The special comments that denote the start and the end
 of these sections were removed or modified.

The form will be opened in read-only mode.

See [http://wiki.netbeans.org/FormGuardedBlockError]
 for additional information."
{quote}
And the generated code of NewJPanel.java is corrupted:
{code:java}
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
ackage editor;

/**
 *
 * @author olof
 */
public class NewJPanel extends javax.swing.JPanel {

 *
 * Creates new form NewJPanel
 *  ublic NewJPanel() {
ponents();
}

/*  * T met
 * od is called from within the constructor to initiali orm.
 * WARNING: Do
 * ify this code. The content of this method is always
 * regener the Fo
 * m Editor.
 */
@SuppressWarnin
 che")
//   

private void initComponents()
javax.swing.GroupLayout layout  
avax.swing.GroupLayout(this);
this.setLayout(layout);
layout.set  alGroup(
layout.crea 
elGroup(javax.swing.GroupL
nt.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setV

layout.createParallelGroup(
ng. out.Alignment.LEADING)

0, 300, Short.MAX_VALUE)
);
}
//   
ariables declaration - do not mo
-BE va  les
// End of variables declaration//GEN-E  riables
}

{code}


> 

[jira] [Created] (NETBEANS-2908) Projects in groups must be in the same root folder

2019-07-26 Thread Kenneth Fogel (JIRA)
Kenneth Fogel created NETBEANS-2908:
---

 Summary: Projects in groups must be in the same root folder
 Key: NETBEANS-2908
 URL: https://issues.apache.org/jira/browse/NETBEANS-2908
 Project: NetBeans
  Issue Type: Improvement
Affects Versions: 8.2, 11.1
Reporter: Kenneth Fogel
 Fix For: Next


I just discovered that if you create a group of projects that do not share the 
same root folder then group commands do not work. I created three projects in 
different root folders. I could create the group by asking for the currently 
opened projects to be added to the group without any warnings. I then closed 
the group and then selected it from Project Groups. None of the projects 
appeared. Opening a group made up of projects from different root folders does 
not open any of the projects. This occurs in 8.2 & 11.1. Having projects in 
different folders in a group would be very helpful. It did work if all projects 
shared the same root folder.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[netbeans] branch master updated: [NETBEANS-2729] Make netbeans and netbeans-dev snap descriptor coexists. (#1329)

2019-07-26 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 80bd73e  [NETBEANS-2729] Make netbeans and netbeans-dev snap 
descriptor coexists. (#1329)
80bd73e is described below

commit 80bd73e8771dd267916720a60f029ec8f85fbf1f
Author: Laszlo Kishalmi 
AuthorDate: Fri Jul 26 11:26:10 2019 -0700

[NETBEANS-2729] Make netbeans and netbeans-dev snap descriptor coexists. 
(#1329)

* [NETBEANS-2729] Let's development and release snap descriptors co-exists
---
 .gitignore   |  8 
 .../snap/gui/netbeans.desktop|  0
 .../{ => netbeans-dev_snap}/snap/snapcraft.yaml  |  6 +++---
 .../{ => netbeans_snap}/snap/gui/netbeans.desktop|  4 ++--
 .../{ => netbeans_snap}/snap/snapcraft.yaml  | 20 ++--
 5 files changed, 15 insertions(+), 23 deletions(-)

diff --git a/.gitignore b/.gitignore
index e403c51..73fa5b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -77,10 +77,10 @@
 
 # Snapcraft Generated files #
 ###
-/nbbuild/packaging/snap/.snapcraft/
-/nbbuild/packaging/parts/
-/nbbuild/packaging/prime/
-/nbbuild/packaging/stage/
+/nbbuild/packaging/*/snap/.snapcraft/
+/nbbuild/packaging/*/parts/
+/nbbuild/packaging/*/prime/
+/nbbuild/packaging/*/stage/
 *.snap
 
 # Backup files
diff --git a/nbbuild/packaging/snap/gui/netbeans.desktop 
b/nbbuild/packaging/netbeans-dev_snap/snap/gui/netbeans.desktop
similarity index 100%
copy from nbbuild/packaging/snap/gui/netbeans.desktop
copy to nbbuild/packaging/netbeans-dev_snap/snap/gui/netbeans.desktop
diff --git a/nbbuild/packaging/snap/snapcraft.yaml 
b/nbbuild/packaging/netbeans-dev_snap/snap/snapcraft.yaml
similarity index 92%
copy from nbbuild/packaging/snap/snapcraft.yaml
copy to nbbuild/packaging/netbeans-dev_snap/snap/snapcraft.yaml
index 5907760..42448c2 100644
--- a/nbbuild/packaging/snap/snapcraft.yaml
+++ b/nbbuild/packaging/netbeans-dev_snap/snap/snapcraft.yaml
@@ -35,7 +35,7 @@ description: |
   
   It requires Java 8 or later Java Development Kit installed.
 
-icon: ../../platform/core.startup/src/org/netbeans/core/startup/frame512.png
+icon: ../../../platform/core.startup/src/org/netbeans/core/startup/frame512.png
 confinement: classic
 grade: devel
 architectures: [ amd64 ]
@@ -55,7 +55,7 @@ parts:
   - unzip
   - openjdk-8-jdk-headless
 plugin: ant
-source: ../../
+source: ../../../
 filesets:
 netbeans: [ netbeans/*, -netbeans/*.built ]
 override-build: |
@@ -65,7 +65,7 @@ parts:
 # Make the default cache and data directory relative to Snap user 
directory
 sed -i 's/${HOME}\/.netbeans/${SNAP_USER_COMMON}\/data/' 
$SNAPCRAFT_PART_INSTALL/netbeans/bin/netbeans
 sed -i 's/${HOME}\/.cache\/netbeans/${SNAP_USER_COMMON}\/cache/' 
$SNAPCRAFT_PART_INSTALL/netbeans/bin/netbeans
-sed -i 
's/-J-Dapple.laf.useScreenMenuBar=true/-J-Dplugin.manager.install.global=false/'
 $SNAPCRAFT_PART_INSTALL/netbeans/etc/netbeans.conf
+sed -i 
's/-J-Dapple.laf.useScreenMenuBar=true/-J-Dplugin.manager.install.global=false 
-J-Dawt.useSystemAAFontSettings=on/' 
$SNAPCRAFT_PART_INSTALL/netbeans/etc/netbeans.conf
 stage:
 - $netbeans
 
diff --git a/nbbuild/packaging/snap/gui/netbeans.desktop 
b/nbbuild/packaging/netbeans_snap/snap/gui/netbeans.desktop
similarity index 93%
rename from nbbuild/packaging/snap/gui/netbeans.desktop
rename to nbbuild/packaging/netbeans_snap/snap/gui/netbeans.desktop
index ad720d3..3fc953f 100644
--- a/nbbuild/packaging/snap/gui/netbeans.desktop
+++ b/nbbuild/packaging/netbeans_snap/snap/gui/netbeans.desktop
@@ -17,9 +17,9 @@
 [Desktop Entry]
 Type=Application
 Encoding=UTF-8
-Name=Apache NetBeans (development)
+Name=Apache NetBeans
 Comment=Apache NetBeans, The Smarter Way to Code
-Exec=netbeans-dev.netbeans %F
+Exec=netbeans %F
 Categories=Development;IDE
 Icon=${SNAP}/meta/gui/icon.png
 Terminal=false
diff --git a/nbbuild/packaging/snap/snapcraft.yaml 
b/nbbuild/packaging/netbeans_snap/snap/snapcraft.yaml
similarity index 78%
rename from nbbuild/packaging/snap/snapcraft.yaml
rename to nbbuild/packaging/netbeans_snap/snap/snapcraft.yaml
index 5907760..52328d2 100644
--- a/nbbuild/packaging/snap/snapcraft.yaml
+++ b/nbbuild/packaging/netbeans_snap/snap/snapcraft.yaml
@@ -14,18 +14,10 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-name: netbeans-dev
+name: netbeans
 
-summary: Apache NetBeans IDE (Development Build)
+summary: Apache NetBeans IDE
 description: |
-  Disclaimer:
-  This is an in Development Build of Apache NetBeans IDE , this is for sole
-  testing purposes and shall be not considered as a release.
-  
-  This package is refreshed weekly automatically from the NetBeans master
-  

[netbeans] branch master updated: Remove leading plus sign in properties file (delimiter is recognised as key)

2019-07-26 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 9849547  Remove leading plus sign in properties file (delimiter is 
recognised as key)
9849547 is described below

commit 984954778cc724cfe37e4c095034d3a45b100f19
Author: Rami Swailem 
AuthorDate: Mon Jul 22 09:32:42 2019 +0200

Remove leading plus sign in properties file (delimiter is recognised as key)
---
 .../core.startup/src/org/netbeans/core/startup/Bundle_nb.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nb/ide.branding/core.startup/src/org/netbeans/core/startup/Bundle_nb.properties
 
b/nb/ide.branding/core.startup/src/org/netbeans/core/startup/Bundle_nb.properties
index f1f3334..0dc16b6 100644
--- 
a/nb/ide.branding/core.startup/src/org/netbeans/core/startup/Bundle_nb.properties
+++ 
b/nb/ide.branding/core.startup/src/org/netbeans/core/startup/Bundle_nb.properties
@@ -48,7 +48,7 @@ AboutTextBounds=78, 60, 362, 20
 #NOI18N
 AboutTextColor=0x00
 
-+###
+###
 # [NETBEANS-2455] Add a version string to the splash screen:
 #NOI18N
 SplashVersionTextBounds=16, 257, 448, 16


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

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



[netbeans-jenkins-lib] branch master updated: force a common zip name over builds

2019-07-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 4b6f6b7  force a common zip name over builds
4b6f6b7 is described below

commit 4b6f6b798eb6403c7871da74f416eae577ea004a
Author: Eric Barboni 
AuthorDate: Fri Jul 26 19:39:37 2019 +0200

force a common zip name over builds
---
 vars/asfStandardBuild.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index 18f4ecd..81b1176 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -106,8 +106,9 @@ def mavenBuild(jdk, cmdline, mvnName, publishers) {
 mavenLocalRepo: localRepo) {
 // Some common Maven command line + provided command line
 sh "mvn -V -B -U -e -Dmaven.test.failure.ignore=true $cmdline "
+   sh "mv target/*-site.jar WEBSITE.zip"
 }
- 
+archiveArtifacts 'WEBSITE.zip'
 }
 
 def notifyBuild(String buildStatus) {


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

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



[netbeans-jenkins-lib] branch master updated: use default behaviour

2019-07-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new b1bb88e  use default behaviour
b1bb88e is described below

commit b1bb88e1a35d561a5135d23036979774edfe0a6e
Author: Eric Barboni 
AuthorDate: Fri Jul 26 19:25:24 2019 +0200

use default behaviour
---
 vars/asfStandardBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index 0be6890..18f4ecd 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -107,7 +107,7 @@ def mavenBuild(jdk, cmdline, mvnName, publishers) {
 // Some common Maven command line + provided command line
 sh "mvn -V -B -U -e -Dmaven.test.failure.ignore=true $cmdline "
 }
-archiveArtifacts artifacts: 'target/uploa**'
+ 
 }
 
 def notifyBuild(String buildStatus) {


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

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



[netbeans-jenkins-lib] branch master updated: use default behaviour

2019-07-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 761db2c  use default behaviour
761db2c is described below

commit 761db2c27ec6e6aabec98a351bee9d6f8a9bcaf7
Author: Eric Barboni 
AuthorDate: Fri Jul 26 19:24:44 2019 +0200

use default behaviour
---
 vars/asfStandardBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index d5c0178..0be6890 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -94,7 +94,7 @@ def call(Map params = [:]) {
 def mavenBuild(jdk, cmdline, mvnName, publishers) {
 def localRepo = "../.maven_repositories/${env.EXECUTOR_NUMBER}" // 
".repository" //
 //def settingsName = 'archiva-uid-jenkins'
-def mavenOpts = '-Xms1g -Xmx4g -Djava.awt.headless=true 
-Dproject.build.finalName=uploadablewesite'
+def mavenOpts = '-Xms1g -Xmx4g -Djava.awt.headless=true'
 
 withMaven(
 maven: mvnName,


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

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



[netbeans-jenkins-lib] branch master updated: parameter on the withMaven parameter

2019-07-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 61a9439  parameter on the withMaven parameter
61a9439 is described below

commit 61a9439ed2c53e18efce854c1be84d4967222f37
Author: Eric Barboni 
AuthorDate: Fri Jul 26 19:15:17 2019 +0200

parameter on the withMaven parameter
---
 vars/asfStandardBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index fb18805..d5c0178 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -31,7 +31,7 @@ def call(Map params = [:]) {
 // now determine params
 def jdk = params.containsKey('jdk') ? params.jdk : 'JDK 1.8 (latest)'
 // use the cmdLine parameter otherwise default depending on current branch
-def cmdline = params.containsKey('cmdline') ? params.cmdline : 
(env.BRANCH_NAME == 'master'?"clean deploy site:jar 
-Dproject.build.finalName=uploadablewebsite ":"clean install")
+def cmdline = params.containsKey('cmdline') ? params.cmdline : 
(env.BRANCH_NAME == 'master'?"clean deploy site:jar":"clean install")
 def mvnName = params.containsKey('mvnName') ? params.mvnName : 'Maven 
3.5.2'
 
 
@@ -94,7 +94,7 @@ def call(Map params = [:]) {
 def mavenBuild(jdk, cmdline, mvnName, publishers) {
 def localRepo = "../.maven_repositories/${env.EXECUTOR_NUMBER}" // 
".repository" //
 //def settingsName = 'archiva-uid-jenkins'
-def mavenOpts = '-Xms1g -Xmx4g -Djava.awt.headless=true'
+def mavenOpts = '-Xms1g -Xmx4g -Djava.awt.headless=true 
-Dproject.build.finalName=uploadablewesite'
 
 withMaven(
 maven: mvnName,


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

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



[jira] [Created] (NETBEANS-2907) Using 11.1 I was informed that I should update to 9.0

2019-07-26 Thread Kenneth Fogel (JIRA)
Kenneth Fogel created NETBEANS-2907:
---

 Summary: Using 11.1 I was informed that I should update to 9.0
 Key: NETBEANS-2907
 URL: https://issues.apache.org/jira/browse/NETBEANS-2907
 Project: NetBeans
  Issue Type: Bug
  Components: platform - Autoupdate
Affects Versions: 11.1
 Environment: Windows 10, Java 12, NB 11.1
Reporter: Kenneth Fogel
 Fix For: Next


To my surprise an update baloon poped up and suggested an update to 9.0 despite 
the fact that I was running 11.1



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[netbeans-jenkins-lib] branch master updated: test to add website generation

2019-07-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new a4f1b73  test to add website generation
a4f1b73 is described below

commit a4f1b7306e8701bd2ee6c58b2b54495172dbd881
Author: Eric Barboni 
AuthorDate: Fri Jul 26 18:07:20 2019 +0200

test to add website generation
---
 vars/asfStandardBuild.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index 072399e..fb18805 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -31,7 +31,7 @@ def call(Map params = [:]) {
 // now determine params
 def jdk = params.containsKey('jdk') ? params.jdk : 'JDK 1.8 (latest)'
 // use the cmdLine parameter otherwise default depending on current branch
-def cmdline = params.containsKey('cmdline') ? params.cmdline : 
(env.BRANCH_NAME == 'master'?"clean deploy":"clean install")
+def cmdline = params.containsKey('cmdline') ? params.cmdline : 
(env.BRANCH_NAME == 'master'?"clean deploy site:jar 
-Dproject.build.finalName=uploadablewebsite ":"clean install")
 def mvnName = params.containsKey('mvnName') ? params.mvnName : 'Maven 
3.5.2'
 
 
@@ -107,6 +107,7 @@ def mavenBuild(jdk, cmdline, mvnName, publishers) {
 // Some common Maven command line + provided command line
 sh "mvn -V -B -U -e -Dmaven.test.failure.ignore=true $cmdline "
 }
+archiveArtifacts artifacts: 'target/uploa**'
 }
 
 def notifyBuild(String buildStatus) {


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

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



[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 870

2019-07-26 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 35a9cee  Automated site publishing by Jenkins build 870
35a9cee is described below

commit 35a9cee9aa5edb516be2f91035f59e3e751fe2da
Author: jenkins 
AuthorDate: Fri Jul 26 15:37:51 2019 +

Automated site publishing by Jenkins build 870
---
 content/download/nb110/nb110.html | 12 
 1 file changed, 12 insertions(+)

diff --git a/content/download/nb110/nb110.html 
b/content/download/nb110/nb110.html
index 4aae577..d54bfe7 100644
--- a/content/download/nb110/nb110.html
+++ b/content/download/nb110/nb110.html
@@ -95,6 +95,18 @@
 Apache NetBeans (incubating) 11.0 was announced on April the 4th, 2019.
 See Apache NetBeans 11.0 Features for 
a full list of features.
 
+
+
+
+
+
+
+
+Since releasing 11.0, feature update 1, that is, Apache NetBeans 11.1, has 
been released. The LTS release of the Apache NetBeans 11 cycle is Apache 
NetBeans 11.0. The 11.1 release has not been tested as heavily as the LTS 
release and may therefore be less stable. Use 11.1 to use the latest features 
and to provide feedback for the next LTS release, scheduled for April 2020. Go 
here to download  Apache NetBeans 
11.1, the feature update, which needs  [...]
+
+
+
+
 
 Apache NetBeans 11.0 is available for download from your closest Apache 
mirror. For this release no official installers are provided, please just 
download the binaries and unzip them.
 


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

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



[netbeans-website] branch master updated (88bd6a5 -> 02f2979)

2019-07-26 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git.


from 88bd6a5  Merge pull request #403 from Rareitor/patch-2
 add 50dc393  Adding note in 11.0 about 11.1
 new 02f2979  Merge pull request #404 from apache/geertjanw-patch-13

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 netbeans.apache.org/src/content/download/nb110/nb110.asciidoc | 2 ++
 1 file changed, 2 insertions(+)


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

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



[netbeans-website] 01/01: Merge pull request #404 from apache/geertjanw-patch-13

2019-07-26 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git

commit 02f297932f9368b54d09205c6f83e844e954f52c
Merge: 88bd6a5 50dc393
Author: Geertjan Wielenga 
AuthorDate: Fri Jul 26 17:35:40 2019 +0200

Merge pull request #404 from apache/geertjanw-patch-13

Adding note in 11.0 about 11.1

 netbeans.apache.org/src/content/download/nb110/nb110.asciidoc | 2 ++
 1 file changed, 2 insertions(+)


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

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



[jira] [Updated] (NETBEANS-2722) Synchronize, Remote diff window too small

2019-07-26 Thread Riksoft (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2722?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Riksoft updated NETBEANS-2722:
--
Description: 
_Sorry but I'm not able to choose the right component for this issue. Maybe 
PHP-Project? Maybe Project - Generic infrastructure?Maybe Ide?_

I can't tell if this is a problem of PHP/Web project or also for other kind of 
project because I only use Netbeans for web development.

Every time you have to check differences from local and remote file on a web 
server (via FTP or SFTP), the diff window is ridiculously small and has to be 
resized +every time+. As soon as the window is closed, the diff of the next 
file starts, again, with a useless small window.

At least in the same synchro session the size should be kept because it's 
impossible to use this way.
 Even better +Netbeans should remember the last size forever+, based on project 
or, even better, globally since it depends more on the size of the screen than 
on language or other variables.

The way it is now, it's nerve wracking.

_PS: the button "Take over local changes" is too ambiguous. I think of "take 
over" as "take the place of", but actually is the opposite as in "Send out". 
Should be something like "Overwrite remote"/ "Overwrite local"._

  was:
_Sorry but I'm not able to choose the right component for this issue. Maybe 
PHP-Project? Maybe Project - Generic infrastructure?Maybe Ide?_

I can't tell if this is a problem of PHP/Web project or also for other kind of 
project because I only use Netbeans for web development.

Every time you have to check differences from local and remote file on a web 
server (via FTP or SFTP), the diff window is ridiculously small and has to be 
resized +every time+. As soon as the window is closed, the diff of the next 
file starts, again, with a useless small window.

At least in the same synchro session the size should be kept.
Even better +Netbeans should remember the last size forever+, based on project 
or, even better, globally since it depends more on the size of the screen than 
on language or other variables.

The way it is now, it's nerve wracking.


_PS: the button "Take over local changes" is too ambiguous. I think "take over" 
as "take the place of", but actually is the opposite as in "Send out". Should 
be somthing like "Overwrite remote"/ "Overwrite local"._


> Synchronize, Remote diff window too small
> -
>
> Key: NETBEANS-2722
> URL: https://issues.apache.org/jira/browse/NETBEANS-2722
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0
>Reporter: Riksoft
>Priority: Major
>
> _Sorry but I'm not able to choose the right component for this issue. Maybe 
> PHP-Project? Maybe Project - Generic infrastructure?Maybe Ide?_
> I can't tell if this is a problem of PHP/Web project or also for other kind 
> of project because I only use Netbeans for web development.
> Every time you have to check differences from local and remote file on a web 
> server (via FTP or SFTP), the diff window is ridiculously small and has to be 
> resized +every time+. As soon as the window is closed, the diff of the next 
> file starts, again, with a useless small window.
> At least in the same synchro session the size should be kept because it's 
> impossible to use this way.
>  Even better +Netbeans should remember the last size forever+, based on 
> project or, even better, globally since it depends more on the size of the 
> screen than on language or other variables.
> The way it is now, it's nerve wracking.
> _PS: the button "Take over local changes" is too ambiguous. I think of "take 
> over" as "take the place of", but actually is the opposite as in "Send out". 
> Should be something like "Overwrite remote"/ "Overwrite local"._



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2722) Synchronize, Remote diff window too small

2019-07-26 Thread Riksoft (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2722?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Riksoft updated NETBEANS-2722:
--
Issue Type: Bug  (was: Improvement)

> Synchronize, Remote diff window too small
> -
>
> Key: NETBEANS-2722
> URL: https://issues.apache.org/jira/browse/NETBEANS-2722
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0
>Reporter: Riksoft
>Priority: Major
>
> _Sorry but I'm not able to choose the right component for this issue. Maybe 
> PHP-Project? Maybe Project - Generic infrastructure?Maybe Ide?_
> I can't tell if this is a problem of PHP/Web project or also for other kind 
> of project because I only use Netbeans for web development.
> Every time you have to check differences from local and remote file on a web 
> server (via FTP or SFTP), the diff window is ridiculously small and has to be 
> resized +every time+. As soon as the window is closed, the diff of the next 
> file starts, again, with a useless small window.
> At least in the same synchro session the size should be kept.
> Even better +Netbeans should remember the last size forever+, based on 
> project or, even better, globally since it depends more on the size of the 
> screen than on language or other variables.
> The way it is now, it's nerve wracking.
> _PS: the button "Take over local changes" is too ambiguous. I think "take 
> over" as "take the place of", but actually is the opposite as in "Send out". 
> Should be somthing like "Overwrite remote"/ "Overwrite local"._



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-07-26 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893832#comment-16893832
 ] 

Junichi Yamamoto commented on NETBEANS-2903:


[~vluongo] No problem :)

Umm, it's strange... Unfortunately, we can't do anything if there are no steps 
to reproduce it. Please check whether Oracle JS Parser Implementation is 
installed(Tools > Plugins > Installed). or please try to have a look at 
/home/username/netbeans/netbeans-11.1-bin/netbeans/webcommon directory.

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-2905) nbm-maven-plugin fails with NPE

2019-07-26 Thread Eric Barboni (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2905?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893836#comment-16893836
 ] 

Eric Barboni commented on NETBEANS-2905:


If your project is closed source, otherwise you can put a source repo and I 
will try the following myself

 

maybe it's possible for you to clone 
[https://github.com/apache/netbeans-mavenutils-nbm-maven-plugin]

and build agains plugin 4.3-SNAPSHOT

and add a log in case of artiffac is null and try to rebuild with your project 
to see wich artifact.getDependencyConflictId() is responding by null.

 

 

> nbm-maven-plugin fails with NPE
> ---
>
> Key: NETBEANS-2905
> URL: https://issues.apache.org/jira/browse/NETBEANS-2905
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Maven
>Reporter: Tobias Fernandez
>Priority: Major
>
> Several projects sometimes (not always!) fail during 
> npe-maven-plugin:manifest with a NullPointerException. The root cause is 
> probably a null value retrieved from Artifact.getFile(), which doesn't seem 
> to be a foreseen case in nbm-maven-plugin in multiple code locations.
> {code:java}
> [ERROR] Failed to execute goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest 
> (default-manifest) on project mapsupport: Execution default-manifest of goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed. 
> NullPointerException -> [Help 1]
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest 
> (default-manifest) on project mapsupport: Execution default-manifest of goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed.
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:215)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:156)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:148)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.executeForkedExecutions 
> (MojoExecutor.java:355)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:200)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:156)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:148)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:56)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
> at org.jvnet.hudson.maven3.launcher.Maven35Launcher.main 
> (Maven35Launcher.java:130)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at jenkins.maven3.agent.Maven35Main.launch (Maven35Main.java:178)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at hudson.maven.Maven3Builder.call (Maven3Builder.java:139)
> at hudson.maven.Maven3Builder.call (Maven3Builder.java:70)
> at hudson.remoting.UserRequest.perform (UserRequest.java:212)
> at hudson.remoting.UserRequest.perform (UserRequest.java:54)
> at hudson.remoting.Request$2.run (Request.java:369)
> at hudson.remoting.InterceptingExecutorService$1.call 
> (InterceptingExecutorService.java:72)
> at java.util.concurrent.FutureTask.run (FutureTask.java:266)
> at java.util.concurrent.ThreadPoolExecutor.runWorker 
> (ThreadPoolExecutor.java:1149)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run 
> (ThreadPoolExecutor.java:624)
> at java.lang.Thread.run (Thread.java:748)
> Caused by: 

[jira] [Commented] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-07-26 Thread Vincenzo Luongo (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893826#comment-16893826
 ] 

Vincenzo Luongo commented on NETBEANS-2903:
---

Hi [~junichi11], sorry for giving you the problem, netbeans can start and I 
have already tried to delete user dir and cache dir, but "sometimes" the 
problem reappears and the json or js files are not colored and read as such. 
maybe a problem with the form?

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-2905) nbm-maven-plugin fails with NPE

2019-07-26 Thread Tobias Fernandez (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2905?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893824#comment-16893824
 ] 

Tobias Fernandez commented on NETBEANS-2905:


Hi, thanks for your reponse!

We do not use multithreaded builds.

The problematic code is in _CollectLibrariesNodeVisitor_ _visit()_ method, 
where it assumes that _artifact.getFile()_ is not null and calls 
_depExaminator.setArtifactFile()_ with it. Maybe the artifact hasn't been 
resolved correctly before and the file therefore is null?

The problem appeared the first time when we started to include 
_maven-site-plugin_ and/or _license-maven-plugin_ in the parent project. 
However we've no clue what's really causing this and why it doesn't happen all 
the time.

> nbm-maven-plugin fails with NPE
> ---
>
> Key: NETBEANS-2905
> URL: https://issues.apache.org/jira/browse/NETBEANS-2905
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Maven
>Reporter: Tobias Fernandez
>Priority: Major
>
> Several projects sometimes (not always!) fail during 
> npe-maven-plugin:manifest with a NullPointerException. The root cause is 
> probably a null value retrieved from Artifact.getFile(), which doesn't seem 
> to be a foreseen case in nbm-maven-plugin in multiple code locations.
> {code:java}
> [ERROR] Failed to execute goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest 
> (default-manifest) on project mapsupport: Execution default-manifest of goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed. 
> NullPointerException -> [Help 1]
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest 
> (default-manifest) on project mapsupport: Execution default-manifest of goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed.
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:215)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:156)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:148)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.executeForkedExecutions 
> (MojoExecutor.java:355)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:200)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:156)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:148)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:56)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
> at org.jvnet.hudson.maven3.launcher.Maven35Launcher.main 
> (Maven35Launcher.java:130)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at jenkins.maven3.agent.Maven35Main.launch (Maven35Main.java:178)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at hudson.maven.Maven3Builder.call (Maven3Builder.java:139)
> at hudson.maven.Maven3Builder.call (Maven3Builder.java:70)
> at hudson.remoting.UserRequest.perform (UserRequest.java:212)
> at hudson.remoting.UserRequest.perform (UserRequest.java:54)
> at hudson.remoting.Request$2.run (Request.java:369)
> at hudson.remoting.InterceptingExecutorService$1.call 
> (InterceptingExecutorService.java:72)
> at java.util.concurrent.FutureTask.run (FutureTask.java:266)
> at java.util.concurrent.ThreadPoolExecutor.runWorker 
> (ThreadPoolExecutor.java:1149)
> 

[jira] [Commented] (NETBEANS-2905) nbm-maven-plugin fails with NPE

2019-07-26 Thread Eric Barboni (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2905?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893811#comment-16893811
 ] 

Eric Barboni commented on NETBEANS-2905:


Hi, thanks for reporting.

Very strange, I did not see any class from the nbm-maven-plugin.

Do you use multithread build ? ( mvn -T ... ) 

I yes, try not to use that, plugin is not threadsafe.

> nbm-maven-plugin fails with NPE
> ---
>
> Key: NETBEANS-2905
> URL: https://issues.apache.org/jira/browse/NETBEANS-2905
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Maven
>Reporter: Tobias Fernandez
>Priority: Major
>
> Several projects sometimes (not always!) fail during 
> npe-maven-plugin:manifest with a NullPointerException. The root cause is 
> probably a null value retrieved from Artifact.getFile(), which doesn't seem 
> to be a foreseen case in nbm-maven-plugin in multiple code locations.
> {code:java}
> [ERROR] Failed to execute goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest 
> (default-manifest) on project mapsupport: Execution default-manifest of goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed. 
> NullPointerException -> [Help 1]
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest 
> (default-manifest) on project mapsupport: Execution default-manifest of goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed.
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:215)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:156)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:148)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.executeForkedExecutions 
> (MojoExecutor.java:355)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:200)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:156)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:148)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:56)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
> at org.jvnet.hudson.maven3.launcher.Maven35Launcher.main 
> (Maven35Launcher.java:130)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at jenkins.maven3.agent.Maven35Main.launch (Maven35Main.java:178)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at hudson.maven.Maven3Builder.call (Maven3Builder.java:139)
> at hudson.maven.Maven3Builder.call (Maven3Builder.java:70)
> at hudson.remoting.UserRequest.perform (UserRequest.java:212)
> at hudson.remoting.UserRequest.perform (UserRequest.java:54)
> at hudson.remoting.Request$2.run (Request.java:369)
> at hudson.remoting.InterceptingExecutorService$1.call 
> (InterceptingExecutorService.java:72)
> at java.util.concurrent.FutureTask.run (FutureTask.java:266)
> at java.util.concurrent.ThreadPoolExecutor.runWorker 
> (ThreadPoolExecutor.java:1149)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run 
> (ThreadPoolExecutor.java:624)
> at java.lang.Thread.run (Thread.java:748)
> Caused by: org.apache.maven.plugin.PluginExecutionException: Execution 
> default-manifest of goal 
> org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed.
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
> 

[jira] [Comment Edited] (NETBEANS-2870) A java.lang.AssertionError exception has occurred

2019-07-26 Thread jose luis romero (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2870?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893765#comment-16893765
 ] 

jose luis romero edited comment on NETBEANS-2870 at 7/26/19 12:14 PM:
--

It began to show up in other cases.

Like by simply replacing a parameter:
{code:java}
new ObjectX(obj.getBigDecimalValue(), obj.getAnotherField());{code}
trying to replace with
{code:java}
new ObjectX(BigDecimal.ZERO,    .);{code}
typing BigDecimal or BigDecima.ZERO and pressing enter the code typed or 
suggested disappears 


was (Author: firuzzz):
It began to show up in other cases.

Like by simple replacing a parameter:
{code:java}
new ObjectX(obj.getBigDecimalValue(), obj.getAnotherField());{code}
trying to replace with
{code:java}
new ObjectX(BigDecimal.ZERO,    .);{code}
typing BigDecimal or BigDecima.ZERO and pressing enter the code typed or 
suggested disappears 

> A java.lang.AssertionError exception has occurred
> -
>
> Key: NETBEANS-2870
> URL: https://issues.apache.org/jira/browse/NETBEANS-2870
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion
>Affects Versions: 11.1
> Environment: Windows 10
>Reporter: jose luis romero
>Priority: Major
> Attachments: messages.log
>
>
> After pressing CTRL SPACE to get the list on autocomplete on
> {code:java}
> TitularMutual tm = controller.; //between doc and semicolon{code}
> I select one to complete the method name and nothing happens, like if I were 
> pressed ESC instead.
> If I resolve the uncaught exception in the next line (below), the 
> autocomplete works fine
> Complete code case:
>  
> {code:java}
> for (Titulares t : tt) { 
>   TitularMutual tm = controller.; 
>   int plan = contr.determinarPlan(t, tm); //on this line, there is an 
> unreported excep to be catched 
> planes.get(plan).add(t);
>  }
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2870) A java.lang.AssertionError exception has occurred

2019-07-26 Thread jose luis romero (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

jose luis romero updated NETBEANS-2870:
---
Description: 
After pressing CTRL SPACE to get the list on autocomplete on
{code:java}
TitularMutual tm = controller.; //between doc and semicolon{code}
I select one to complete the method name and nothing happens, like if I were 
pressed ESC instead.

If I resolve the uncaught exception in the next line (below), the autocomplete 
works fine

Complete code case:

 
{code:java}
for (Titulares t : tt) { 
  TitularMutual tm = controller.; 
  int plan = contr.determinarPlan(t, tm); //on this line, there is an 
unreported excep to be catched 

planes.get(plan).add(t);
 }
{code}
 

  was:
After pressing CTRL SPACE to get the list on autocomplete on
{code:java}
TitularMutual tm = controller.; //between doc and semicolon{code}
I select one to complete the method name and nothing happens, like if I were 
pressed ESC instead.

If I resolve the uncaught exception in the next line (below), the autocomplete 
works fine

Complete code case:

 
{code:java}
for (Titulares t : tt) { 
  TitularMutual tm = controller.; 
  int plan = contr.determinarPlan(t, tm); //on this line, there is an 
unreported excep to be catched planes.get(plan).add(t);
 }
{code}
 


> A java.lang.AssertionError exception has occurred
> -
>
> Key: NETBEANS-2870
> URL: https://issues.apache.org/jira/browse/NETBEANS-2870
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion
>Affects Versions: 11.1
> Environment: Windows 10
>Reporter: jose luis romero
>Priority: Major
> Attachments: messages.log
>
>
> After pressing CTRL SPACE to get the list on autocomplete on
> {code:java}
> TitularMutual tm = controller.; //between doc and semicolon{code}
> I select one to complete the method name and nothing happens, like if I were 
> pressed ESC instead.
> If I resolve the uncaught exception in the next line (below), the 
> autocomplete works fine
> Complete code case:
>  
> {code:java}
> for (Titulares t : tt) { 
>   TitularMutual tm = controller.; 
>   int plan = contr.determinarPlan(t, tm); //on this line, there is an 
> unreported excep to be catched 
> planes.get(plan).add(t);
>  }
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2870) A java.lang.AssertionError exception has occurred

2019-07-26 Thread jose luis romero (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

jose luis romero updated NETBEANS-2870:
---
Description: 
After pressing CTRL SPACE to get the list on autocomplete on
{code:java}
TitularMutual tm = controller.; //between doc and semicolon{code}
I select one to complete the method name and nothing happens, like if I were 
pressed ESC instead.

If I resolve the uncaught exception in the next line (below), the autocomplete 
works fine

Complete code case:

 
{code:java}
for (Titulares t : tt) { 
  TitularMutual tm = controller.; 
  int plan = contr.determinarPlan(t, tm); //on this line, there is an 
unreported excep to be catched planes.get(plan).add(t);
 }
{code}
 

  was:
After pressing CTRL SPACE to get the list on autocomplete on

TitularMutual tm = controller.; //between doc and semicolon

I select one to complete the method name and nothing happens, like if I were 
pressed ESC instead.

If I resolve the uncaught exception in the next line (below), the autocomplete 
works fine

Complete code case:

for (Titulares t : tt)

{   TitularMutual tm = controller.;   int plan = contr.determinarPlan(t, tm); 
//on this line, there is an unreported excep to be catched 
planes.get(plan).add(t); }


> A java.lang.AssertionError exception has occurred
> -
>
> Key: NETBEANS-2870
> URL: https://issues.apache.org/jira/browse/NETBEANS-2870
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion
>Affects Versions: 11.1
> Environment: Windows 10
>Reporter: jose luis romero
>Priority: Major
> Attachments: messages.log
>
>
> After pressing CTRL SPACE to get the list on autocomplete on
> {code:java}
> TitularMutual tm = controller.; //between doc and semicolon{code}
> I select one to complete the method name and nothing happens, like if I were 
> pressed ESC instead.
> If I resolve the uncaught exception in the next line (below), the 
> autocomplete works fine
> Complete code case:
>  
> {code:java}
> for (Titulares t : tt) { 
>   TitularMutual tm = controller.; 
>   int plan = contr.determinarPlan(t, tm); //on this line, there is an 
> unreported excep to be catched planes.get(plan).add(t);
>  }
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-2870) A java.lang.AssertionError exception has occurred

2019-07-26 Thread jose luis romero (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2870?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893765#comment-16893765
 ] 

jose luis romero commented on NETBEANS-2870:


It began to show up in other cases.

Like by simple replacing a parameter:
{code:java}
new ObjectX(obj.getBigDecimalValue(), obj.getAnotherField());{code}
trying to replace with
{code:java}
new ObjectX(BigDecimal.ZERO,    .);{code}
typing BigDecimal or BigDecima.ZERO and pressing enter the code typed or 
suggested disappears 

> A java.lang.AssertionError exception has occurred
> -
>
> Key: NETBEANS-2870
> URL: https://issues.apache.org/jira/browse/NETBEANS-2870
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion
>Affects Versions: 11.1
> Environment: Windows 10
>Reporter: jose luis romero
>Priority: Major
> Attachments: messages.log
>
>
> After pressing CTRL SPACE to get the list on autocomplete on
> TitularMutual tm = controller.; //between doc and semicolon
> I select one to complete the method name and nothing happens, like if I were 
> pressed ESC instead.
> If I resolve the uncaught exception in the next line (below), the 
> autocomplete works fine
> Complete code case:
> for (Titulares t : tt)
> {   TitularMutual tm = controller.;   int plan = contr.determinarPlan(t, tm); 
> //on this line, there is an unreported excep to be catched 
> planes.get(plan).add(t); }



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[netbeans-jenkins-lib] branch master updated: typo on netbeansjavadoc parameter

2019-07-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new fdd8745  typo on netbeansjavadoc parameter
fdd8745 is described below

commit fdd8745317415625d721fc84b9cb5defa4b94e7e
Author: Eric Barboni 
AuthorDate: Fri Jul 26 14:05:23 2019 +0200

typo on netbeansjavadoc parameter
---
 vars/asfMainNetBeansBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index 730836a..5a84cc6 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -93,7 +93,7 @@ def call(Map params = [:]) {
 {
 sh "mvn 
org.apache.maven.plugins:maven-dependency-plugin:3.1.1:get 
-Dartifact=org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT 
-DremoteRepositories=apache.snapshots.httpshttps://repository.apache.org/snapshots;
 sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT:download 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-DrepositoryUrl=https://repo.maven.apache.org/maven2;
-sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT:populate 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-DnetbeansNbmDirectory=${env.WORKSPACE}/nbbuild/nbms 
-DnetbeansInstallDirectory=${env.WORKSPACE}/nbbuild/netbeans 
-DnetbeansSourcesDirectory=${env.WORKSPACE}/nbbuild/build/source-zips 
-DnebeansJavadocDirectory=${env.WORKSPACE}/nbbuild/build/javadoc 
-DparentGAV=org.apache.netbeans:netbeans-parent:2 -DforcedVersion=${mavenVers 
[...]
+sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT:populate 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-DnetbeansNbmDirectory=${env.WORKSPACE}/nbbuild/nbms 
-DnetbeansInstallDirectory=${env.WORKSPACE}/nbbuild/netbeans 
-DnetbeansSourcesDirectory=${env.WORKSPACE}/nbbuild/build/source-zips 
-DnetbeansJavadocDirectory=${env.WORKSPACE}/nbbuild/build/javadoc 
-DparentGAV=org.apache.netbeans:netbeans-parent:2 -DforcedVersion=${mavenVer 
[...]
 }
 
 } else {
@@ -144,7 +144,7 @@ def call(Map params = [:]) {
 {
 sh "mvn 
org.apache.maven.plugins:maven-dependency-plugin:3.1.1:get 
-Dartifact=org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT 
-Dmaven.repo.local=${env.WORKSPACE}/.repository 
-DremoteRepositories=apache.snapshots.httpshttps://repository.apache.org/snapshots;
 sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT:download 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-Dmaven.repo.local=${env.WORKSPACE}/.repository 
-DrepositoryUrl=https://repo.maven.apache.org/maven2;
-sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT:populate 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-Dmaven.repo.local=${env.WORKSPACE}/.repository 
-DnetbeansNbmDirectory=${netbeansbase}/nbms 
-DnetbeansInstallDirectory=${netbeansbase}/netbeans 
-DnetbeansSourcesDirectory=${netbeansbase}/build/source-zips 
-DnebeansJavadocDirectory=${netbeansbase}/build/javadoc 
-DparentGAV=org.apache.netbeans:netbeans-parent:2 -DforcedVersion [...]
+sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT:populate 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-Dmaven.repo.local=${env.WORKSPACE}/.repository 
-DnetbeansNbmDirectory=${netbeansbase}/nbms 
-DnetbeansInstallDirectory=${netbeansbase}/netbeans 
-DnetbeansSourcesDirectory=${netbeansbase}/build/source-zips 
-DnetbeansJavadocDirectory=${netbeansbase}/build/javadoc 
-DparentGAV=org.apache.netbeans:netbeans-parent:2 -DforcedVersio [...]
 }
 
 archiveArtifacts 'dist/**'


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

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



[jira] [Commented] (NETBEANS-2881) [org.netbeans.modules.javascript2.editor.parser.SanitizingParser]: Exception during parsing java.lang.StringIndexOutOfBoundsException: String index out of range: -1

2019-07-26 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2881?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893754#comment-16893754
 ] 

Junichi Yamamoto commented on NETBEANS-2881:


{quote}this is a duplicate?
{quote}
Maybe, no.

> [org.netbeans.modules.javascript2.editor.parser.SanitizingParser]: Exception 
> during parsing java.lang.StringIndexOutOfBoundsException: String index out of 
> range: -1
> 
>
> Key: NETBEANS-2881
> URL: https://issues.apache.org/jira/browse/NETBEANS-2881
> Project: NetBeans
>  Issue Type: Bug
>  Components: javascript - Editor, javascript - JSON
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: idelog, idelog, image-2019-07-24-12-47-46-509.png, 
> netbeans-2881-ignore-test-directory.png, uilog, uilog
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> after upgrade to 11.1 from 11.0 scanning my projects (all laravel php) out 
> this errors



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Assigned] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further modu

2019-07-26 Thread Junichi Yamamoto (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Junichi Yamamoto reassigned NETBEANS-2903:
--

Assignee: (was: Junichi Yamamoto)

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Created] (NETBEANS-2906) Parsing of some Java source files fails under Windows

2019-07-26 Thread Heiko Wenzel (JIRA)
Heiko Wenzel created NETBEANS-2906:
--

 Summary: Parsing of some Java source files fails under Windows
 Key: NETBEANS-2906
 URL: https://issues.apache.org/jira/browse/NETBEANS-2906
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.0, 11.1
Reporter: Heiko Wenzel


To see the bug:

Open a java source File i.e. "javafx.scene.control.TableCell" with menu action 
"File/open File"
If you do so, you will see, that you get an exception and in the Netbeans 
Navigator Tab (Ctrl-7) is nothing to see.

The bigger problem is, that you cannot find and open these classes with context 
menu "Navigate/ Goto Source" and the Javadoc also cannot display.

But, if you do this in Linux - It works!

Other Examples which work:
javafx.beans.property.SimpleObjectProperty;
javafx.beans.value.ChangeListener;

and work not:
javafx.application.Platform;
javafx.scene.control.ScrollBar;

 



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Created] (NETBEANS-2905) nbm-maven-plugin fails with NPE

2019-07-26 Thread Tobias Fernandez (JIRA)
Tobias Fernandez created NETBEANS-2905:
--

 Summary: nbm-maven-plugin fails with NPE
 Key: NETBEANS-2905
 URL: https://issues.apache.org/jira/browse/NETBEANS-2905
 Project: NetBeans
  Issue Type: Bug
  Components: apisupport - Maven
Reporter: Tobias Fernandez


Several projects sometimes (not always!) fail during npe-maven-plugin:manifest 
with a NullPointerException. The root cause is probably a null value retrieved 
from Artifact.getFile(), which doesn't seem to be a foreseen case in 
nbm-maven-plugin in multiple code locations.
{code:java}
[ERROR] Failed to execute goal 
org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest (default-manifest) 
on project mapsupport: Execution default-manifest of goal 
org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed. 
NullPointerException -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal 
org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest (default-manifest) 
on project mapsupport: Execution default-manifest of goal 
org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed.
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:215)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.MojoExecutor.executeForkedExecutions 
(MojoExecutor.java:355)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:200)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
(LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
(LifecycleModuleBuilder.java:81)
at 
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
 (SingleThreadedBuilder.java:56)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
at org.jvnet.hudson.maven3.launcher.Maven35Launcher.main 
(Maven35Launcher.java:130)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke 
(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke 
(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:498)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
(Launcher.java:229)
at jenkins.maven3.agent.Maven35Main.launch (Maven35Main.java:178)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke 
(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke 
(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:498)
at hudson.maven.Maven3Builder.call (Maven3Builder.java:139)
at hudson.maven.Maven3Builder.call (Maven3Builder.java:70)
at hudson.remoting.UserRequest.perform (UserRequest.java:212)
at hudson.remoting.UserRequest.perform (UserRequest.java:54)
at hudson.remoting.Request$2.run (Request.java:369)
at hudson.remoting.InterceptingExecutorService$1.call 
(InterceptingExecutorService.java:72)
at java.util.concurrent.FutureTask.run (FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker 
(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run 
(ThreadPoolExecutor.java:624)
at java.lang.Thread.run (Thread.java:748)
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution 
default-manifest of goal 
org.apache.netbeans.utilities:nbm-maven-plugin:4.2:manifest failed.
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
(DefaultBuildPluginManager.java:148)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:210)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.MojoExecutor.executeForkedExecutions 
(MojoExecutor.java:355)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:200)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 

[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 868

2019-07-26 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new e7ec235  Automated site publishing by Jenkins build 868
e7ec235 is described below

commit e7ec235b3c3d27fe02031e02d055710b2affad0f
Author: jenkins 
AuthorDate: Fri Jul 26 09:17:32 2019 +

Automated site publishing by Jenkins build 868
---
 content/download/dev/index.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/download/dev/index.html b/content/download/dev/index.html
index 5c9b341..50b0d34 100644
--- a/content/download/dev/index.html
+++ b/content/download/dev/index.html
@@ -107,7 +107,7 @@ download (unsupported) daily development builds.
 Clone the https://github.com/apache/netbeans; 
class="bare">https://github.com/apache/netbeans GitHub repository.
 
 
-Install Oracles Java 8 or Open JDK v8.
+Install Oracles Java or Open JDK (v8, v11).
 
 
 Install Apache Ant 1.10 or greater (https://ant.apache.org/; 
class="bare">https://ant.apache.org/).
@@ -120,7 +120,7 @@ download (unsupported) daily development builds.
 
 
 
-ant to build the Apache NetBeans IDE.
+ant to build the Apache NetBeans IDE on JDK 8, on JDK 11 also 
type -Dpermit.jdk9.builds=true with the ant command.
 
 
 


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

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



[netbeans-website] branch master updated: Update notes on JDK to build with

2019-07-26 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/master by this push:
 new 1c07ba7  Update notes on JDK to build with
 new 88bd6a5  Merge pull request #403 from Rareitor/patch-2
1c07ba7 is described below

commit 1c07ba78719eaf81d4d814cee4d14b0bd4908779
Author: Rareitor 
AuthorDate: Thu Jul 25 10:22:48 2019 -0500

Update notes on JDK to build with

Mention JDK 11 with regards to building Netbeans, mention also the flag 
that needs to be enabled when using ant to build.
Have not tried to build with other non-LTS JDK, but if I can, will update 
this modification to reflect it.
---
 netbeans.apache.org/src/content/download/dev/index.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/netbeans.apache.org/src/content/download/dev/index.asciidoc 
b/netbeans.apache.org/src/content/download/dev/index.asciidoc
index 6bd5fe1..8648b0c 100644
--- a/netbeans.apache.org/src/content/download/dev/index.asciidoc
+++ b/netbeans.apache.org/src/content/download/dev/index.asciidoc
@@ -37,12 +37,12 @@ Please visit 
link:https://builds.apache.org/job/netbeans-linux/[https://builds.a
 You can of course build Apache NetBeans from source. To do so:
 
 . Clone the https://github.com/apache/netbeans GitHub repository.
-. Install Oracle's Java 8 or Open JDK v8.
+. Install Oracle's Java or Open JDK (v8, v11).
 . Install Apache Ant 1.10 or greater (https://ant.apache.org/).
 
 Once you're all set just enter the `netbeans` directory and type:
 
-- `ant` to build the Apache NetBeans IDE.
+- `ant` to build the Apache NetBeans IDE on JDK 8, on JDK 11 also type 
-Dpermit.jdk9.builds=true with the `ant` command.
   ** Once built, the IDE bits are placed in the `./nbbuild/netbeans` 
directory. You can run the IDE from within the `netbeans` directory by typing 
`./nbbuild/netbeans/bin/netbeans` on unixes (for Windows the command is 
equivalent).
 - `ant tryme` to run the Apache NetBeans IDE.
 


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

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



[netbeans-website] branch geertjanw-patch-13 created (now 50dc393)

2019-07-26 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch geertjanw-patch-13
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git.


  at 50dc393  Adding note in 11.0 about 11.1

No new revisions were added by this update.


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

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



[jira] [Resolved] (NETBEANS-2783) Maven dependencies node does not show dependencies added editing POM

2019-07-26 Thread Alessandro Falappa (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alessandro Falappa resolved NETBEANS-2783.
--
   Resolution: Fixed
Fix Version/s: 11.2

Pull request has been merged. Will be in NB 11.2.

> Maven dependencies node does not show dependencies added editing POM
> 
>
> Key: NETBEANS-2783
> URL: https://issues.apache.org/jira/browse/NETBEANS-2783
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Generic Projects UI, projects - Maven
>Affects Versions: 11.0, 11.1
> Environment: Product Version: Apache NetBeans IDE 11.1
> Updates: Updates available
> Java: 1.8.0_202; OpenJDK 64-Bit Server VM 25.202-b08
> Runtime: OpenJDK Runtime Environment 1.8.0_202-b08
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_IE (nb)
> User directory: C:\Users\falappa\AppData\Roaming\NetBeans\11.1
> Cache directory: C:\Users\falappa\AppData\Local\NetBeans\Cache\11.1
>Reporter: Alessandro Falappa
>Assignee: Alessandro Falappa
>Priority: Major
>  Labels: pull-request-available, regression
> Fix For: 11.2
>
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Steps:
>  # Open or create a new maven project
>  # Expand the Dependencies node in Projects view
>  # Open pom.xml and add a dependency that has never been used before, i.e. is 
> not in the local maven repository (.m2/repository)
>  # Save pom.xml
> _Expected_ (works in NB 8.2): a jar entry with  the name of the dependency 
> artifact appears under the Dependencies node of the project with a yellow 
> triangle badge indicating new dependency detected but missing local copy.
> _Actual_ (broken in NB11.0 and NB11.1-beta2): no jar entry appears, the log 
> contains the following warning (here for commons-math3 dependency):
> {code:java}
> // WARNING [org.netbeans.modules.maven.nodes.DependenciesNode]: Could not 
> determine module name for artifact 
> jar:file:/C:/Users/falappa/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar!/
> {code}
> In NB11.0 and NB11.1-beta2 after rebuilding the project the dependencies node 
> gets updated and a regular jar entry appears. In NB8.2 after rebuilding the 
> project the yellow triangle badge disappears.
> I had a look at the code and it looks like something got broken when adding 
> modular Java support, i.e. in NB 9.0, as the code is trying to determine Java 
> module names for each dependency.
> This is a regression, NetBeans 8.2 works, NetBeans 11.0 and NetBeans 
> 11.1-beta2 do not, NetBeans 9.0 and 10.0 not tested.
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[netbeans] branch geertjanw-patch-1 created (now 66e2a97)

2019-07-26 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch geertjanw-patch-1
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


  at 66e2a97  Updates to JDK support notifications

No new revisions were added by this update.


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

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



[jira] [Assigned] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further modu

2019-07-26 Thread Vincenzo Luongo (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vincenzo Luongo reassigned NETBEANS-2903:
-

Assignee: Junichi Yamamoto

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-2881) [org.netbeans.modules.javascript2.editor.parser.SanitizingParser]: Exception during parsing java.lang.StringIndexOutOfBoundsException: String index out of range: -1

2019-07-26 Thread Vincenzo Luongo (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2881?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893467#comment-16893467
 ] 

Vincenzo Luongo commented on NETBEANS-2881:
---

yes i try it, but i have another similat problem: 
https://issues.apache.org/jira/browse/NETBEANS-2903 this is a duplicate?

> [org.netbeans.modules.javascript2.editor.parser.SanitizingParser]: Exception 
> during parsing java.lang.StringIndexOutOfBoundsException: String index out of 
> range: -1
> 
>
> Key: NETBEANS-2881
> URL: https://issues.apache.org/jira/browse/NETBEANS-2881
> Project: NetBeans
>  Issue Type: Bug
>  Components: javascript - Editor, javascript - JSON
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: idelog, idelog, image-2019-07-24-12-47-46-509.png, 
> netbeans-2881-ignore-test-directory.png, uilog, uilog
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> after upgrade to 11.1 from 11.0 scanning my projects (all laravel php) out 
> this errors



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further modul

2019-07-26 Thread Vincenzo Luongo (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vincenzo Luongo updated NETBEANS-2903:
--
Attachment: IDELOG
UILOG

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Commented] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-07-26 Thread Vincenzo Luongo (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16893466#comment-16893466
 ] 

Vincenzo Luongo commented on NETBEANS-2903:
---

now refresh indeces and out ERRORS (in appachment)

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Created] (NETBEANS-2904) java permissions issue for NetBeans projects build/run on Mac osx 10.15

2019-07-26 Thread Reema Taneja (JIRA)
Reema Taneja created NETBEANS-2904:
--

 Summary: java permissions issue for NetBeans projects build/run on 
Mac osx 10.15 
 Key: NETBEANS-2904
 URL: https://issues.apache.org/jira/browse/NETBEANS-2904
 Project: NetBeans
  Issue Type: Improvement
  Components: ide - Code
Reporter: Reema Taneja


This came as feedback from Apache NetBeans 11.1 Installer testing on Mac OSX 
10.15:
There's java permissions issue that can prevent NetBeans projects from being 
built/run. For 11.2, NB could check for this and pop up a dialog giving 
instructions on how to grant Java full disk access if necessary. Should test 
installer as well as NetBeans.
Users have to explicitly grant java "Full Disk Access" in System 
Preferences-->Security and Privacy.




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Created] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further modul

2019-07-26 Thread Vincenzo Luongo (JIRA)
Vincenzo Luongo created NETBEANS-2903:
-

 Summary: Warning - could not install some modules: Nashorn 
Integration - No module providing the capability 
com.oracle.js.parser.implementation could be found. 19 further modules could 
not be installed due to the above problems
 Key: NETBEANS-2903
 URL: https://issues.apache.org/jira/browse/NETBEANS-2903
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
Reporter: Vincenzo Luongo
 Attachments: image-2019-07-26-09-55-52-490.png

Hi all,

first start netbeans block in loading modules, force close from htop and 
restart, out this error:

Warning - could not install some modules:
Nashorn Integration - No module providing the capability 
com.oracle.js.parser.implementation could be found.
19 further modules could not be installed due to the above problems

!image-2019-07-26-09-55-06-870.png!

I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further modul

2019-07-26 Thread Vincenzo Luongo (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vincenzo Luongo updated NETBEANS-2903:
--
Description: 
Hi all,

first start netbeans block in loading modules, force close from htop and 
restart, out this error:

Warning - could not install some modules:
 Nashorn Integration - No module providing the capability 
com.oracle.js.parser.implementation could be found.
 19 further modules could not be installed due to the above problems

Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!

I use latest snap 11.1 Fedora 30 latest version

  was:
Hi all,

first start netbeans block in loading modules, force close from htop and 
restart, out this error:

Warning - could not install some modules:
Nashorn Integration - No module providing the capability 
com.oracle.js.parser.implementation could be found.
19 further modules could not be installed due to the above problems

!image-2019-07-26-09-55-06-870.png!

I use latest snap 11.1 Fedora 30 latest version


> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further modul

2019-07-26 Thread Vincenzo Luongo (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vincenzo Luongo updated NETBEANS-2903:
--
Attachment: image-2019-07-26-09-55-52-490.png

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
> Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
> 19 further modules could not be installed due to the above problems
> !image-2019-07-26-09-55-06-870.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Updated] (NETBEANS-2902) Mac installer binary should be notarised to support upcoming 10.15

2019-07-26 Thread Reema Taneja (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2902?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Reema Taneja updated NETBEANS-2902:
---
Affects Version/s: 11.1

> Mac installer binary should be notarised to support upcoming 10.15
> --
>
> Key: NETBEANS-2902
> URL: https://issues.apache.org/jira/browse/NETBEANS-2902
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Reema Taneja
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[jira] [Created] (NETBEANS-2902) Mac installer binary should be notarised to support upcoming 10.15

2019-07-26 Thread Reema Taneja (JIRA)
Reema Taneja created NETBEANS-2902:
--

 Summary: Mac installer binary should be notarised to support 
upcoming 10.15
 Key: NETBEANS-2902
 URL: https://issues.apache.org/jira/browse/NETBEANS-2902
 Project: NetBeans
  Issue Type: Bug
Reporter: Reema Taneja






--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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