[netbeans-html4j] branch master updated: JDK-8222912 hasn't been fixed yet in 22x updates of JDK8

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

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


The following commit(s) were added to refs/heads/master by this push:
 new ca4e7e7  JDK-8222912 hasn't been fixed yet in 22x updates of JDK8
ca4e7e7 is described below

commit ca4e7e74351765ca29a3de7942a004e153186211
Author: Jaroslav Tulach 
AuthorDate: Tue Jul 30 07:55:40 2019 +0200

JDK-8222912 hasn't been fixed yet in 22x updates of JDK8
---
 ko4j/src/test/java/org/netbeans/html/ko4j/KnockoutFXTest.java | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/ko4j/src/test/java/org/netbeans/html/ko4j/KnockoutFXTest.java 
b/ko4j/src/test/java/org/netbeans/html/ko4j/KnockoutFXTest.java
index e1b4204..ffdb34d 100644
--- a/ko4j/src/test/java/org/netbeans/html/ko4j/KnockoutFXTest.java
+++ b/ko4j/src/test/java/org/netbeans/html/ko4j/KnockoutFXTest.java
@@ -111,12 +111,19 @@ public final class KnockoutFXTest extends KnockoutTCK {
 
 private static boolean skipUnsupported(Method m) {
 String version = System.getProperty("java.version"); // NOI18N
-if ("1.8.0_212".equals(version) && 
"connectUsingWebSocket".equals(m.getName())) { // NOI18N
+if (brokenWebSockets(version) && 
"connectUsingWebSocket".equals(m.getName())) { // NOI18N
 return true;
 }
 return false;
 }
 
+private static boolean brokenWebSockets(String version) {
+return 
+"1.8.0_212".equals(version) ||
+"1.8.0_221".equals(version) ||
+"1.8.0_222".equals(version);
+}
+
 static synchronized ClassLoader getClassLoader() throws 
InterruptedException {
 while (browserClass == null) {
 KnockoutFXTest.class.wait();


-
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-2906) Parsing of some Java source files fails under Windows

2019-07-29 Thread Heiko Wenzel (JIRA)


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

Heiko Wenzel updated NETBEANS-2906:
---
Attachment: exception.txt

> 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
>Priority: Critical
> Attachments: exception.txt
>
>
> 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



[netbeans] branch master updated: [NETBEANS-2785] Move NIO2 File Watcher implementation in front of the platform dependent ones, makin it default. (#1349)

2019-07-29 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 4eb32c4  [NETBEANS-2785] Move NIO2 File Watcher implementation in 
front of the platform dependent ones, makin it default. (#1349)
4eb32c4 is described below

commit 4eb32c4f72d1aa25316e1237a028a3b99528032d
Author: Laszlo Kishalmi 
AuthorDate: Mon Jul 29 22:08:09 2019 -0700

[NETBEANS-2785] Move NIO2 File Watcher implementation in front of the 
platform dependent ones, makin it default. (#1349)
---
 .../src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java   | 2 +-
 .../src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java | 2 +-
 .../org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java
 
b/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java
index 8eb13b9..ec09422 100644
--- 
a/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java
+++ 
b/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java
@@ -41,7 +41,7 @@ import org.openide.util.lookup.ServiceProvider;
  *
  * @author Tomas Zezula
  */
-@ServiceProvider(service=Notifier.class, position=300)
+@ServiceProvider(service=Notifier.class, position=100)
 public final class OSXNotifier extends Notifier {
 private static final Level DEBUG_LOG_LEVEL = Level.FINE;
 private static final Level PERF_LOG_LEVEL = Level.FINE;
diff --git 
a/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java
 
b/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java
index cdeee9b..4089eba 100644
--- 
a/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java
+++ 
b/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java
@@ -37,7 +37,7 @@ import org.openide.util.lookup.ServiceProvider;
  *
  * @author Egor Ushakov 
  */
-@ServiceProvider(service=Notifier.class, position=1010)
+@ServiceProvider(service=Notifier.class, position=200)
 public class NioNotifier extends Notifier {
 private final WatchService watcher;
 
diff --git 
a/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java
 
b/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java
index cef9773..e68862c 100644
--- 
a/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java
+++ 
b/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java
@@ -53,7 +53,7 @@ import org.openide.util.lookup.ServiceProvider;
  *
  * @author nenik
  */
-@ServiceProvider(service=Notifier.class, position=100)
+@ServiceProvider(service=Notifier.class, position=400)
 public final class WindowsNotifier extends Notifier {
 static final Logger LOG = 
Logger.getLogger(WindowsNotifier.class.getName());
 


-
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-2880) L - Ellipsis button can't be modified on PropUtils

2019-07-29 Thread Yann Dameron (JIRA)


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

Yann Dameron updated NETBEANS-2880:
---
Fix Version/s: 11.2

> L - Ellipsis button can't be modified on PropUtils
> 
>
> Key: NETBEANS-2880
> URL: https://issues.apache.org/jira/browse/NETBEANS-2880
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Yann Dameron
>Assignee: Yann Dameron
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 11.2
>
>   Original Estimate: 24h
>  Time Spent: 50m
>  Remaining Estimate: 23h 10m
>
> On the PropUtils class, there is a bunch of properties to customize the 
> rendering but there is no way to use another icon than the hardcoded on for 
> ellipsis buttons.
> {code:java}
> /** Lazily creates the custom editor button icon */
> static Icon getCustomButtonIcon() {
> return new BpIcon(); 
> }{code}
> The goal of this ticket is to add a property to define the icon to use. 
> If the property is not defined, rely on the BpIcon. 
>  



--
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-2880) L - Ellipsis button can't be modified on PropUtils

2019-07-29 Thread Yann Dameron (JIRA)


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

Yann Dameron resolved NETBEANS-2880.

Resolution: Fixed

> L - Ellipsis button can't be modified on PropUtils
> 
>
> Key: NETBEANS-2880
> URL: https://issues.apache.org/jira/browse/NETBEANS-2880
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Yann Dameron
>Assignee: Yann Dameron
>Priority: Minor
>  Labels: pull-request-available
>   Original Estimate: 24h
>  Time Spent: 50m
>  Remaining Estimate: 23h 10m
>
> On the PropUtils class, there is a bunch of properties to customize the 
> rendering but there is no way to use another icon than the hardcoded on for 
> ellipsis buttons.
> {code:java}
> /** Lazily creates the custom editor button icon */
> static Icon getCustomButtonIcon() {
> return new BpIcon(); 
> }{code}
> The goal of this ticket is to add a property to define the icon to use. 
> If the property is not defined, rely on the BpIcon. 
>  



--
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-1802) Problem with loading a project which has 2 different project files

2019-07-29 Thread Jake Ochs (JIRA)


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

Jake Ochs commented on NETBEANS-1802:
-

I'll add my use-case to the list...
{noformat}
I am using gradle as the build system. There is a master gradle project with 3 
subprojects. Each subproject results in a distributable rpm, which is how the 
system is deployed. One of the rpm’s, in fact, also has a java component, but 
it is mostly the copying of files to the proper directory structure, writing 
the proper configs to disk and and configuring the rpm.

In NB8, I see thr project as I want it to be, a PHP project (with some gradle 
and even some ant files. But in NB11, it’s a set of gradle projects and I can’t 
even utilize the php features when accessing the project from the folder 
explorer tab. (as opposed to the project tab, which has been rendered 
useless.){noformat}
from thread: 
http://mail-archives.apache.org/mod_mbox/netbeans-users/201907.mbox/browser

> Problem with loading a project which has 2 different project files
> --
>
> Key: NETBEANS-1802
> URL: https://issues.apache.org/jira/browse/NETBEANS-1802
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Generic Infrastructure, projects - Generic 
> Projects UI
>Affects Versions: 8.2, 9.0, 10.0
>Reporter: Christian Lenz
>Priority: Critical
>  Labels: pull-request-available
> Attachments: dasaa.7z
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Most of the comments are inside of the external ticket, but I will summerize 
> it:
> When I have a project, with 2 different project related files like pom.xml 
> and package.json. One is always winning. In my case, pom is winning.
> I had a html5 project, where NetBeans found package.json and everything was 
> fine, because it is a HTML5 project. After some infrastucture changes in my 
> company, using nexus to put artifacts on the repo, we had to add pom.xml 
> files for nexus. Now, after opening NetBeans, the project turns into a maven 
> based project, which is not correct. Only this one file and some 
> infrastructure files, which are not project sourcecode related are needed for 
> nexus.
> Now, because NetBeans things this is a maven project, I can't set the sass 
> compilation anymore or the folder structure is wrong.
> This always happen, if the project loader finds a project specific file and 
> will change the project for that. This happens for pom.xml for example and 
> for this plugin here: https://github.com/tropyx/NetBeansPuppet
> It turns a project into a puppet project and this is even more worse. Here is 
> another discussion about the problem: 
> https://github.com/tropyx/NetBeansPuppet/issues/27
> I know, that NetBeans acts like it was designed but this isn't nice and 
> created problems. I only have one solution which could be ok. Give the user a 
> notification that a project type were found, like for node support and let 
> the user choose whether I want to change the project type or not.
> So for me, I have a HTML5 Project with a package.json file and it should be 
> as it is. If NetBeans found the pom file it should give me the hint whether I 
> want to change it or not.
> If you open NetBeans with a project with two files, I want to choose as what 
> I want to treat the project and it should be saved. Like a project switcher.
> I added a sample project to it to make it clear.
> We can set it back to Major, but I think this is a big problem for multiple 
> project files.
> Cheers
> 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-2476) Netbeans 11 EE Support Weblogic Server

2019-07-29 Thread Raymond DeCampo (JIRA)


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

Raymond DeCampo commented on NETBEANS-2476:
---

My understanding is that they do not want to distribute the old plugin because 
it is not under the Apache license.

See https://issues.apache.org/jira/browse/NETBEANS-1989

 

> Netbeans 11 EE Support Weblogic Server
> --
>
> Key: NETBEANS-2476
> URL: https://issues.apache.org/jira/browse/NETBEANS-2476
> Project: NetBeans
>  Issue Type: New Feature
>Affects Versions: 11.0
>Reporter: Wayne Zhang
>Priority: Major
>
> Java EE don't support Weblogic server (Plugins > Servers > Add Server).
>  
> Please support Weblogic server as previous Netbeans does.



--
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-2476) Netbeans 11 EE Support Weblogic Server

2019-07-29 Thread Paul Allen (JIRA)


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

Paul Allen commented on NETBEANS-2476:
--

Licensing for what? From what I understand from the way NB 8.2 handles 
WebLogic, it simply runs Oracle wlst (WebLogic Scripting Tool) with applicable 
commands to control the server (the actually using and creating input files for 
wlst is not for the faint of heart, nor would parsing the output). Since 
WebLogic 12c is free for development use, there should be no licensing issues 
there.

Or is it that whomever wrote the module supporting it in the first place has 
some sort of licensing holding it up?

> Netbeans 11 EE Support Weblogic Server
> --
>
> Key: NETBEANS-2476
> URL: https://issues.apache.org/jira/browse/NETBEANS-2476
> Project: NetBeans
>  Issue Type: New Feature
>Affects Versions: 11.0
>Reporter: Wayne Zhang
>Priority: Major
>
> Java EE don't support Weblogic server (Plugins > Servers > Add Server).
>  
> Please support Weblogic server as previous Netbeans does.



--
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-2880] Add a look & feel property to define the ellipsis icon to use.

2019-07-29 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 f0d26e4  [NETBEANS-2880] Add a look & feel property to define the 
ellipsis icon to use.
f0d26e4 is described below

commit f0d26e4294bf2090a4a705a3317120504d932572
Author: Yann Dameron 
AuthorDate: Wed Jul 24 10:37:13 2019 +0200

[NETBEANS-2880] Add a look & feel property to define the ellipsis icon to 
use.
---
 platform/openide.explorer/arch-propertysheet.xml   | 10 +++
 .../openide/explorer/propertysheet/PropUtils.java  | 71 --
 2 files changed, 50 insertions(+), 31 deletions(-)

diff --git a/platform/openide.explorer/arch-propertysheet.xml 
b/platform/openide.explorer/arch-propertysheet.xml
index 18806d3..ac5f6d3 100644
--- a/platform/openide.explorer/arch-propertysheet.xml
+++ b/platform/openide.explorer/arch-propertysheet.xml
@@ -399,6 +399,16 @@ also provide custom values for these:
 in the property sheet.  If not set, the value will be determined based on
 the font and/or the expansion handle icon, whichever is taller, the first
 time the property sheet is painted
+
+(java.awt.Color)
+UIManager key for a value which, if non null in UIDefaults, sets the
+color for the custom editor button of the property sheet table.
+
+
+(javax.swing.Icon)
+UIManager key for a value which, if non null in UIDefaults, sets the
+ellipsis icon to use for the custom editor button of the property sheet 
table
+
 
 
 Additionally, client properties may be used to affect behavior of 
PropertyPanel,
diff --git 
a/platform/openide.explorer/src/org/openide/explorer/propertysheet/PropUtils.java
 
b/platform/openide.explorer/src/org/openide/explorer/propertysheet/PropUtils.java
index 161d898..d3904a8 100644
--- 
a/platform/openide.explorer/src/org/openide/explorer/propertysheet/PropUtils.java
+++ 
b/platform/openide.explorer/src/org/openide/explorer/propertysheet/PropUtils.java
@@ -54,7 +54,7 @@ final class PropUtils {
 static final boolean noCustomButtons = 
Boolean.getBoolean("netbeans.ps.noCustomButtons"); //NOI18N
 
 /**If true, radio button boolean editor will always be used */
-static boolean forceRadioButtons = 
+static boolean forceRadioButtons =
 //  !Boolean.getBoolean ("netbeans.ps.useCheckbox");
 Boolean.getBoolean("netbeans.ps.forceRadioButtons");
 
@@ -76,10 +76,10 @@ final class PropUtils {
  *  gets written.  */
 static final boolean psCommitOnFocusLoss = 
!Boolean.getBoolean("netbeans.ps.NoCommitOnFocusLoss");
 
-/** If true, the default help button inside property sheet will not be 
+/** If true, the default help button inside property sheet will not be
  * present. */
 static final boolean psNoHelpButton = 
Boolean.getBoolean("netbeans.ps.noHelpButton");
-
+
 /** UIManager key for alternate color for table - if present, color will
  *  alternate between the standard background and this color*/
 private static final String KEY_ALTBG = "Tree.altbackground"; //NOI18N
@@ -104,6 +104,11 @@ final class PropUtils {
  *  color */
 private static final String KEY_SELSETFG = 
"PropSheet.selectedSetForeground"; //NOI18N
 
+/** UIManager key for the custom button foreground color. */
+private static final String KEY_CUSTOM_BUTTON_FG = 
"PropSheet.customButtonForeground"; //NOI18N
+/** UIManager key for the custom button icon. If not set, the icon will be 
an instance of BpIcon. */
+private static final String KEY_CUSTOM_BUTTON_ICON = 
"PropSheet.customButtonIcon"; //NOI18N
+
 /** UIManager key for integer icon margin, amount of space to add beside
  *  the expandable set icon to make up the margin */
 private static final String KEY_ICONMARGIN = "netbeans.ps.iconmargin"; 
//NOI18N
@@ -202,7 +207,7 @@ final class PropUtils {
 static final boolean isAqua = 
"Aqua".equals(UIManager.getLookAndFeel().getID()); //NOI18N
 static final boolean isGtk = 
"GTK".equals(UIManager.getLookAndFeel().getID()); //NOI18N
 static final boolean isNimbus = 
"Nimbus".equals(UIManager.getLookAndFeel().getID()); //NOI18N
-
+
 private static Graphics scratchGraphics = null;
 
 //Comparators copied from original propertysheet implementation
@@ -523,7 +528,7 @@ final class PropUtils {
 try {
 try {
 Object oldValue = mdl.getValue();
-
+
 int selBeans = 0;
 if( mdl instanceof NodePropertyModel ) {
 Object[] beans = ((NodePropertyModel)mdl).getBeans();
@@ -532,7 +537,7 @@ final class PropUtils {
 }
 
 // test if newValue is not equal to oldValue
-if (((newValue != null) && !newValue.equals(oldValue)) 
+if (((newValue != null) && 

[netbeans-website] 01/01: Merge pull request #406 from apache/installer-link-update

2019-07-29 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 076b5cc40704540b4f5b333822db360f774c7fc8
Merge: 02f2979 b9d68f5
Author: Geertjan Wielenga 
AuthorDate: Mon Jul 29 20:11:15 2019 +0200

Merge pull request #406 from apache/installer-link-update

added installers links

 .../src/content/download/nb111/nb111.asciidoc| 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)


-
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-2915) Maven execution single file with PSVM throws exception

2019-07-29 Thread jose luis romero (JIRA)
jose luis romero created NETBEANS-2915:
--

 Summary: Maven execution single file with PSVM throws exception
 Key: NETBEANS-2915
 URL: https://issues.apache.org/jira/browse/NETBEANS-2915
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 11.1
 Environment: Windows 10 64, jdk 8
Reporter: jose luis romero


In a maven desktop project, when I add a PSVM to a file to test things, it may 
work one or maybe 2 times, but after a "clean and build" or any modification to 
the POM, I can't run a single file anymore.

The only workaround that I found is going to the project > Properties > Run > 
and change the Main Class

*This problem is exclusive for Windows, on Linux doesn't happen*
{code:java}
cd D:\NetBeansProjects\Sindicato; "JAVA_HOME=C:\\Program Files\\Java\\jdk1.8" 
M2_HOME=C:\\apache-maven cmd /c "\"\"C:\\apache-maven\\bin\\mvn.cmd\" 
-Dexec.args=\"-classpath %classpath org.sindicato.controller.PlanesController\" 
-Dexec.executable=\"C:\\Program Files\\Java\\jdk1.8\\bin\\java.exe\" 
-Dexec.classpathScope=runtime -DskipTests=true 
-Dmaven.ext.class.path=\"C:\\Program 
Files\\NetBeans-11.1\\netbeans\\java\\maven-nblib\\netbeans-eventspy.jar\" 
-Dfile.encoding=UTF-8 org.codehaus.mojo:exec-maven-plugin:1.5.0:exec\""{code}

Running NetBeans Compile On Save execution. Phase execution is skipped and 
output directories of dependency projects (with Compile on Save turned on) will 
be used instead of their jar artifacts.
Scanning for projects...

 
{code:java}

Building Sindicato 1

--- exec-maven-plugin:1.5.0:exec (default-cli) @ sas ---
Error injecting: org.codehaus.mojo.exec.ExecMojo
java.lang.NoClassDefFoundError: org/apache/commons/exec/ProcessDestroyer
 at java.lang.Class.getDeclaredConstructors0 (Native Method)
 at java.lang.Class.privateGetDeclaredConstructors (Class.java:2671)
 at java.lang.Class.getDeclaredConstructors (Class.java:2020)
 at com.google.inject.spi.InjectionPoint.forConstructorOf 
(InjectionPoint.java:245)
 at com.google.inject.internal.ConstructorBindingImpl.create 
(ConstructorBindingImpl.java:99)
 at com.google.inject.internal.InjectorImpl.createUninitializedBinding 
(InjectorImpl.java:658)
 at com.google.inject.internal.InjectorImpl.createJustInTimeBinding 
(InjectorImpl.java:882)
 at com.google.inject.internal.InjectorImpl.createJustInTimeBindingRecursive 
(InjectorImpl.java:805)
 at com.google.inject.internal.InjectorImpl.getJustInTimeBinding 
(InjectorImpl.java:282)
 at com.google.inject.internal.InjectorImpl.getBindingOrThrow 
(InjectorImpl.java:214)
 at com.google.inject.internal.InjectorImpl.getProviderOrThrow 
(InjectorImpl.java:1006)
 at com.google.inject.internal.InjectorImpl.getProvider (InjectorImpl.java:1038)
 at com.google.inject.internal.InjectorImpl.getProvider (InjectorImpl.java:1001)
 at com.google.inject.internal.InjectorImpl.getInstance (InjectorImpl.java:1051)
 at org.eclipse.sisu.space.AbstractDeferredClass.get 
(AbstractDeferredClass.java:48)
 at com.google.inject.internal.ProviderInternalFactory.provision 
(ProviderInternalFactory.java:81)
 at com.google.inject.internal.InternalFactoryToInitializableAdapter.provision 
(InternalFactoryToInitializableAdapter.java:53)
 at com.google.inject.internal.ProviderInternalFactory$1.call 
(ProviderInternalFactory.java:65)
 at 
com.google.inject.internal.ProvisionListenerStackCallback$Provision.provision 
(ProvisionListenerStackCallback.java:115)
 at 
com.google.inject.internal.ProvisionListenerStackCallback$Provision.provision 
(ProvisionListenerStackCallback.java:133)
 at com.google.inject.internal.ProvisionListenerStackCallback.provision 
(ProvisionListenerStackCallback.java:68)
 at com.google.inject.internal.ProviderInternalFactory.circularGet 
(ProviderInternalFactory.java:63)
 at com.google.inject.internal.InternalFactoryToInitializableAdapter.get 
(InternalFactoryToInitializableAdapter.java:45)
 at com.google.inject.internal.InjectorImpl$2$1.call (InjectorImpl.java:1016)
 at com.google.inject.internal.InjectorImpl.callInContext 
(InjectorImpl.java:1092)
 at com.google.inject.internal.InjectorImpl$2.get (InjectorImpl.java:1012)
 at org.eclipse.sisu.inject.Guice4$1.get (Guice4.java:162)
 at org.eclipse.sisu.inject.LazyBeanEntry.getValue (LazyBeanEntry.java:81)
 at org.eclipse.sisu.plexus.LazyPlexusBean.getValue (LazyPlexusBean.java:51)
 at org.codehaus.plexus.DefaultPlexusContainer.lookup 
(DefaultPlexusContainer.java:263)
 at org.codehaus.plexus.DefaultPlexusContainer.lookup 
(DefaultPlexusContainer.java:255)
 at 
org.apache.maven.plugin.internal.DefaultMavenPluginManager.getConfiguredMojo 
(DefaultMavenPluginManager.java:519)
 at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 

[jira] [Created] (NETBEANS-2914) Fix imports not working properly

2019-07-29 Thread Eduard Catala (JIRA)
Eduard Catala created NETBEANS-2914:
---

 Summary: Fix imports not working properly
 Key: NETBEANS-2914
 URL: https://issues.apache.org/jira/browse/NETBEANS-2914
 Project: NetBeans
  Issue Type: Bug
  Components: java - Editor
Affects Versions: 11.1
Reporter: Eduard Catala
 Attachments: Captura de pantalla de 2019-07-29 18-55-06.png

Steps to reproduce:

Create a simple project (maven)

Include a dependency:

{{ }}
{{   io.reactivex.rxjava2}}
{{   rxjava}}
{{   2.2.10}}
{{ }}

 

Create a main method:

 

{{public class Main {}}
{{   public static void main(String[] args) {}}
{{     Single s;}}
{{   }}}
{{}}}

 

Fix imports (works)

Fix imports: The fix imports dialog is shown with incorrect import proposal 
(view attached screenshot).

 

Having the option "fix imports on save" is a nigthmare!

 

 



--
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] [Comment Edited] (NETBEANS-2461) Debug mode doesn't apply any code changes

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


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

jose luis romero edited comment on NETBEANS-2461 at 7/29/19 2:32 PM:
-

I will setup up a Mint 19 and try it

 

Update: 29/07/2019
 On Linux OS works, but not on Windows 10


was (Author: firuzzz):
I will setup up a Mint 19 and try it

 

Update: 29/07/2019
On Linux OS works

> Debug mode doesn't apply any code changes
> -
>
> Key: NETBEANS-2461
> URL: https://issues.apache.org/jira/browse/NETBEANS-2461
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: windows 10 64x
>Reporter: jose luis romero
>Priority: Major
> Attachments: messages.log
>
>
> I have been trying the debug (with and without HotSwap agent, DCEVM) some 
> projects in java Desktop and webApps, with and without Maven, it doesn't 
> update any kind of changes in the code, the button "Apply code Changes" never 
> becomes available/enabled



--
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] [Comment Edited] (NETBEANS-2461) Debug mode doesn't apply any code changes

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


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

jose luis romero edited comment on NETBEANS-2461 at 7/29/19 2:32 PM:
-

I will setup up a Mint 19 and try it

 

Update: 29/07/2019
On Linux OS works


was (Author: firuzzz):
I will setup up a Mint 19 and try it

> Debug mode doesn't apply any code changes
> -
>
> Key: NETBEANS-2461
> URL: https://issues.apache.org/jira/browse/NETBEANS-2461
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: windows 10 64x
>Reporter: jose luis romero
>Priority: Major
> Attachments: messages.log
>
>
> I have been trying the debug (with and without HotSwap agent, DCEVM) some 
> projects in java Desktop and webApps, with and without Maven, it doesn't 
> update any kind of changes in the code, the button "Apply code Changes" never 
> becomes available/enabled



--
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-2913) Sugestion Code Folding

2019-07-29 Thread Samuel Placido da costa (JIRA)
Samuel Placido da costa created NETBEANS-2913:
-

 Summary: Sugestion Code Folding
 Key: NETBEANS-2913
 URL: https://issues.apache.org/jira/browse/NETBEANS-2913
 Project: NetBeans
  Issue Type: Task
Reporter: Samuel Placido da costa


would be great if all conditions (if, while, for ...) have code folding, just 
like other IDE's
this would optimize the development and organization time of all 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-2911) Can't create new web service in Gradle web application

2019-07-29 Thread Andreas Gottardi (JIRA)


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

Andreas Gottardi updated NETBEANS-2911:
---
Description: 
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is no error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

*java.lang.NullPointerException
  at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78
  at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580
  at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414
  at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223
  at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135
  at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605
  at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546
  at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67
  [catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233
      at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418
  at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45
  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278
  at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033*

 

  was:
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is no error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

{{java.lang.NullPointerException}}
{{  at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78}}
  at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580
  at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414
  at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223
  at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135
  at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605
  at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546
  at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67
  [catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233
      at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418
  at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45
  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278
  at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033

 


> Can't create new web service in Gradle web application
> --
>
> Key: NETBEANS-2911
> URL: https://issues.apache.org/jira/browse/NETBEANS-2911
> Project: NetBeans
>  Issue Type: Bug
>  Components: webservices - Code
>Affects Versions: 11.1
> Environment: Windows 10 1903, x64, en-US
> Build-Target: OpenJDK by Azul systems: zulu8.40.0.25-ca-jdk8.0.222-win_x64
> Exection environment: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Netbeans: 11.1 x64
> Gradle wrapper: 5.5.1
> About block from Netbeans:
> Product Version: Apache NetBeans IDE 11.1
> Java: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Runtime: OpenJDK Runtime Environment 12.0.2+10
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Andreas Gottardi
>Priority: Major
> Attachments: image-2019-07-29-11-14-27-198.png, 
> image-2019-07-29-11-15-54-542.png
>
>
> Hello,
> I have a problem when I want to create a new WebService via the assistant. 
> There is no error message shown, but the window remains open and the class is 
> not generated. It is a Gradle web application.
> I make a right-click on the Java package I want to create the web service in 
> and select 

[jira] [Updated] (NETBEANS-2911) Can't create new web service in Gradle web application

2019-07-29 Thread Andreas Gottardi (JIRA)


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

Andreas Gottardi updated NETBEANS-2911:
---
Description: 
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is no error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

java.lang.NullPointerException
  at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78
  at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580
  at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414
  at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223
  at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135
  at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605
  at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546
  at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67
  [catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233
      at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418
  at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45
  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278
  at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033

 

  was:
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is no error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

*java.lang.NullPointerException
  at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78
  at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580
  at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414
  at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223
  at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135
  at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605
  at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546
  at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67
  [catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233
      at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418
  at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45
  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278
  at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033*

 


> Can't create new web service in Gradle web application
> --
>
> Key: NETBEANS-2911
> URL: https://issues.apache.org/jira/browse/NETBEANS-2911
> Project: NetBeans
>  Issue Type: Bug
>  Components: webservices - Code
>Affects Versions: 11.1
> Environment: Windows 10 1903, x64, en-US
> Build-Target: OpenJDK by Azul systems: zulu8.40.0.25-ca-jdk8.0.222-win_x64
> Exection environment: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Netbeans: 11.1 x64
> Gradle wrapper: 5.5.1
> About block from Netbeans:
> Product Version: Apache NetBeans IDE 11.1
> Java: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Runtime: OpenJDK Runtime Environment 12.0.2+10
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Andreas Gottardi
>Priority: Major
> Attachments: image-2019-07-29-11-14-27-198.png, 
> image-2019-07-29-11-15-54-542.png
>
>
> Hello,
> I have a problem when I want to create a new WebService via the assistant. 
> There is no error message shown, but the window remains open and the class is 
> not generated. It is a Gradle web application.
> I make a right-click on the Java package I want to create the web service in 
> and select "New > Web 

[jira] [Updated] (NETBEANS-2911) Can't create new web service in Gradle web application

2019-07-29 Thread Andreas Gottardi (JIRA)


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

Andreas Gottardi updated NETBEANS-2911:
---
Description: 
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is no error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

{{java.lang.NullPointerException}}
{{  at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78}}
  at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580
  at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414
  at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223
  at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135
  at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605
  at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546
  at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67
  [catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233
      at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418
  at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45
  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278
  at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033

 

  was:
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is no error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

{{java.lang.NullPointerException}}
{{     at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78)}}
{{     at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580)}}
{{     at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414)}}
{{     at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223)}}
{{     at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135)}}
{{     at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605)}}
{{     at 
org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546)}}
{{     at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67)}}
{{ [catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233)}}
{{     at 
org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)}}
{{     at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)}}
{{     at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)}}
{{     at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033}}

 


> Can't create new web service in Gradle web application
> --
>
> Key: NETBEANS-2911
> URL: https://issues.apache.org/jira/browse/NETBEANS-2911
> Project: NetBeans
>  Issue Type: Bug
>  Components: webservices - Code
>Affects Versions: 11.1
> Environment: Windows 10 1903, x64, en-US
> Build-Target: OpenJDK by Azul systems: zulu8.40.0.25-ca-jdk8.0.222-win_x64
> Exection environment: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Netbeans: 11.1 x64
> Gradle wrapper: 5.5.1
> About block from Netbeans:
> Product Version: Apache NetBeans IDE 11.1
> Java: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Runtime: OpenJDK Runtime Environment 12.0.2+10
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Andreas Gottardi
>Priority: Major
> Attachments: image-2019-07-29-11-14-27-198.png, 
> image-2019-07-29-11-15-54-542.png
>
>
> Hello,
> I have a problem when I want to create a new WebService via the assistant. 
> There is no error message shown, but the window remains open and the class is 
> not generated. It is a Gradle web application.
> I make a right-click on the Java 

[jira] [Updated] (NETBEANS-2911) Can't create new web service in Gradle web application

2019-07-29 Thread Andreas Gottardi (JIRA)


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

Andreas Gottardi updated NETBEANS-2911:
---
Description: 
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is no error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

{{java.lang.NullPointerException}}
{{     at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78)}}
{{     at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580)}}
{{     at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414)}}
{{     at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223)}}
{{     at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135)}}
{{     at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605)}}
{{     at 
org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546)}}
{{     at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67)}}
{{ [catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233)}}
{{     at 
org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)}}
{{     at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)}}
{{     at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)}}
{{     at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033}}

 

  was:
Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is now error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

{{java.lang.NullPointerException
    at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78)
    at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580)
    at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414)
    at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223)
    at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135)
    at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605)
    at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546)
    at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67)
[catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
    at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
    at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
    at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)}}

 


> Can't create new web service in Gradle web application
> --
>
> Key: NETBEANS-2911
> URL: https://issues.apache.org/jira/browse/NETBEANS-2911
> Project: NetBeans
>  Issue Type: Bug
>  Components: webservices - Code
>Affects Versions: 11.1
> Environment: Windows 10 1903, x64, en-US
> Build-Target: OpenJDK by Azul systems: zulu8.40.0.25-ca-jdk8.0.222-win_x64
> Exection environment: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Netbeans: 11.1 x64
> Gradle wrapper: 5.5.1
> About block from Netbeans:
> Product Version: Apache NetBeans IDE 11.1
> Java: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
> Runtime: OpenJDK Runtime Environment 12.0.2+10
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Andreas Gottardi
>Priority: Major
> Attachments: image-2019-07-29-11-14-27-198.png, 
> image-2019-07-29-11-15-54-542.png
>
>
> Hello,
> I have a problem when I want to create a new WebService via the assistant. 
> There is no error message shown, but the window remains open and the class is 
> not generated. It is a Gradle web application.
> I make a right-click on the Java package I want to 

[jira] [Created] (NETBEANS-2911) Can't create new web service in Gradle web application

2019-07-29 Thread Andreas Gottardi (JIRA)
Andreas Gottardi created NETBEANS-2911:
--

 Summary: Can't create new web service in Gradle web application
 Key: NETBEANS-2911
 URL: https://issues.apache.org/jira/browse/NETBEANS-2911
 Project: NetBeans
  Issue Type: Bug
  Components: webservices - Code
Affects Versions: 11.1
 Environment: Windows 10 1903, x64, en-US
Build-Target: OpenJDK by Azul systems: zulu8.40.0.25-ca-jdk8.0.222-win_x64
Exection environment: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
Netbeans: 11.1 x64
Gradle wrapper: 5.5.1

About block from Netbeans:
Product Version: Apache NetBeans IDE 11.1
Java: 12.0.2; OpenJDK 64-Bit Server VM 12.0.2+10
Runtime: OpenJDK Runtime Environment 12.0.2+10
System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
Reporter: Andreas Gottardi
 Attachments: image-2019-07-29-11-14-27-198.png, 
image-2019-07-29-11-15-54-542.png

Hello,

I have a problem when I want to create a new WebService via the assistant. 
There is now error message shown, but the window remains open and the class is 
not generated. It is a Gradle web application.

I make a right-click on the Java package I want to create the web service in 
and select "New > Web Service".

!image-2019-07-29-11-14-27-198.png!

After filling out the form I click "Finish" and the window stays open:

!image-2019-07-29-11-15-54-542.png!

In the log there is the following exception.

{{java.lang.NullPointerException
    at 
org.netbeans.modules.websvc.core.dev.wizard.NewWebServiceWizardIterator.instantiate(NewWebServiceWizardIterator.java:78)
    at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580)
    at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414)
    at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223)
    at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135)
    at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605)
    at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546)
    at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67)
[catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
    at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
    at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
    at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)}}

 



--
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-2888) Project Context Path problem for Java Maven Web Application

2019-07-29 Thread SergeyT (JIRA)


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

SergeyT updated NETBEANS-2888:
--
Priority: Blocker  (was: Critical)

> Project Context Path problem for Java Maven Web Application
> ---
>
> Key: NETBEANS-2888
> URL: https://issues.apache.org/jira/browse/NETBEANS-2888
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Maven, apisupport - Project, javaee - 
> Maven, javaee - Web Project
>Affects Versions: 11.1
> Environment: Netbeans 11.1 with Java 8 or 11 (Windows 10 64 bit),
> Eclipse GlassFish 5.1 or Payara app server for project app deployment
>Reporter: SergeyT
>Priority: Blocker
> Attachments: ctx_path_webapp.png
>
>
> There is no possibility to save/change the Project property -> Run for Java 
> Maven Web Application: Context Path (see attach)
> The context path in NB11.1 is always the same as the name of the project and 
> cannot be changed.



--
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 NETBEANS-1802_OpenProjectAs updated (f1bd0b1 -> 5fa4b0a)

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

lkishalmi pushed a change to branch NETBEANS-1802_OpenProjectAs
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from f1bd0b1  [NETBEANS-1802] Basic infrastructure to load a project with a 
Project Type.
 add 5fa4b0a  No project really support ProjectFactory2 as it should, let 
Gradle be the first.

No new revisions were added by this update.

Summary of changes:
 .../src/org/netbeans/modules/gradle/NbGradleProjectFactory.java| 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)


-
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