[netbeans] branch master updated: [NETBEANS-4844] Non-empy modulebootpath shall be provided for non-modular code as well.

2020-09-30 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 da730a6  [NETBEANS-4844] Non-empy modulebootpath shall be provided for 
non-modular code as well.
da730a6 is described below

commit da730a6bc4fe09c621b0aa93bb8ea1e806c20c13
Author: Laszlo Kishalmi 
AuthorDate: Thu Sep 24 22:33:26 2020 -0700

[NETBEANS-4844] Non-empy modulebootpath shall be provided for non-modular 
code as well.
---
 .../netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java
 
b/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java
index ca22ea5..db5e474 100644
--- 
a/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java
+++ 
b/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java
@@ -299,8 +299,7 @@ public final class ClassPathProviderImpl extends 
ProjectOpenedHook implements Cl
 
 private synchronized ClassPath getModuleBoothPath() {
 if (moduleBoot == null) {
-//TODO: Is this Ok? Made after the Maven's 
ClassPathProviderImpl.getModuleBootPath
-moduleBoot = 
createMultiplexClassPath(getPlatformModulesPath(), getPlatformModulesPath());
+moduleBoot = 
createMultiplexClassPath(getPlatformModulesPath(), getBootClassPath());
 }
 return moduleBoot;
 }


-
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-4867) Gradle SubProject loading is inconsistent

2020-09-30 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-4867:
-
Labels: pull-request-available  (was: )

> Gradle SubProject loading is inconsistent
> -
>
> Key: NETBEANS-4867
> URL: https://issues.apache.org/jira/browse/NETBEANS-4867
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> It is not always detected whether a folder is a Sub project of a Gradle 
> multi-project build. Even when the full project information is available, 
> reloading the project does not work, even if the project information is 
> cached.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4867) Gradle SubProject loading is inconsistent

2020-09-30 Thread Laszlo Kishalmi (Jira)
Laszlo Kishalmi created NETBEANS-4867:
-

 Summary: Gradle SubProject loading is inconsistent
 Key: NETBEANS-4867
 URL: https://issues.apache.org/jira/browse/NETBEANS-4867
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
Reporter: Laszlo Kishalmi
Assignee: Laszlo Kishalmi


It is not always detected whether a folder is a Sub project of a Gradle 
multi-project build. Even when the full project information is available, 
reloading the project does not work, even if the project information is cached.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4866) Netbean can become a zombie process with no IDE UI after Banner.

2020-09-30 Thread Finally Not Oracle (Jira)
Finally Not Oracle created NETBEANS-4866:


 Summary: Netbean can become a zombie process with no IDE UI after 
Banner.
 Key: NETBEANS-4866
 URL: https://issues.apache.org/jira/browse/NETBEANS-4866
 Project: NetBeans
  Issue Type: Bug
  Components: ide - UI
Affects Versions: 11.1, 12.1
 Environment: Windows 10 Professional, latest update, and AdoptOpenJDK 
jdk-15.0.0.36-hotspot
Reporter: Finally Not Oracle
 Attachments: messages.zip

The latest zombie process incident happened when clicked the restart prompt 
after disable the C++ plugin.  Multiple starts, temporary Banner display, 
minute waits, process kills, and required (!) manual lock file deletes later, 
but still no visible IDE UI!

I've attached 12.1\var\log\messages.log in a zip file.

I suspect that what is happening is that some of the saved state becomes 
invalid or there is a module conflict, so NetBeans is unable to show a window, 
so effectively becomes a zombie process.  I managed to resolve prior incidents 
by deleting the config directory in the profile directory, but that is a 
horrible solution!

My suggestion is that, at startup, any saved state or plugin which prevents IDE 
UI display is disabled or reverted to defaults, the repaired state saved, and 
NetBeans exits, maybe with  counter limited restarts.

BTW:
 * I hope that this isn't caused by the AWT/Swing queue stalling, because some 
stupid code is doing busy-work on the AWT/Swing thread, which should be done 
off it.
 * It seems really stupid to attempt any access any project folders before the 
IDE UI is _confirmed as visible_, say by an Atomic flag or event listener, 
because I had to close another process locking some project git files, to stop 
premature/spurious deadlock message noise being logged in message.log...
 * BTW: Isn't about time that the lame lock file, in the profile folder, is 
replaced by try allocation of a keyed unique OS resource, like a localhost 
server socket, from a range of configured port addresses, to avoid the 
pointless drudgery of manually deleted it  after the NetBeans process has died 
without deleting it, say from a crash or process kill.

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4865) EJB Module created as war

2020-09-30 Thread Francesco Savino (Jira)
Francesco Savino created NETBEANS-4865:
--

 Summary: EJB Module created as war 
 Key: NETBEANS-4865
 URL: https://issues.apache.org/jira/browse/NETBEANS-4865
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Other
Affects Versions: 12.1
Reporter: Francesco Savino


I am creating a Maven EJB Module but netbeans creating a war module .

thanks



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4830) Redraw common icons in SVG: First Batch

2020-09-30 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-4830:
-
Labels: HiDPI pull-request-available  (was: HiDPI)

> Redraw common icons in SVG: First Batch
> ---
>
> Key: NETBEANS-4830
> URL: https://issues.apache.org/jira/browse/NETBEANS-4830
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Reporter: Eirik Bakke
>Assignee: Eirik Bakke
>Priority: Major
>  Labels: HiDPI, pull-request-available
> Attachments: NETBEANS-4830 Icons Drawn by Eirik.ai, 
> ide.editor.bookmarks (from Pete Whelpton for NETBEANS-4830).ai, 
> ide.editor.macros (from Pete Whelpton for NETBEANS-4830).ai, 
> ide.seperator.breadcrumbs (from Pete Whelpton for NETBEANS-4830).ai
>
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> Part of the SVG icon drawing process tracked under NETBEANS-2617. Create a 
> separate issue to label the upcoming PR with.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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] [Closed] (NETBEANS-4863) Can't create new PHP project from existing source

2020-09-30 Thread Dusan R (Jira)


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

Dusan R closed NETBEANS-4863.
-
Resolution: Cannot Reproduce

> Can't create new PHP project from existing source
> -
>
> Key: NETBEANS-4863
> URL: https://issues.apache.org/jira/browse/NETBEANS-4863
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 12.1
> Environment: ubuntu 16.04, netbeans 12.1
>Reporter: Dusan R
>Priority: Minor
>
> Clean netbeans install with snap.
> Then New Project → PHP → PHP Application with existing source → choose a 
> existing directory with 0775 permissions in user's home dir. Netbeans creates 
> nbproject dir and project.xml
> {code:java}
> // project.xml is not valid for a php project
> 
> http://www.netbeans.org/ns/project/1;>
> org.netbeans.modules.php.project
> 
> 
> {code}
> And throws an error.
> But using a directory with permissions 0777 doesn't causes the error.
> Netbeans is running as current user, with classic confinement.
> After project was created, and permissions of the dir put back to 0775, 
> netbeans continue to work normally, project proporties can be updated, files 
> can be created or updated, etc.
>  
> 
>  2020-09-29T17:54:16
>  1601394856698
>  101
>  300
>  16
>  CPU INFO
>  4
> 
> 
>  2020-09-29T17:54:16
>  1601394856714
>  102
>  300
>  16
>  SCREEN SIZE
>  1920
>  1080
>  1
> 
> 
>  2020-09-29T17:54:16
>  1601394856715
>  103
>  700
>  16
>  IDE_STARTUP
> 
> 
>  2020-09-29T17:54:17
>  1601394857907
>  125
>  800
>  16
>  USG_LOOK_AND_FEEL
>  GTK
>  GTK look and feel
> 
> 
>  2020-09-29T17:54:20
>  1601394860552
>  128
>  800
>  31
>  MEMORY
>  16689651712
> 
> 
>  2020-09-29T17:54:25
>  1601394865768
>  129
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[Plugins]
>  org.openide.awt.Actions$MenuItem
>  org.openide.awt.AlwaysEnabledAction[Plugins]
>  org.openide.awt.AlwaysEnabledAction
>  Plugins
> 
> 
>  2020-09-29T17:54:45
>  1601394885238
>  172
>  800
>  15
>  INDEXING_STARTED
>  INDEXING_STARTED
>  org.netbeans.modules.parsing.impl.indexing.Bundle
>  0
> 
> 
>  2020-09-29T17:54:45
>  1601394885240
>  173
>  800
>  15
>  INDEXING_FINISHED
>  INDEXING_FINISHED
>  org.netbeans.modules.parsing.impl.indexing.Bundle
>  1
> 
> 
>  2020-09-29T17:54:45
>  1601394885280
>  177
>  500
>  21
>  LOG_WINDOW_DEACTIVATED
>  LOG_WINDOW_DEACTIVATED
>  org.netbeans.core.ui.warmup.Bundle
> 
> 
>  2020-09-29T17:54:45
>  1601394885340
>  178
>  500
>  21
>  LOG_WINDOW_DEACTIVATED
>  LOG_WINDOW_DEACTIVATED
>  org.netbeans.core.ui.warmup.Bundle
> 
> 
>  2020-09-29T17:55:05
>  1601394905502
>  112
>  300
>  16
>  CPU INFO
>  4
> 
> 
>  2020-09-29T17:55:05
>  1601394905514
>  113
>  300
>  16
>  SCREEN SIZE
>  1920
>  1080
>  1
> 
> 
>  2020-09-29T17:55:05
>  1601394905520
>  114
>  700
>  16
>  IDE_STARTUP
> 
> 
>  2020-09-29T17:55:16
>  1601394916277
>  112
>  300
>  16
>  CPU INFO
>  4
> 
> 
>  2020-09-29T17:55:16
>  1601394916295
>  113
>  300
>  16
>  SCREEN SIZE
>  1920
>  1080
>  1
> 
> 
>  2020-09-29T17:55:16
>  1601394916295
>  114
>  700
>  16
>  IDE_STARTUP
> 
> 
>  2020-09-29T17:55:17
>  1601394917836
>  136
>  800
>  16
>  USG_LOOK_AND_FEEL
>  GTK
>  GTK look and feel
> 
> 
>  2020-09-29T17:55:20
>  1601394920853
>  139
>  800
>  15
>  MEMORY
>  16689651712
> 
> 
>  2020-09-29T17:55:24
>  1601394924670
>  140
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[New Project...]
>  org.openide.awt.Actions$MenuItem
>  org.openide.awt.AlwaysEnabledAction[New Project...]
>  org.openide.awt.AlwaysEnabledAction
>  New Project...
> 
> 
>  2020-09-29T17:56:22
>  1601394982463
>  144
>  800
>  15
>  USG_VCS_CLIENT
>  HG
>  CLI
> 
> 
>  2020-09-29T17:56:44
>  1601395004262
>  145
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[New Project...]
>  org.openide.awt.Actions$MenuItem
>  org.openide.awt.AlwaysEnabledAction[New Project...]
>  org.openide.awt.AlwaysEnabledAction
>  New Project...
> 
> 
>  2020-09-29T17:57:05
>  1601395025333
>  146
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[Exit]
>  org.openide.awt.Actions$MenuItem
>  org.netbeans.core.actions.SystemExit[Exit]
>  org.netbeans.core.actions.SystemExit
>  Exit
> 
> 
>  2020-09-29T17:57:06
>  1601395026551
>  147
>  800
>  98
>  INDEXING_STARTED
>  INDEXING_STARTED
>  org.netbeans.modules.parsing.impl.indexing.Bundle
>  0
> 
> 
>  2020-09-29T17:57:06
>  1601395026555
>  148
>  800
>  98
>  INDEXING_FINISHED
>  INDEXING_FINISHED
>  

[jira] [Commented] (NETBEANS-4863) Can't create new PHP project from existing source

2020-09-30 Thread Dusan R (Jira)


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

Dusan R commented on NETBEANS-4863:
---

Does not happen on a different machine with fresh new Ubuntu 20.04 with openJDK 
11 and Netbeans snap and almost the same setup and path to the project. I will 
close the issue because Ubuntu 16.04 is close to EOL. 
I made the bug report because I saw this happen before on different computers.

Thank you for taking a time to look at the issue [~junichi11]

> Can't create new PHP project from existing source
> -
>
> Key: NETBEANS-4863
> URL: https://issues.apache.org/jira/browse/NETBEANS-4863
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 12.1
> Environment: ubuntu 16.04, netbeans 12.1
>Reporter: Dusan R
>Priority: Minor
>
> Clean netbeans install with snap.
> Then New Project → PHP → PHP Application with existing source → choose a 
> existing directory with 0775 permissions in user's home dir. Netbeans creates 
> nbproject dir and project.xml
> {code:java}
> // project.xml is not valid for a php project
> 
> http://www.netbeans.org/ns/project/1;>
> org.netbeans.modules.php.project
> 
> 
> {code}
> And throws an error.
> But using a directory with permissions 0777 doesn't causes the error.
> Netbeans is running as current user, with classic confinement.
> After project was created, and permissions of the dir put back to 0775, 
> netbeans continue to work normally, project proporties can be updated, files 
> can be created or updated, etc.
>  
> 
>  2020-09-29T17:54:16
>  1601394856698
>  101
>  300
>  16
>  CPU INFO
>  4
> 
> 
>  2020-09-29T17:54:16
>  1601394856714
>  102
>  300
>  16
>  SCREEN SIZE
>  1920
>  1080
>  1
> 
> 
>  2020-09-29T17:54:16
>  1601394856715
>  103
>  700
>  16
>  IDE_STARTUP
> 
> 
>  2020-09-29T17:54:17
>  1601394857907
>  125
>  800
>  16
>  USG_LOOK_AND_FEEL
>  GTK
>  GTK look and feel
> 
> 
>  2020-09-29T17:54:20
>  1601394860552
>  128
>  800
>  31
>  MEMORY
>  16689651712
> 
> 
>  2020-09-29T17:54:25
>  1601394865768
>  129
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[Plugins]
>  org.openide.awt.Actions$MenuItem
>  org.openide.awt.AlwaysEnabledAction[Plugins]
>  org.openide.awt.AlwaysEnabledAction
>  Plugins
> 
> 
>  2020-09-29T17:54:45
>  1601394885238
>  172
>  800
>  15
>  INDEXING_STARTED
>  INDEXING_STARTED
>  org.netbeans.modules.parsing.impl.indexing.Bundle
>  0
> 
> 
>  2020-09-29T17:54:45
>  1601394885240
>  173
>  800
>  15
>  INDEXING_FINISHED
>  INDEXING_FINISHED
>  org.netbeans.modules.parsing.impl.indexing.Bundle
>  1
> 
> 
>  2020-09-29T17:54:45
>  1601394885280
>  177
>  500
>  21
>  LOG_WINDOW_DEACTIVATED
>  LOG_WINDOW_DEACTIVATED
>  org.netbeans.core.ui.warmup.Bundle
> 
> 
>  2020-09-29T17:54:45
>  1601394885340
>  178
>  500
>  21
>  LOG_WINDOW_DEACTIVATED
>  LOG_WINDOW_DEACTIVATED
>  org.netbeans.core.ui.warmup.Bundle
> 
> 
>  2020-09-29T17:55:05
>  1601394905502
>  112
>  300
>  16
>  CPU INFO
>  4
> 
> 
>  2020-09-29T17:55:05
>  1601394905514
>  113
>  300
>  16
>  SCREEN SIZE
>  1920
>  1080
>  1
> 
> 
>  2020-09-29T17:55:05
>  1601394905520
>  114
>  700
>  16
>  IDE_STARTUP
> 
> 
>  2020-09-29T17:55:16
>  1601394916277
>  112
>  300
>  16
>  CPU INFO
>  4
> 
> 
>  2020-09-29T17:55:16
>  1601394916295
>  113
>  300
>  16
>  SCREEN SIZE
>  1920
>  1080
>  1
> 
> 
>  2020-09-29T17:55:16
>  1601394916295
>  114
>  700
>  16
>  IDE_STARTUP
> 
> 
>  2020-09-29T17:55:17
>  1601394917836
>  136
>  800
>  16
>  USG_LOOK_AND_FEEL
>  GTK
>  GTK look and feel
> 
> 
>  2020-09-29T17:55:20
>  1601394920853
>  139
>  800
>  15
>  MEMORY
>  16689651712
> 
> 
>  2020-09-29T17:55:24
>  1601394924670
>  140
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[New Project...]
>  org.openide.awt.Actions$MenuItem
>  org.openide.awt.AlwaysEnabledAction[New Project...]
>  org.openide.awt.AlwaysEnabledAction
>  New Project...
> 
> 
>  2020-09-29T17:56:22
>  1601394982463
>  144
>  800
>  15
>  USG_VCS_CLIENT
>  HG
>  CLI
> 
> 
>  2020-09-29T17:56:44
>  1601395004262
>  145
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[New Project...]
>  org.openide.awt.Actions$MenuItem
>  org.openide.awt.AlwaysEnabledAction[New Project...]
>  org.openide.awt.AlwaysEnabledAction
>  New Project...
> 
> 
>  2020-09-29T17:57:05
>  1601395025333
>  146
>  400
>  21
>  UI_ACTION_BUTTON_PRESS
>  UI_ACTION_BUTTON_PRESS
>  org.openide.awt.Bundle
>  org.openide.awt.Actions$MenuItem[Exit]
>  org.openide.awt.Actions$MenuItem
>  

[jira] [Updated] (NETBEANS-4232) Have to restart NetBeans to Change JDK

2020-09-30 Thread KoKo (Jira)


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

KoKo updated NETBEANS-4232:
---
Description: 
To change the *Jave Dependencies* of a *Maven* project, choose another JDK via 
-Options > Java > Maven > Default JDK- *Properties > Build > Compiler > Java 
Platform*, but it doesn't work at once. I must restart the IDE, which is 
annoying!  

!change java dependencies.png! 

  was:To change the *Jave Dependencies* of a *Maven* project, choose another 
JDK via -Options > Java > Maven > Default JDK- *Properties > Build > Compiler > 
Java Platform*, but it doesn't work at once. I must restart the IDE, which is 
annoying! 


> Have to restart NetBeans to Change JDK
> --
>
> Key: NETBEANS-4232
> URL: https://issues.apache.org/jira/browse/NETBEANS-4232
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems, projects - Maven
>Affects Versions: 11.3
> Environment: Windows 10
>Reporter: KoKo
>Priority: Blocker
> Attachments: change java dependencies.png
>
>
> To change the *Jave Dependencies* of a *Maven* project, choose another JDK 
> via -Options > Java > Maven > Default JDK- *Properties > Build > Compiler > 
> Java Platform*, but it doesn't work at once. I must restart the IDE, which is 
> annoying!  
> !change java dependencies.png! 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4232) Have to restart NetBeans to Change JDK

2020-09-30 Thread KoKo (Jira)


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

KoKo updated NETBEANS-4232:
---
Description: To change the *Jave Dependencies* of a Maven project, choose 
another JDK via -Options > Java > Maven > Default JDK- *Properties > Build > 
Compiler > Java Platform*, but it doesn't work at once. I must restart the IDE, 
which is annoying!   (was: To change the Jave Dependencies of a Maven project, 
choose another JDK via -Options > Java > Maven > Default JDK- *Properties > 
Build > Compiler > Java Platform*, but it doesn't work at once. I must restart 
the IDE, which is annoying! )

> Have to restart NetBeans to Change JDK
> --
>
> Key: NETBEANS-4232
> URL: https://issues.apache.org/jira/browse/NETBEANS-4232
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems, projects - Maven
>Affects Versions: 11.3
> Environment: Windows 10
>Reporter: KoKo
>Priority: Blocker
> Attachments: change java dependencies.png
>
>
> To change the *Jave Dependencies* of a Maven project, choose another JDK via 
> -Options > Java > Maven > Default JDK- *Properties > Build > Compiler > Java 
> Platform*, but it doesn't work at once. I must restart the IDE, which is 
> annoying! 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4232) Have to restart NetBeans to Change JDK

2020-09-30 Thread KoKo (Jira)


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

KoKo updated NETBEANS-4232:
---
Description: To change the *Jave Dependencies* of a *Maven* project, choose 
another JDK via -Options > Java > Maven > Default JDK- *Properties > Build > 
Compiler > Java Platform*, but it doesn't work at once. I must restart the IDE, 
which is annoying!   (was: To change the *Jave Dependencies* of a Maven 
project, choose another JDK via -Options > Java > Maven > Default JDK- 
*Properties > Build > Compiler > Java Platform*, but it doesn't work at once. I 
must restart the IDE, which is annoying! )

> Have to restart NetBeans to Change JDK
> --
>
> Key: NETBEANS-4232
> URL: https://issues.apache.org/jira/browse/NETBEANS-4232
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems, projects - Maven
>Affects Versions: 11.3
> Environment: Windows 10
>Reporter: KoKo
>Priority: Blocker
> Attachments: change java dependencies.png
>
>
> To change the *Jave Dependencies* of a *Maven* project, choose another JDK 
> via -Options > Java > Maven > Default JDK- *Properties > Build > Compiler > 
> Java Platform*, but it doesn't work at once. I must restart the IDE, which is 
> annoying! 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4232) Have to restart NetBeans to Change JDK

2020-09-30 Thread KoKo (Jira)


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

KoKo updated NETBEANS-4232:
---
Description: To change the Jave Dependencies of a Maven project, choose 
another JDK via -Options > Java > Maven > Default JDK- *Properties > Build > 
Compiler > Java Platform*, but it doesn't work at once. I must restart the IDE, 
which is annoying!   (was: To change the Jave Dependencies of a Maven project, 
choose another JDK via Options > Java > Maven > Default JDK, but it doesn't 
work at once. I must restart the IDE, which is annoying! )

> Have to restart NetBeans to Change JDK
> --
>
> Key: NETBEANS-4232
> URL: https://issues.apache.org/jira/browse/NETBEANS-4232
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems, projects - Maven
>Affects Versions: 11.3
> Environment: Windows 10
>Reporter: KoKo
>Priority: Blocker
> Attachments: change java dependencies.png
>
>
> To change the Jave Dependencies of a Maven project, choose another JDK via 
> -Options > Java > Maven > Default JDK- *Properties > Build > Compiler > Java 
> Platform*, but it doesn't work at once. I must restart the IDE, which is 
> annoying! 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4232) Have to restart NetBeans to Change JDK

2020-09-30 Thread KoKo (Jira)


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

KoKo updated NETBEANS-4232:
---
Component/s: platform - JDK Problems

> Have to restart NetBeans to Change JDK
> --
>
> Key: NETBEANS-4232
> URL: https://issues.apache.org/jira/browse/NETBEANS-4232
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems, projects - Maven
>Affects Versions: 11.3
> Environment: Windows 10
>Reporter: KoKo
>Priority: Blocker
> Attachments: change java dependencies.png
>
>
> To change the Jave Dependencies of a Maven project, choose another JDK via 
> Options > Java > Maven > Default JDK, but it doesn't work at once. I must 
> restart the IDE, which is annoying! 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4232) Have to restart NetBeans to Change JDK

2020-09-30 Thread KoKo (Jira)


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

KoKo updated NETBEANS-4232:
---
Priority: Blocker  (was: Major)

> Have to restart NetBeans to Change JDK
> --
>
> Key: NETBEANS-4232
> URL: https://issues.apache.org/jira/browse/NETBEANS-4232
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.3
> Environment: Windows 10
>Reporter: KoKo
>Priority: Blocker
> Attachments: change java dependencies.png
>
>
> To change the Jave Dependencies of a Maven project, choose another JDK via 
> Options > Java > Maven > Default JDK, but it doesn't work at once. I must 
> restart the IDE, which is annoying! 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4857) ExplorerManager creates way too many PropertyChangeEvents if multiple OutlineViews are synchonized

2020-09-30 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-4857:
-
Labels: pull-request-available  (was: )

> ExplorerManager creates way too many PropertyChangeEvents if multiple 
> OutlineViews are synchonized 
> ---
>
> Key: NETBEANS-4857
> URL: https://issues.apache.org/jira/browse/NETBEANS-4857
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - OutlineTreeTable
>Affects Versions: 8.2, 11.0, 12.0, 11.1, 11.2, 11.3, 12.1
>Reporter: Michael Küttner
>Priority: Major
>  Labels: pull-request-available
> Attachments: TreeViewMain.java, synchronize-selected-nodes.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> An ExplorerManager can be shared by multiple OutlineViews to synchronize 
> displayed nodes and selection. This works fine for single node selection 
> (ListSelectionModel.SINGLE_SELECTION).
> But in case of multiple selection 
> (ListSelectionModel.MULTIPLE_INTERVAL_SELECTION) the ExplorerManager creates 
> way too many PropertyChangeEvents.
> I attached a small example application that contains two OutlineViews sharing 
> a single ExplorerManger. A PropertyChangeListener is registered to the 
> ExplorerManager and prints old/new selected node to standard out.
> If you select all nodes from "0" to "29" (e.g, usind SHIFT+Mouse1) you will 
> get following output. The PropertyChangeListener is called *32* times!!!
> old node: [0]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 
> 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]; new node: []
> old node: []; new node: [0]
> old node: [0]; new node: [0, 1]
> old node: [0, 1]; new node: [0, 1, 2]
> old node: [0, 1, 2]; new node: [0, 1, 2, 3]
> old node: [0, 1, 2, 3]; new node: [0, 1, 2, 3, 4]
> old node: [0, 1, 2, 3, 4]; new node: [0, 1, 2, 3, 4, 5]
> old node: [0, 1, 2, 3, 4, 5]; new node: [0, 1, 2, 3, 4, 5, 6]
> old node: [0, 1, 2, 3, 4, 5, 6]; new node: [0, 1, 2, 3, 4, 5, 6, 7]
> old node: [0, 1, 2, 3, 4, 5, 6, 7]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 
> 9]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 
> 8, 9, 10]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; new node: [0, 1, 2, 3, 4, 5, 6, 
> 7, 8, 9, 10, 11]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; new node: [0, 1, 2, 3, 4, 
> 5, 6, 7, 8, 9, 10, 11, 12]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; new node: [0, 1, 2, 3, 
> 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]; new node: [0, 1, 2, 
> 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]; new node: [0, 
> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]; new node: 
> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]; new 
> node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]; new 
> node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]; 
> new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 
> 18, 19, 20]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19, 20]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 
> 17, 18, 19, 20, 21]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19, 20, 21]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 
> 16, 17, 18, 19, 20, 21, 22]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19, 20, 21, 22]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 
> 15, 16, 17, 18, 19, 20, 21, 22, 23]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19, 20, 21, 22, 23]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 
> 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]
> old node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 
> 19, 20, 21, 22, 23, 24]; new node: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 
> 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 

[netbeans] branch master updated: Commit-validation on apple.

2020-09-30 Thread sdedic
This is an automated email from the ASF dual-hosted git repository.

sdedic 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 ae2e6d9  Commit-validation on apple.
 new 6a9d4bd  Merge pull request #2407 from 
sdedic/feature/commit-validation-mac
ae2e6d9 is described below

commit ae2e6d9c05778d3c31f131fa204e3e8c85a3cdf2
Author: Svata Dedic 
AuthorDate: Tue Sep 29 10:54:02 2020 +0200

Commit-validation on apple.
---
 .github/workflows/main.yml  | 3 +++
 platform/applemenu/src/org/netbeans/modules/applemenu/layer.xml | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index ef44ca8..55319db 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -253,6 +253,9 @@ jobs:
   ant -f platform/masterfs.macosx test
   ant -f platform/core.network test
 
+  - name: Validate consistency and basic tests
+run: ant -Dcluster.config=release commit-validation
+
   commit-validation:
 name: Commit-validation (on Linux)
 runs-on: ubuntu-18.04
diff --git a/platform/applemenu/src/org/netbeans/modules/applemenu/layer.xml 
b/platform/applemenu/src/org/netbeans/modules/applemenu/layer.xml
index 9d435d3..a2dc08e 100644
--- a/platform/applemenu/src/org/netbeans/modules/applemenu/layer.xml
+++ b/platform/applemenu/src/org/netbeans/modules/applemenu/layer.xml
@@ -92,6 +92,9 @@
 
 
 
+
+
+
 
 
 


-
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-4864) JavaDoc of the Record is not included in the autocompletion

2020-09-30 Thread Akhilesh Singh (Jira)


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

Akhilesh Singh reassigned NETBEANS-4864:


Assignee: Akhilesh Singh

> JavaDoc of the Record is not included in the autocompletion
> ---
>
> Key: NETBEANS-4864
> URL: https://issues.apache.org/jira/browse/NETBEANS-4864
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 12.1
>Reporter: Akhilesh Singh
>Assignee: Akhilesh Singh
>Priority: Major
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4311) Support for AutoComplete inside Records

2020-09-30 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated NETBEANS-4311:
-
Labels: Java14 pull-request-available record  (was: Java14 record)

> Support for AutoComplete inside Records
> ---
>
> Key: NETBEANS-4311
> URL: https://issues.apache.org/jira/browse/NETBEANS-4311
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 11.3
>Reporter: Arunava Sinha
>Assignee: Arunava Sinha
>Priority: Major
>  Labels: Java14, pull-request-available, record
> Fix For: Next
>
>  Time Spent: 3h 20m
>  Remaining Estimate: 0h
>
> Records was introduced in Jdk-14.
> Currently NB doesn't support fully autocomplete inside Record.
> This issue will try to address all auto-complete requirements in Records



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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