[jira] [Assigned] (NETBEANS-5143) NetBeans 12.2, 12.3, 12.4 deploys webapps twice

2021-06-17 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-5143:
--

Assignee: Gaurav Gupta

> NetBeans 12.2, 12.3, 12.4 deploys webapps twice
> ---
>
> Key: NETBEANS-5143
> URL: https://issues.apache.org/jira/browse/NETBEANS-5143
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.2, 12.3, 12.4
> Environment: Windows 10 20H2/AMD Ryzen 7 4800H/32GB RAM
>  java: build 11.0.9.1+1, maven 3.6.3
>  Netbeans versions tested: 12.1, 12.2, 12.3, 12.4 (12.2/12.3/12.4 are 
> effected)
>  Tomcat (new installs): 8.5.60, 9.0.40, Payara (per Patrick Musembi)
>Reporter: Vlad Palnik
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: webapp, webapp-deployment
>
> To whomever it concerns,
>   
>  Bug in NetBeans 12.2/12.3/12.4. Netbeans seems to interfere with the 
> deployment of web apps somehow and web apps are deployed twice.
>   
>  While deploying an app it follows this pattern: deploy => undeploy => deploy 
> (see build log below). I tried solving this issue by undeployed any previous 
> versions of the app manually and restarted Tomcat, the same error occurs. The 
> issue appears when using NB 12.2/12.3/12.4.
>   
>  When tested on NetBeans 12.1 using the same Java/Tomcat installation/config 
> no errors occur and deployment proceeds correctly.
>   
>  Steps to replicate:
>  1: Create maven webapp (Java EE7, Java 11) in NetBeans 12.1
>  2 Set Tomcat Server in Properties > Run
>  3 Clean -> Run project in 12.1, you will get a "Hello World" basic site.
>  4. Check build log, only a single deploy should show up.
>  5 Close 12.1 and open same project in 12.2/12.3/12.4
>  6 Before run make sure same server and java versions are selected
>  7 Clean -> Run project
>  8 Check build log, you will see two deploys of webapp
>   
>   
>  BUILD SUCCESS
>  
>  Total time:  18.211 s
>  Finished at: 2020-12-11T17:27:08-08:00
>  
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Starting Tomcat process...
>  Waiting for Tomcat...
>  Tomcat server started.
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext6407158500266578550.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Undeploying ...
>  undeploy?path=/myapp
>  OK - Undeployed application at context path [/myapp]
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5 
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext3519987589623367889.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>   
>   



--
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] [Commented] (NETBEANS-5143) NetBeans 12.2, 12.3, 12.4 deploys webapps twice

2021-06-17 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-5143:


Thanks Vlad, Issue is reproducible for cleaned project, I'm working on the fix, 
will create the PR soon.

> NetBeans 12.2, 12.3, 12.4 deploys webapps twice
> ---
>
> Key: NETBEANS-5143
> URL: https://issues.apache.org/jira/browse/NETBEANS-5143
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.2, 12.3, 12.4
> Environment: Windows 10 20H2/AMD Ryzen 7 4800H/32GB RAM
>  java: build 11.0.9.1+1, maven 3.6.3
>  Netbeans versions tested: 12.1, 12.2, 12.3, 12.4 (12.2/12.3/12.4 are 
> effected)
>  Tomcat (new installs): 8.5.60, 9.0.40, Payara (per Patrick Musembi)
>Reporter: Vlad Palnik
>Priority: Major
>  Labels: webapp, webapp-deployment
>
> To whomever it concerns,
>   
>  Bug in NetBeans 12.2/12.3/12.4. Netbeans seems to interfere with the 
> deployment of web apps somehow and web apps are deployed twice.
>   
>  While deploying an app it follows this pattern: deploy => undeploy => deploy 
> (see build log below). I tried solving this issue by undeployed any previous 
> versions of the app manually and restarted Tomcat, the same error occurs. The 
> issue appears when using NB 12.2/12.3/12.4.
>   
>  When tested on NetBeans 12.1 using the same Java/Tomcat installation/config 
> no errors occur and deployment proceeds correctly.
>   
>  Steps to replicate:
>  1: Create maven webapp (Java EE7, Java 11) in NetBeans 12.1
>  2 Set Tomcat Server in Properties > Run
>  3 Clean -> Run project in 12.1, you will get a "Hello World" basic site.
>  4. Check build log, only a single deploy should show up.
>  5 Close 12.1 and open same project in 12.2/12.3/12.4
>  6 Before run make sure same server and java versions are selected
>  7 Clean -> Run project
>  8 Check build log, you will see two deploys of webapp
>   
>   
>  BUILD SUCCESS
>  
>  Total time:  18.211 s
>  Finished at: 2020-12-11T17:27:08-08:00
>  
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Starting Tomcat process...
>  Waiting for Tomcat...
>  Tomcat server started.
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext6407158500266578550.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Undeploying ...
>  undeploy?path=/myapp
>  OK - Undeployed application at context path [/myapp]
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5 
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext3519987589623367889.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>   
>   



--
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] [Comment Edited] (NETBEANS-5143) NetBeans 12.2, 12.3, 12.4 deploys webapps twice

2021-06-09 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-5143 at 6/9/21, 12:58 PM:
--

I am able to reproduce the issue on Windows, where application logs in "Run 
window" shows that app is deployed -> undeployed -> deployed but Payara Server 
logs shows app is deployed 3 times. And this issue is reproducible only first 
time, just after creating the new project.

Environment:
 * Windows 10
 * JDK 11
 * Payara 5.2021.5-SNAPSHOT
 * Apache NetBeans 12.4

 


was (Author: jgauravgupta):
I am able to reproduce the issue on Windows, where application logs in "Run 
window" shows that app is deployed -> undeployed -> deployed but Payara Server 
logs shows app is deployed 3 times. And this issue is reproducible only first 
time, just after creating the new project.

Environment:
 * Windows 10
 * JDK 11
 * Payara 5.2021.5-SNAPSHOT



 

> NetBeans 12.2, 12.3, 12.4 deploys webapps twice
> ---
>
> Key: NETBEANS-5143
> URL: https://issues.apache.org/jira/browse/NETBEANS-5143
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.2, 12.3, 12.4
> Environment: Windows 10 20H2/AMD Ryzen 7 4800H/32GB RAM
>  java: build 11.0.9.1+1, maven 3.6.3
>  Netbeans versions tested: 12.1, 12.2, 12.3, 12.4 (12.2/12.3/1.4 are effected)
>  Tomcat (new installs): 8.5.60, 9.0.40, Payara (per Patrick Musembi)
>Reporter: Vlad Palnik
>Priority: Major
>  Labels: webapp, webapp-deployment
>
> To whomever it concerns,
>   
>  Bug in NetBeans 12.2, 12.3, 12.4. Netbeans seems to interfere with the 
> deployment of web apps somehow and web apps are deployed twice.
>   
>  While deploying an app it follows this pattern: deploy => undeploy => deploy 
> (see build log below). I tried solving this issue by undeployed any previous 
> versions of the app manually and restarted Tomcat, the same error occurs. The 
> issue appears when using NB 12.2, 12.3
>   
>  When tested on NetBeans 12.1 using the same Java/Tomcat installation/config 
> no errors occur and deployment proceeds correctly.
>   
>  Steps to replicate:
>  1: Create maven webapp (Java EE7, Java 11) in NetBeans 12.1
>  2 Set Tomcat Server in Properties > Run
>  3. Build/Run project in 12.1, you will get a "Hello World" basic site.
>  4. Check build log, only a single deploy should show up.
>  5 Close 12.1 and open same project in 12.2/12.3/12.4
>  6 Before run/build make sure same server and java versions are selected
>  7 Build/Run project
>  8 Check build log, you will see two deploys of webapp
>   
>   
>  BUILD SUCCESS
>  
>  Total time:  18.211 s
>  Finished at: 2020-12-11T17:27:08-08:00
>  
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Starting Tomcat process...
>  Waiting for Tomcat...
>  Tomcat server started.
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext6407158500266578550.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Undeploying ...
>  undeploy?path=/myapp
>  OK - Undeployed application at context path [/myapp]
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5 
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext3519987589623367889.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>   
>   



--
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] [Commented] (NETBEANS-5143) NetBeans 12.2, 12.3, 12.4 deploys webapps twice

2021-06-09 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-5143:


I am able to reproduce the issue on Windows, where application logs in "Run 
window" shows that app is deployed -> undeployed -> deployed but Payara Server 
logs shows app is deployed 3 times. And this issue is reproducible only first 
time, just after creating the new project.

Environment:
 * Windows 10
 * JDK 11
 * Payara 5.2021.5-SNAPSHOT



 

> NetBeans 12.2, 12.3, 12.4 deploys webapps twice
> ---
>
> Key: NETBEANS-5143
> URL: https://issues.apache.org/jira/browse/NETBEANS-5143
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.2, 12.3, 12.4
> Environment: Windows 10 20H2/AMD Ryzen 7 4800H/32GB RAM
>  java: build 11.0.9.1+1, maven 3.6.3
>  Netbeans versions tested: 12.1, 12.2, 12.3, 12.4 (12.2/12.3/1.4 are effected)
>  Tomcat (new installs): 8.5.60, 9.0.40, Payara (per Patrick Musembi)
>Reporter: Vlad Palnik
>Priority: Major
>  Labels: webapp, webapp-deployment
>
> To whomever it concerns,
>   
>  Bug in NetBeans 12.2, 12.3, 12.4. Netbeans seems to interfere with the 
> deployment of web apps somehow and web apps are deployed twice.
>   
>  While deploying an app it follows this pattern: deploy => undeploy => deploy 
> (see build log below). I tried solving this issue by undeployed any previous 
> versions of the app manually and restarted Tomcat, the same error occurs. The 
> issue appears when using NB 12.2, 12.3
>   
>  When tested on NetBeans 12.1 using the same Java/Tomcat installation/config 
> no errors occur and deployment proceeds correctly.
>   
>  Steps to replicate:
>  1: Create maven webapp (Java EE7, Java 11) in NetBeans 12.1
>  2 Set Tomcat Server in Properties > Run
>  3. Build/Run project in 12.1, you will get a "Hello World" basic site.
>  4. Check build log, only a single deploy should show up.
>  5 Close 12.1 and open same project in 12.2/12.3/12.4
>  6 Before run/build make sure same server and java versions are selected
>  7 Build/Run project
>  8 Check build log, you will see two deploys of webapp
>   
>   
>  BUILD SUCCESS
>  
>  Total time:  18.211 s
>  Finished at: 2020-12-11T17:27:08-08:00
>  
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Starting Tomcat process...
>  Waiting for Tomcat...
>  Tomcat server started.
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext6407158500266578550.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>  Deploying on Tomcat 8.5.60
>      profile mode: false
>      debug mode: false
>      force redeploy: true
>  Undeploying ...
>  undeploy?path=/myapp
>  OK - Undeployed application at context path [/myapp]
>  In-place deployment at C:\Users\username\Desktop\myapp\target\myapp##1.2.5 
>  Deployment is in progress...
>  
> deploy?config=file%3A%2FC%3A%2FUsers%2Fusername%2FAppData%2FLocal%2FTemp%2Fcontext3519987589623367889.xml=/myapp
>  OK - Deployed application at context path [/myapp]
>  Start is in progress...
>  start?path=/myapp
>  OK - Started application at context path [/myapp]
>   
>   



--
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-5313) Jakarta EE 8: the registered application servers are not available in the Run context menu

2021-03-19 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-5313:
---
Summary: Jakarta EE 8:  the registered application servers are not 
available in the Run context menu  (was: Jakarta EE 8:  the registered 
application servers are not availble in the Run context menu)

> Jakarta EE 8:  the registered application servers are not available in the 
> Run context menu
> ---
>
> Key: NETBEANS-5313
> URL: https://issues.apache.org/jira/browse/NETBEANS-5313
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 12.2
>Reporter: hantsy bai
>Priority: Major
> Attachments: Image 1.png
>
>
> I created a Jakarta EE 8 web application(Maven), add full profile 
> dependencies, and also created application servers in the *Service* panel.
> When I tried to run the application on the registered application servers via 
> the *Run* action of the context menu, in the dialog, there are no servers 
> that can be selected in the drop menu.
> I have tried to add Payara 5.2020.7 and WildFly 22.0.0.Finally, neither 
> worked.
> My system is Windows 10, use a Java 11 to run the cargotracker application, 
> and I used a Java 15 to start NetBeans IDE.



--
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] [Comment Edited] (NETBEANS-5313) Jakarta EE 8: the registered application servers are not availble in the Run context menu

2021-03-18 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-5313 at 3/18/21, 10:44 AM:
---

Hi,

I am able to reproduce the issue from the popup window to select the server 
with Apache NetBeans 12.2, I will try to reproduce and fix this issue on master 
and create PR.

Workaround for this issue is to select the server from Properties > Run tab > 
Select Server.


was (Author: jgauravgupta):
Hi,

I am able to reproduce the issue from the popup window to select the server, I 
will try to fix this issue and create PR.

Workaround for this issue is to select the server from Properties > Run tab > 
Select Server.

> Jakarta EE 8:  the registered application servers are not availble in the Run 
> context menu
> --
>
> Key: NETBEANS-5313
> URL: https://issues.apache.org/jira/browse/NETBEANS-5313
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 12.2
>Reporter: hantsy bai
>Priority: Major
> Attachments: Image 1.png
>
>
> I created a Jakarta EE 8 web application(Maven), add full profile 
> dependencies, and also created application servers in the *Service* panel.
> When I tried to run the application on the registered application servers via 
> the *Run* action of the context menu, in the dialog, there are no servers 
> that can be selected in the drop menu.
> I have tried to add Payara 5.2020.7 and WildFly 22.0.0.Finally, neither 
> worked.
> My system is Windows 10, use a Java 11 to run the cargotracker application, 
> and I used a Java 15 to start NetBeans IDE.



--
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] [Commented] (NETBEANS-5313) Jakarta EE 8: the registered application servers are not availble in the Run context menu

2021-03-18 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-5313:


Hi,

I am able to reproduce the issue from the popup window to select the server, I 
will try to fix this issue and create PR.

Workaround for this issue is to select the server from Properties > Run tab > 
Select Server.

> Jakarta EE 8:  the registered application servers are not availble in the Run 
> context menu
> --
>
> Key: NETBEANS-5313
> URL: https://issues.apache.org/jira/browse/NETBEANS-5313
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 12.2
>Reporter: hantsy bai
>Priority: Major
> Attachments: Image 1.png
>
>
> I created a Jakarta EE 8 web application(Maven), add full profile 
> dependencies, and also created application servers in the *Service* panel.
> When I tried to run the application on the registered application servers via 
> the *Run* action of the context menu, in the dialog, there are no servers 
> that can be selected in the drop menu.
> I have tried to add Payara 5.2020.7 and WildFly 22.0.0.Finally, neither 
> worked.
> My system is Windows 10, use a Java 11 to run the cargotracker application, 
> and I used a Java 15 to start NetBeans IDE.



--
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] [Commented] (NETBEANS-3042) can't see loggers (log4j2) created from apps deployed on Payara servers

2020-10-19 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3042:


Hi,

I am able to reproduce this issue for both *ODL* and *ULF* formatting and 
*JSON* formatting is working fine in the output console.
https://blog.payara.fish/the-basics-of-logging-in-payara-server

Also, created the internal ticket *FISH-644* to address it in the upcoming 
sprint.

> can't see loggers (log4j2) created from apps deployed on Payara servers
> ---
>
> Key: NETBEANS-3042
> URL: https://issues.apache.org/jira/browse/NETBEANS-3042
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Logger
>Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3, 12.1
> Environment: Windows 10, jdk 1.8, CentOS 7.x with AdoptOpenJDK 8 and 
> 11, Windows 10 with AdoptOpenJDK 8 and 11.
>Reporter: jose luis romero
>Priority: Major
> Attachments: screenshot-1.png
>
>
> I can't see the logs (log4j2) generated by my apps deployed in Payara, they 
> are always empty.
> Tried to make a clean re-installation (no cache, no import config) but didn't 
> work
> Initially, I thought that I messed up some config file so I made a post 
> [https://stackoverflow.com/questions/57679272/i-cant-see-logs-from-apps-on-payara-4-1-just-on-netbeans-console-tab|stackOverflow]
>  but no, it is a Netbeans issue introduced in 11.1 version + payara 5



--
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-4881) Automatically detect & list Payara Server version in the server registration panel

2020-10-08 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-4881:
---
Summary: Automatically detect & list Payara Server version in the server 
registration panel  (was: Automatically detect & list Payara Server version 
from Apache NetBeans IDE)

> Automatically detect & list Payara Server version in the server registration 
> panel
> --
>
> Key: NETBEANS-4881
> URL: https://issues.apache.org/jira/browse/NETBEANS-4881
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Affects Versions: 12.1
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>
> Currently, Payara Server versions are manually updated after each release of 
> the Payara Server in Apache NetBeans Payara tools, with this feature a 
> regular version upgrade of the Payara Server will not be required as Payara 
> Server is now released on a monthly timeframe and Apache NetBeans on the 
> quarterly timeframe, list of Payara Platform version will be fetched from 
> [https://repo1.maven.org/maven2/fish/payara/distributions/payara/maven-metadata.xml].
> Metadata XML only contains the list of Payara Server Community artifact 
> versions which will be listed (except Beta and Alpha version) in the download 
> combo-box during the registration of the Payara Server in the Apache NetBeans.



--
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-4881) Automatically detect & list Payara Server version from Apache NetBeans IDE

2020-10-07 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-4881:
--

 Summary: Automatically detect & list Payara Server version from 
Apache NetBeans IDE
 Key: NETBEANS-4881
 URL: https://issues.apache.org/jira/browse/NETBEANS-4881
 Project: NetBeans
  Issue Type: New Feature
  Components: serverplugins - Code
Affects Versions: 12.1
Reporter: Gaurav Gupta


Currently, Payara Server versions are manually updated after each release of 
the Payara Server in Apache NetBeans Payara tools, with this feature a regular 
version upgrade of the Payara Server will not be required as Payara Server is 
now released on a monthly timeframe and Apache NetBeans on the quarterly 
timeframe, list of Payara Platform version will be fetched from 
[https://repo1.maven.org/maven2/fish/payara/distributions/payara/maven-metadata.xml].

Metadata XML only contains the list of Payara Server Community artifact 
versions which will be listed (except Beta and Alpha version) in the download 
combo-box during the registration of the Payara Server in the Apache NetBeans.



--
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] [Assigned] (NETBEANS-4881) Automatically detect & list Payara Server version from Apache NetBeans IDE

2020-10-07 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-4881:
--

Assignee: Gaurav Gupta

> Automatically detect & list Payara Server version from Apache NetBeans IDE
> --
>
> Key: NETBEANS-4881
> URL: https://issues.apache.org/jira/browse/NETBEANS-4881
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Affects Versions: 12.1
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>
> Currently, Payara Server versions are manually updated after each release of 
> the Payara Server in Apache NetBeans Payara tools, with this feature a 
> regular version upgrade of the Payara Server will not be required as Payara 
> Server is now released on a monthly timeframe and Apache NetBeans on the 
> quarterly timeframe, list of Payara Platform version will be fetched from 
> [https://repo1.maven.org/maven2/fish/payara/distributions/payara/maven-metadata.xml].
> Metadata XML only contains the list of Payara Server Community artifact 
> versions which will be listed (except Beta and Alpha version) in the download 
> combo-box during the registration of the Payara Server in the Apache NetBeans.



--
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-4880) Remove Derby integration from Payara Server components

2020-10-07 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-4880:
---
Description: 
H2 is a Java-based Database which replaced Derby as the default database in 
Payara 5. Derby as a database service that can be started and managed by the 
Payara Platform, has been removed starting from version 5.201. 
 So Derby integration can be removed from Payara Server modules of the Apache 
NetBeans IDE like the creation of Derby JDBC resource and connection pool from 
the Apache NetBeans IDE to Payara Server.

  was:
H2 is a Java-based Database which replaced Derby as the default database in 
Payara 5. Derby as a database service that can be started and managed by Payara 
Server Enterprise, has been removed starting from version 5.201. 
So Derby integration can be removed from Payara Server modules of the Apache 
NetBeans IDE like the creation of Derby JDBC resource and connection pool from 
the Apache NetBeans IDE to Payara Server.


> Remove Derby integration from Payara Server components
> --
>
> Key: NETBEANS-4880
> URL: https://issues.apache.org/jira/browse/NETBEANS-4880
> Project: NetBeans
>  Issue Type: Improvement
>  Components: serverplugins - Code
>Affects Versions: 12.1
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Minor
>  Labels: pull-request-available
>
> H2 is a Java-based Database which replaced Derby as the default database in 
> Payara 5. Derby as a database service that can be started and managed by the 
> Payara Platform, has been removed starting from version 5.201. 
>  So Derby integration can be removed from Payara Server modules of the Apache 
> NetBeans IDE like the creation of Derby JDBC resource and connection pool 
> from the Apache NetBeans IDE to Payara Server.



--
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-4880) Remove Derby integration from Payara Server components

2020-10-07 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-4880:
---
Labels: pull-request-available  (was: )

> Remove Derby integration from Payara Server components
> --
>
> Key: NETBEANS-4880
> URL: https://issues.apache.org/jira/browse/NETBEANS-4880
> Project: NetBeans
>  Issue Type: Improvement
>  Components: serverplugins - Code
>Affects Versions: 12.1
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Minor
>  Labels: pull-request-available
>
> H2 is a Java-based Database which replaced Derby as the default database in 
> Payara 5. Derby as a database service that can be started and managed by 
> Payara Server Enterprise, has been removed starting from version 5.201. 
> So Derby integration can be removed from Payara Server modules of the Apache 
> NetBeans IDE like the creation of Derby JDBC resource and connection pool 
> from the Apache NetBeans IDE to Payara Server.



--
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-4880) Remove Derby integration from Payara Server components

2020-10-07 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-4880:
--

 Summary: Remove Derby integration from Payara Server components
 Key: NETBEANS-4880
 URL: https://issues.apache.org/jira/browse/NETBEANS-4880
 Project: NetBeans
  Issue Type: Improvement
  Components: serverplugins - Code
Affects Versions: 12.1
Reporter: Gaurav Gupta
Assignee: Gaurav Gupta


H2 is a Java-based Database which replaced Derby as the default database in 
Payara 5. Derby as a database service that can be started and managed by Payara 
Server Enterprise, has been removed starting from version 5.201. 
So Derby integration can be removed from Payara Server modules of the Apache 
NetBeans IDE like the creation of Derby JDBC resource and connection pool from 
the Apache NetBeans IDE to Payara Server.



--
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] [Assigned] (NETBEANS-4559) Web Project Properties Dialog fails to save Relative URL

2020-10-07 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-4559:
--

Assignee: Gaurav Gupta

> Web Project Properties Dialog fails to save Relative URL
> 
>
> Key: NETBEANS-4559
> URL: https://issues.apache.org/jira/browse/NETBEANS-4559
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.3
>Reporter: Bernard
>Assignee: Gaurav Gupta
>Priority: Critical
>  Labels: pull-request-available
> Attachments: ProjectPropertiesActionRun.png, 
> ProjectPropertiesActionRun.png, ProjectPropertiesRun.png, 
> PropertiesBefore.png, PropertiesBeforeAfter.png, WebSocketMovieTheater.zip, 
> image-2020-08-07-15-48-32-635.png, image-2020-08-09-11-54-50-908.png, 
> messages.log
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Please see attached images and project.
> In the project properties, there is a field "Relative URL" for the page to 
> load relative to the context path.
> If I enter it and confirm the dialog, then after re-opening the dialog again, 
> the value is lost.
>  
> The project is from 
> [https://technology.amis.nl/2015/05/14/java-web-application-sending-json-messages-through-websocket-to-html5-browser-application-for-real-time-push/]
>  - just adapted to run under NetBeans.
>  



--
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] [Commented] (NETBEANS-4559) Web Project Properties Dialog fails to save Relative URL

2020-08-10 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-4559:


Thanks [~peedeeboy]/[~bht] for all the information, I have added this issue to 
the next sprint of Payara Community project to address it.

> Web Project Properties Dialog fails to save Relative URL
> 
>
> Key: NETBEANS-4559
> URL: https://issues.apache.org/jira/browse/NETBEANS-4559
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.3
>Reporter: Bernard
>Priority: Critical
> Attachments: ProjectPropertiesActionRun.png, 
> ProjectPropertiesActionRun.png, ProjectPropertiesRun.png, 
> PropertiesBefore.png, PropertiesBeforeAfter.png, WebSocketMovieTheater.zip, 
> image-2020-08-07-15-48-32-635.png, image-2020-08-09-11-54-50-908.png, 
> messages.log
>
>
> Please see attached images and project.
> In the project properties, there is a field "Relative URL" for the page to 
> load relative to the context path.
> If I enter it and confirm the dialog, then after re-opening the dialog again, 
> the value is lost.
>  
> The project is from 
> [https://technology.amis.nl/2015/05/14/java-web-application-sending-json-messages-through-websocket-to-html5-browser-application-for-real-time-push/]
>  - just adapted to run under NetBeans.
>  



--
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] [Commented] (NETBEANS-3269) Enterprise Application project type broken

2020-04-21 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3269:


Although EAR projects are outdated, plenty of customers still using them and 
it's part of Jakarta EE 8: 
[https://jakarta.ee/specifications/platform/8/platform-spec-8.html
] [https://www.eclipse.org/lists/jakarta.ee-community/msg00057.html]

We should either create the maven archetype for EAR, App client, and EJB 
project with Jakarta EE 8 dependency like 
[~javajuneau] did for Maven Web Application 
[https://github.com/juneau001/javaee8-archetype] or remove the "Java EE 8" 
version from the dropdown of these (EAR, App client, and EJB) projects.




 

 

> Enterprise Application project type broken
> --
>
> Key: NETBEANS-3269
> URL: https://issues.apache.org/jira/browse/NETBEANS-3269
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 12.0, 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>  Labels: netcat
> Attachments: 11.0-working.log, 11.1-broken.log
>
>
> 1. Install clean NB 11.1
> 2. Activate all modules
> 3. Tools -> Servers -> Add Server -> Payara Server
> 4. Accept defaults for Payara Server; click I have read; click download -> 
> Payara Server 5.192
> 5. Select domain1 (Linux only, Windows not necc); Accept defaults except user 
> name: admin -> OK
> 6. File -> New Project -> Maven Project -> Enterprise Application
> 7. Specify a name: eartest and valid location -> Next
> 8 Choose Server: Payara Server, Java EE Version: Java EE 7 -> Finish
> Expected outcome:
> BUILD SUCCESS (see attached 11.0-working.log)
> Actual outcome:
> BUILD FAILURE (see attached 11.1-broken.log)



--
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-4158) Underscore not visible in Java editor

2020-04-11 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-4158:
---
Affects Version/s: 11.3

> Underscore not visible in Java editor
> -
>
> Key: NETBEANS-4158
> URL: https://issues.apache.org/jira/browse/NETBEANS-4158
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 11.2, 11.3
>Reporter: Gaurav Gupta
>Priority: Major
>  Labels: editor, enum
> Attachments: image-2020-04-11-23-45-00-098.png, 
> image-2020-04-11-23-49-22-187.png
>
>
> On every scroll action underscore is not visible in enum value randomly, 
> please find the attached image for details:
> !image-2020-04-11-23-45-00-098.png|width=500,height=535! 
> !image-2020-04-11-23-49-22-187.png|width=500,height=535!
> To reproduce the issue open the enum 
> (https://github.com/apache/netbeans/blob/master/enterprise/payara.common/src/org/netbeans/modules/payara/common/ServerDetails.java)
>  class in NetBeans Java editor and scroll the source.



--
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-4158) Underscore not visible in Java Constant

2020-04-11 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-4158:
--

 Summary: Underscore not visible in Java Constant
 Key: NETBEANS-4158
 URL: https://issues.apache.org/jira/browse/NETBEANS-4158
 Project: NetBeans
  Issue Type: Bug
  Components: java - Editor
Affects Versions: 11.2
Reporter: Gaurav Gupta
 Attachments: image-2020-04-11-23-45-00-098.png, 
image-2020-04-11-23-49-22-187.png


On every scroll action underscore is not visible in enum value randomly, please 
find the attached image for details:

!image-2020-04-11-23-45-00-098.png|width=500,height=535! 
!image-2020-04-11-23-49-22-187.png|width=500,height=535!

To reproduce the issue open the enum 
(https://github.com/apache/netbeans/blob/master/enterprise/payara.common/src/org/netbeans/modules/payara/common/ServerDetails.java)
 class in NetBeans Java editor and scroll the source.



--
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-4158) Underscore not visible in Java editor

2020-04-11 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-4158:
---
Summary: Underscore not visible in Java editor  (was: Underscore not 
visible in Java Constant)

> Underscore not visible in Java editor
> -
>
> Key: NETBEANS-4158
> URL: https://issues.apache.org/jira/browse/NETBEANS-4158
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 11.2
>Reporter: Gaurav Gupta
>Priority: Major
>  Labels: editor, enum
> Attachments: image-2020-04-11-23-45-00-098.png, 
> image-2020-04-11-23-49-22-187.png
>
>
> On every scroll action underscore is not visible in enum value randomly, 
> please find the attached image for details:
> !image-2020-04-11-23-45-00-098.png|width=500,height=535! 
> !image-2020-04-11-23-49-22-187.png|width=500,height=535!
> To reproduce the issue open the enum 
> (https://github.com/apache/netbeans/blob/master/enterprise/payara.common/src/org/netbeans/modules/payara/common/ServerDetails.java)
>  class in NetBeans Java editor and scroll the source.



--
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] [Resolved] (NETBEANS-3584) Payara Platform 5.194/5.201 support in Apache NetBeans IDE

2020-04-11 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta resolved NETBEANS-3584.

Fix Version/s: 11.3
   Resolution: Fixed

> Payara Platform 5.194/5.201 support in Apache NetBeans IDE
> --
>
> Key: NETBEANS-3584
> URL: https://issues.apache.org/jira/browse/NETBEANS-3584
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro, Payara-Server, pull-request-available
> Fix For: 11.3
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
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-4154) Payara Platform 5.202 support in Apache NetBeans IDE

2020-04-11 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-4154:
---
Summary: Payara Platform 5.202 support in Apache NetBeans IDE  (was: Payara 
Platform 5.201/5.202 support in Apache NetBeans IDE)

> Payara Platform 5.202 support in Apache NetBeans IDE
> 
>
> Key: NETBEANS-4154
> URL: https://issues.apache.org/jira/browse/NETBEANS-4154
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Affects Versions: 11.3
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro, Payara-Server
>




--
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-4154) Payara Platform 5.201/5.202 support in Apache NetBeans IDE

2020-04-11 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-4154:
--

 Summary: Payara Platform 5.201/5.202 support in Apache NetBeans IDE
 Key: NETBEANS-4154
 URL: https://issues.apache.org/jira/browse/NETBEANS-4154
 Project: NetBeans
  Issue Type: New Feature
  Components: serverplugins - Code
Affects Versions: 11.3
Reporter: Gaurav Gupta
Assignee: Gaurav Gupta






--
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] [Resolved] (NETBEANS-3618) Deleted classes not removed from maven web project target directory

2020-04-11 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta resolved NETBEANS-3618.

Fix Version/s: 11.3
   Resolution: Fixed

> Deleted classes not removed from maven web project target directory
> ---
>
> Key: NETBEANS-3618
> URL: https://issues.apache.org/jira/browse/NETBEANS-3618
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Server
> Fix For: 11.3
>
>
> NetBeans Maven Web project copies java classes to *target/classes* and 
> *target/${artifactId-version}/WEB-INF/classes* on compilation. On deleting 
> the Java files from the source tree, classes only removed from the 
> *target/classes* directory.



--
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] [Resolved] (NETBEANS-3515) Payara Server HotDeploy support

2020-04-11 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta resolved NETBEANS-3515.

Fix Version/s: 11.3
 Assignee: Gaurav Gupta
   Resolution: Fixed

> Payara Server HotDeploy support
> ---
>
> Key: NETBEANS-3515
> URL: https://issues.apache.org/jira/browse/NETBEANS-3515
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Server, development-mode, pull-request-available
> Fix For: 11.3
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Payara Server supports the *HotReload* feature by passing the command line 
> "*--hotdeploy"* option in deploy/redeploy command.
> On redeployment of application In HotDeploy mode, the Application deployment 
> performance is improved in the Payara Server by replacing the classloader and 
> using the cached application metadata and info instead of doing the fresh 
> deployment each time.
>  
>  



--
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-4046) org.netbeans.modules:org-netbeans-modules-db-metadata-model:RELEASE113 missing on maven central

2020-03-21 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta closed NETBEANS-4046.
--
Resolution: Not A Bug

Hi [~skygo],

You are right, Thanks for the confirmation, closing the ticket.

> org.netbeans.modules:org-netbeans-modules-db-metadata-model:RELEASE113 
> missing on maven central
> ---
>
> Key: NETBEANS-4046
> URL: https://issues.apache.org/jira/browse/NETBEANS-4046
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Gaurav Gupta
>Priority: Critical
>  Labels: dependency
>
> [https://github.com/apache/netbeans/tree/master/ide/db.metadata.model] is an 
> active module but missing on maven central 
> [[https://mvnrepository.com/artifact/org.netbeans.modules/org-netbeans-modules-db-metadata-model]]
>  where other dependencies are available for version RELEASE113.



--
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-4046) org.netbeans.modules:org-netbeans-modules-db-metadata-model:RELEASE113 missing on maven central

2020-03-21 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-4046:
--

 Summary: 
org.netbeans.modules:org-netbeans-modules-db-metadata-model:RELEASE113 missing 
on maven central
 Key: NETBEANS-4046
 URL: https://issues.apache.org/jira/browse/NETBEANS-4046
 Project: NetBeans
  Issue Type: Bug
Reporter: Gaurav Gupta


[https://github.com/apache/netbeans/tree/master/ide/db.metadata.model] is an 
active module but missing on maven central 
[[https://mvnrepository.com/artifact/org.netbeans.modules/org-netbeans-modules-db-metadata-model]]
 where other dependencies are available for version RELEASE113.



--
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-3936) Project creation from payara-micro-maven-archetype failed

2020-03-02 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-3936:
---
Affects Version/s: 11.3
   11.1
   11.2

> Project creation from payara-micro-maven-archetype failed
> -
>
> Key: NETBEANS-3936
> URL: https://issues.apache.org/jira/browse/NETBEANS-3936
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.1, 11.2, 11.3
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro
> Fix For: 12.0
>
>
> Earlier maven supports the creation of a project from the latest version 
> archetype by defining the blank version in archetypeVersion property in 
> command line but now it is mandatory to defined the archetypeVersion, hence 
> results in the following error:
> {code:java}
> [WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
> org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
> http://repo.maven.apache.org/maven2 with status code 501{code}
> The correct command defines -DarchetypeVersion=1.0.4 to generate a project 
> from archetype:
> {code:java}
>  mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
> -DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2 
> -DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
> -DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
> -Darchetype.interactive=false --batch-mode 
> org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
> The issue found in all versions of Apache NetBeans IDE (which supports Payara 
> Micro) due to restriction in maven central.



--
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] [Resolved] (NETBEANS-3936) Project creation from payara-micro-maven-archetype failed

2020-03-02 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta resolved NETBEANS-3936.

Fix Version/s: 12.0
   Resolution: Fixed

> Project creation from payara-micro-maven-archetype failed
> -
>
> Key: NETBEANS-3936
> URL: https://issues.apache.org/jira/browse/NETBEANS-3936
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro
> Fix For: 12.0
>
>
> Earlier maven supports the creation of a project from the latest version 
> archetype by defining the blank version in archetypeVersion property in 
> command line but now it is mandatory to defined the archetypeVersion, hence 
> results in the following error:
> {code:java}
> [WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
> org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
> http://repo.maven.apache.org/maven2 with status code 501{code}
> The correct command defines -DarchetypeVersion=1.0.4 to generate a project 
> from archetype:
> {code:java}
>  mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
> -DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2 
> -DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
> -DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
> -Darchetype.interactive=false --batch-mode 
> org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
> The issue found in all versions of Apache NetBeans IDE (which supports Payara 
> Micro) due to restriction in maven central.



--
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] [Commented] (NETBEANS-3936) Project creation from payara-micro-maven-archetype failed

2020-03-02 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3936:


Tested the issue on Apache NetBeans master branch and can't reproduce as it is 
already fixed by upgrading the maven-archetype-plugin version to 3.1.2 via 
commit  
[https://github.com/apache/netbeans/commit/21ee047321638132b495fc8dd46be3aeeb39a4c1#diff-2a580546eea78662ac5821a9a477f211]

> Project creation from payara-micro-maven-archetype failed
> -
>
> Key: NETBEANS-3936
> URL: https://issues.apache.org/jira/browse/NETBEANS-3936
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro
>
> Earlier maven supports the creation of a project from the latest version 
> archetype by defining the blank version in archetypeVersion property in 
> command line but now it is mandatory to defined the archetypeVersion, hence 
> results in the following error:
> {code:java}
> [WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
> org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
> http://repo.maven.apache.org/maven2 with status code 501{code}
> The correct command defines -DarchetypeVersion=1.0.4 to generate a project 
> from archetype:
> {code:java}
>  mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
> -DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2 
> -DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
> -DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
> -Darchetype.interactive=false --batch-mode 
> org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
> The issue found in all versions of Apache NetBeans IDE (which supports Payara 
> Micro) due to restriction in maven central.



--
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-3936) Project creation from payara-micro-maven-archetype failed

2020-03-02 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-3936:
---
Description: 
Earlier maven supports the creation of a project from the latest version 
archetype by defining the blank version in archetypeVersion property in command 
line but now it is mandatory to defined the archetypeVersion, hence results in 
the following error:
{code:java}
[WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
http://repo.maven.apache.org/maven2 with status code 501{code}
The correct command defines -DarchetypeVersion=1.0.4 to generate a project from 
archetype:
{code:java}
 mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
-DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
-DarchetypeRepository=https://repo.maven.apache.org/maven2 
-DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
-DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
-Darchetype.interactive=false --batch-mode 
org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
The issue found in all versions of Apache NetBeans IDE (which supports Payara 
Micro) due to restriction in maven central.

  was:
Earlier maven supports the creation of a project from the latest version 
archetype by defining the blank version in archetypeVersion property but now it 
is restricted and results in the following error:
{code:java}
[WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
http://repo.maven.apache.org/maven2 with status code 501{code}
The correct command to generate a project from archetype:
{code:java}
 mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
-DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
-DarchetypeRepository=https://repo.maven.apache.org/maven2 
-DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
-DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
-Darchetype.interactive=false --batch-mode 
org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
This caused issue in all versions of Apache NetBeans IDE due to restriction in 
maven central.


> Project creation from payara-micro-maven-archetype failed
> -
>
> Key: NETBEANS-3936
> URL: https://issues.apache.org/jira/browse/NETBEANS-3936
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro
>
> Earlier maven supports the creation of a project from the latest version 
> archetype by defining the blank version in archetypeVersion property in 
> command line but now it is mandatory to defined the archetypeVersion, hence 
> results in the following error:
> {code:java}
> [WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
> org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
> http://repo.maven.apache.org/maven2 with status code 501{code}
> The correct command defines -DarchetypeVersion=1.0.4 to generate a project 
> from archetype:
> {code:java}
>  mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
> -DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2 
> -DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
> -DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
> -Darchetype.interactive=false --batch-mode 
> org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
> The issue found in all versions of Apache NetBeans IDE (which supports Payara 
> Micro) due to restriction in maven central.



--
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-3936) Project creation from payara-micro-maven-archetype failed

2020-03-02 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-3936:
---
Description: 
Earlier maven supports the creation of a project from the latest version 
archetype by defining the blank version in archetypeVersion property but now it 
is restricted and results in the following error:
{code:java}
[WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
http://repo.maven.apache.org/maven2 with status code 501{code}
The correct command to generate a project from archetype:
{code:java}
 mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
-DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
-DarchetypeRepository=https://repo.maven.apache.org/maven2 
-DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
-DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
-Darchetype.interactive=false --batch-mode 
org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
This caused issue in all versions of Apache NetBeans IDE due to restriction in 
maven central.

  was:
Earlier maven supports the creation of a project from the latest version 
archetype by defining the blank version in archetypeVersion property but now it 
is restricted and results in the following error:
{{}}
{code:java}
[WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
http://repo.maven.apache.org/maven2 with status code 501{code}
The correct command to generate a project from archetype:
{code:java}
 mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
-DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
-DarchetypeRepository=https://repo.maven.apache.org/maven2 
-DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
-DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
-Darchetype.interactive=false --batch-mode 
org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
This caused in all versions of Apache NetBeans IDE due to restriction in maven 
central.


> Project creation from payara-micro-maven-archetype failed
> -
>
> Key: NETBEANS-3936
> URL: https://issues.apache.org/jira/browse/NETBEANS-3936
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro
>
> Earlier maven supports the creation of a project from the latest version 
> archetype by defining the blank version in archetypeVersion property but now 
> it is restricted and results in the following error:
> {code:java}
> [WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
> org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
> http://repo.maven.apache.org/maven2 with status code 501{code}
> The correct command to generate a project from archetype:
> {code:java}
>  mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
> -DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2 
> -DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
> -DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
> -Darchetype.interactive=false --batch-mode 
> org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
> This caused issue in all versions of Apache NetBeans IDE due to restriction 
> in maven central.



--
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] [Assigned] (NETBEANS-3936) Project creation from payara-micro-maven-archetype failed

2020-03-02 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-3936:
--

Assignee: Gaurav Gupta

> Project creation from payara-micro-maven-archetype failed
> -
>
> Key: NETBEANS-3936
> URL: https://issues.apache.org/jira/browse/NETBEANS-3936
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro
>
> Earlier maven supports the creation of a project from the latest version 
> archetype by defining the blank version in archetypeVersion property but now 
> it is restricted and results in the following error:
> {{}}
> {code:java}
> [WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
> org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
> http://repo.maven.apache.org/maven2 with status code 501{code}
> The correct command to generate a project from archetype:
> {code:java}
>  mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
> -DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2 
> -DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
> -DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
> -Darchetype.interactive=false --batch-mode 
> org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
> This caused in all versions of Apache NetBeans IDE due to restriction in 
> maven central.



--
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-3936) Project creation from payara-micro-maven-archetype failed

2020-03-02 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-3936:
--

 Summary: Project creation from payara-micro-maven-archetype failed
 Key: NETBEANS-3936
 URL: https://issues.apache.org/jira/browse/NETBEANS-3936
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Reporter: Gaurav Gupta


Earlier maven supports the creation of a project from the latest version 
archetype by defining the blank version in archetypeVersion property but now it 
is restricted and results in the following error:
{{}}
{code:java}
[WARNING] Error reading archetype catalog http://repo.maven.apache.org/maven2 
org.apache.maven.wagon.TransferFailedException: Failed to transfer file 
http://repo.maven.apache.org/maven2 with status code 501{code}
The correct command to generate a project from archetype:
{code:java}
 mvn -DarchetypeGroupId=fish.payara.maven.archetypes 
-DarchetypeArtifactId=payara-micro-maven-archetype -DarchetypeVersion=1.0.4 
-DarchetypeRepository=https://repo.maven.apache.org/maven2 
-DgroupId=com.mycompany -DartifactId=mavenproject33 -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mavenproject33 -DjavaeeVersion=8.0 
-DpayaraMicroVersion=5.194 -DautoBindHttp=true -DcontextRoot=/ 
-Darchetype.interactive=false --batch-mode 
org.apache.maven.plugins:maven-archetype-plugin:2.4:generate{code}
This caused in all versions of Apache NetBeans IDE due to restriction in maven 
central.



--
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] [Assigned] (NETBEANS-3618) Deleted classes not removed from maven web project target directory

2020-01-06 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-3618:
--

Assignee: Gaurav Gupta

> Deleted classes not removed from maven web project target directory
> ---
>
> Key: NETBEANS-3618
> URL: https://issues.apache.org/jira/browse/NETBEANS-3618
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Server
>
> NetBeans Maven Web project copies java classes to *target/classes* and 
> *target/${artifactId-version}/WEB-INF/classes* on compilation. On deleting 
> the Java files from the source tree, classes only removed from the 
> *target/classes* directory.



--
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-3618) Deleted classes not removed maven web project target directory

2019-12-20 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-3618:
--

 Summary: Deleted classes not removed maven web project target 
directory
 Key: NETBEANS-3618
 URL: https://issues.apache.org/jira/browse/NETBEANS-3618
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Reporter: Gaurav Gupta


NetBeans Maven Web project copies java classes to *target/classes* and 
*target/${artifactId-version}/WEB-INF/classes* on compilation. On deleting the 
Java files from the source tree, classes only removed from the *target/classes* 
directory.



--
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-3618) Deleted classes not removed from maven web project target directory

2019-12-20 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-3618:
---
Summary: Deleted classes not removed from maven web project target 
directory  (was: Deleted classes not removed maven web project target directory)

> Deleted classes not removed from maven web project target directory
> ---
>
> Key: NETBEANS-3618
> URL: https://issues.apache.org/jira/browse/NETBEANS-3618
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Server
>
> NetBeans Maven Web project copies java classes to *target/classes* and 
> *target/${artifactId-version}/WEB-INF/classes* on compilation. On deleting 
> the Java files from the source tree, classes only removed from the 
> *target/classes* directory.



--
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] [Commented] (NETBEANS-3584) Payara Platform 5.194/5.201 support in Apache NetBeans IDE

2019-12-14 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3584:


Hi [~GeertjanWielenga],

May you create a component named "serverplugins - Payara".

> Payara Platform 5.194/5.201 support in Apache NetBeans IDE
> --
>
> Key: NETBEANS-3584
> URL: https://issues.apache.org/jira/browse/NETBEANS-3584
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro, Payara-Server, pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
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] [Commented] (NETBEANS-3584) Payara Platform 5.194/5.201 support in Apache NetBeans IDE

2019-12-14 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3584:


The latest Payara Server support in IDE lagging behind for a quarter as Payara 
and Apache NetBeans release dates are different (not near) hence provided the 
support for Payara Server 201 in advance without a download link of a maven 
artifact.

> Payara Platform 5.194/5.201 support in Apache NetBeans IDE
> --
>
> Key: NETBEANS-3584
> URL: https://issues.apache.org/jira/browse/NETBEANS-3584
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro, Payara-Server, pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
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-3584) Payara Platform 5.194/5.201 support in Apache NetBeans IDE

2019-12-12 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-3584:
---
Summary: Payara Platform 5.194/5.201 support in Apache NetBeans IDE  (was: 
Payara Platform 5.194 support in Apache NetBeans IDE)

> Payara Platform 5.194/5.201 support in Apache NetBeans IDE
> --
>
> Key: NETBEANS-3584
> URL: https://issues.apache.org/jira/browse/NETBEANS-3584
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Micro, Payara-Server
>




--
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-3584) Payara Platform 5.194 support in Apache NetBeans IDE

2019-12-11 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-3584:
--

 Summary: Payara Platform 5.194 support in Apache NetBeans IDE
 Key: NETBEANS-3584
 URL: https://issues.apache.org/jira/browse/NETBEANS-3584
 Project: NetBeans
  Issue Type: New Feature
  Components: serverplugins - Code
Reporter: Gaurav Gupta
Assignee: Gaurav Gupta






--
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-3573) Unable to start the Payara server due to JDK version NumberFormatException

2019-12-10 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-3573:
---
Summary: Unable to start the Payara server due to JDK version 
NumberFormatException  (was: Unable to start the Payara server due to 
NumberFormatException)

> Unable to start the Payara server due to JDK version NumberFormatException
> --
>
> Key: NETBEANS-3573
> URL: https://issues.apache.org/jira/browse/NETBEANS-3573
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - Code
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Server
>
> Payara Server startup failed from NetBeans IDE, If JDK version includes text 
> suffix e.g 1.8.0_232-ea-8u232-b09-0ubuntu1-b09.



--
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-3573) Unable to start the Payara server due to NumberFormatException

2019-12-10 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-3573:
--

 Summary: Unable to start the Payara server due to 
NumberFormatException
 Key: NETBEANS-3573
 URL: https://issues.apache.org/jira/browse/NETBEANS-3573
 Project: NetBeans
  Issue Type: Bug
  Components: serverplugins - Code
Reporter: Gaurav Gupta
Assignee: Gaurav Gupta


Payara Server startup failed from NetBeans IDE, If JDK version includes text 
suffix e.g 1.8.0_232-ea-8u232-b09-0ubuntu1-b09.



--
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-3515) Payara Server HotDeploy support

2019-12-02 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta updated NETBEANS-3515:
---
Summary: Payara Server HotDeploy support  (was: Payara Server HotReload 
support)

> Payara Server HotDeploy support
> ---
>
> Key: NETBEANS-3515
> URL: https://issues.apache.org/jira/browse/NETBEANS-3515
> Project: NetBeans
>  Issue Type: New Feature
>  Components: serverplugins - Code
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Major
>  Labels: Payara-Server, development-mode, pull-request-available
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Payara Server supports the *HotReload* feature by passing the command line 
> "*--hotdeploy"* option in deploy/redeploy command.
> On redeployment of application In HotDeploy mode, the Application deployment 
> performance is improved in the Payara Server by replacing the classloader and 
> using the cached application metadata and info instead of doing the fresh 
> deployment each time.
>  
>  



--
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-3515) Payara Server HotReload support

2019-12-02 Thread Gaurav Gupta (Jira)
Gaurav Gupta created NETBEANS-3515:
--

 Summary: Payara Server HotReload support
 Key: NETBEANS-3515
 URL: https://issues.apache.org/jira/browse/NETBEANS-3515
 Project: NetBeans
  Issue Type: New Feature
  Components: serverplugins - Code
Reporter: Gaurav Gupta
Assignee: Gaurav Gupta


Payara Server supports the *HotReload* feature by passing the command line 
"*--hotdeploy"* option in deploy/redeploy command.

On redeployment of application In HotDeploy mode, the Application deployment 
performance is improved in the Payara Server by replacing the classloader and 
using the cached application metadata and info instead of doing the fresh 
deployment each time.

 

 



--
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] [Commented] (NETBEANS-3316) Running Java EE projects on Payara takes a VERY LONG TIME to start

2019-10-31 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3316:


I have also created an internal issue in Payara Jira to ignore inactive dtds 
during scanning and add a warning with a valid dtd link in the NetBeans 
console. I would like to recommend to have a look at this doc for the valid 
link and descriptor usage: 
[https://docs.payara.fish/documentation/payara-server/app-deployment/deployment-descriptors.html]

> Running Java EE projects on Payara takes a VERY LONG TIME to start
> --
>
> Key: NETBEANS-3316
> URL: https://issues.apache.org/jira/browse/NETBEANS-3316
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Project, javaee - Web Project, 
> serverplugins - GlassFish
>Affects Versions: 8.2, 11.1
> Environment: Windows 10 64-bit
> Payara 4,2
> Java 1.8,0_231 64 bit (also happens with Java 11.0.1 64 bit)
>Reporter: Murray Wilson
>Priority: Critical
> Attachments: messages.log, messages.log, messages.log.1, 
> messages.log.1, messages.log.2, metrics, selfsampler.npss, uigestures
>
>
> When working on any Java EE Web Project, attempting to start or debug the 
> project takes an extremely long time - over 20 minutes to start an 
> application on a local paya server on a windows 10 machine with the local 
> payara server already loaded, even if the project had already having been 
> deployed.
> It will deploy the project to the local server again and then get stuck at 
> 50% completion for over 20-30 minutes using Netbeans 11.1 (in 8.2 it would 
> take 2-6 minutes). This delay seems to be getting longer with each release 
> and it has gotten to the point where netbeans is unusable for web development.
>  



--
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] [Commented] (NETBEANS-3316) Running Java EE projects on Payara takes a VERY LONG TIME to start

2019-10-31 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3316:


Great, After replacing with the valid link, how much time NetBeans takes to 
deploy it?

> Running Java EE projects on Payara takes a VERY LONG TIME to start
> --
>
> Key: NETBEANS-3316
> URL: https://issues.apache.org/jira/browse/NETBEANS-3316
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Project, javaee - Web Project, 
> serverplugins - GlassFish
>Affects Versions: 8.2, 11.1
> Environment: Windows 10 64-bit
> Payara 4,2
> Java 1.8,0_231 64 bit (also happens with Java 11.0.1 64 bit)
>Reporter: Murray Wilson
>Priority: Critical
> Attachments: messages.log, messages.log, messages.log.1, 
> messages.log.1, messages.log.2, metrics, selfsampler.npss, uigestures
>
>
> When working on any Java EE Web Project, attempting to start or debug the 
> project takes an extremely long time - over 20 minutes to start an 
> application on a local paya server on a windows 10 machine with the local 
> payara server already loaded, even if the project had already having been 
> deployed.
> It will deploy the project to the local server again and then get stuck at 
> 50% completion for over 20-30 minutes using Netbeans 11.1 (in 8.2 it would 
> take 2-6 minutes). This delay seems to be getting longer with each release 
> and it has gotten to the point where netbeans is unusable for web development.
>  



--
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] [Commented] (NETBEANS-3316) Running Java EE projects on Payara takes a VERY LONG TIME to start

2019-10-31 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3316:


I tried to reproduce the issue with the hello-world app and Payara 4.x. When 
using the [http://glassfish.org/dtds/glassfish-resources_1_5.dtd] in 
glassfish-resources.xml, deployment takes 45 seconds (where 100ms in payara + 
45000ms in NetBeans), If using a valid dtd link then total deployment takes 
100ms.

Indeed based on your application size and number/size of dd file & invalid 
link, It could be varied. Hence I need your confirmation from you too Murray.

> Running Java EE projects on Payara takes a VERY LONG TIME to start
> --
>
> Key: NETBEANS-3316
> URL: https://issues.apache.org/jira/browse/NETBEANS-3316
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Project, javaee - Web Project, 
> serverplugins - GlassFish
>Affects Versions: 8.2, 11.1
> Environment: Windows 10 64-bit
> Payara 4,2
> Java 1.8,0_231 64 bit (also happens with Java 11.0.1 64 bit)
>Reporter: Murray Wilson
>Priority: Critical
> Attachments: messages.log, messages.log, messages.log.1, 
> messages.log.1, messages.log.2, metrics, selfsampler.npss, uigestures
>
>
> When working on any Java EE Web Project, attempting to start or debug the 
> project takes an extremely long time - over 20 minutes to start an 
> application on a local paya server on a windows 10 machine with the local 
> payara server already loaded, even if the project had already having been 
> deployed.
> It will deploy the project to the local server again and then get stuck at 
> 50% completion for over 20-30 minutes using Netbeans 11.1 (in 8.2 it would 
> take 2-6 minutes). This delay seems to be getting longer with each release 
> and it has gotten to the point where netbeans is unusable for web development.
>  



--
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] [Comment Edited] (NETBEANS-3316) Running Java EE projects on Payara takes a VERY LONG TIME to start

2019-10-31 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-3316 at 10/31/19 5:09 PM:
--

Hi [~naris], 
 Attached logs have many errors listed related to fetching the dtd files. May 
you also try to deploy a hello-world application without any 
deployment-descriptor (e.g glassfish-resources.xml) file on Payara 4.x & the 
latest 5.19x and share the result.

 If without dd, your application deploys quickly, then please share the 
deployment-descriptor file here. Also, try to check the accessibility of dtd 
URL.
Example replace dtd URL from 
[http://glassfish.org/dtds/glassfish-resources_1_5.dtd] to 
[https://raw.githubusercontent.com/eclipse-ee4j/jakartaee-tck/master/lib/dtds/glassfish-resources_1_5.dtd]
 in glassfish-resources.xml.


was (Author: jgauravgupta):
Hi [~naris], 
Attached logs have many errors listed related to fetching the dtd files. May 
you also try to deploy a hello-world application without any 
deployment-descriptor file on Payara 4.x & the latest 5.19x and share the 
result. If without dd, your application deploys quickly, then please share the 
deployment-descriptor file here.

> Running Java EE projects on Payara takes a VERY LONG TIME to start
> --
>
> Key: NETBEANS-3316
> URL: https://issues.apache.org/jira/browse/NETBEANS-3316
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Project, javaee - Web Project, 
> serverplugins - GlassFish
>Affects Versions: 8.2, 11.1
> Environment: Windows 10 64-bit
> Payara 4,2
> Java 1.8,0_231 64 bit (also happens with Java 11.0.1 64 bit)
>Reporter: Murray Wilson
>Priority: Critical
> Attachments: messages.log, messages.log, messages.log.1, 
> messages.log.1, messages.log.2, metrics, selfsampler.npss, uigestures
>
>
> When working on any Java EE Web Project, attempting to start or debug the 
> project takes an extremely long time - over 20 minutes to start an 
> application on a local paya server on a windows 10 machine with the local 
> payara server already loaded, even if the project had already having been 
> deployed.
> It will deploy the project to the local server again and then get stuck at 
> 50% completion for over 20-30 minutes using Netbeans 11.1 (in 8.2 it would 
> take 2-6 minutes). This delay seems to be getting longer with each release 
> and it has gotten to the point where netbeans is unusable for web development.
>  



--
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] [Commented] (NETBEANS-3316) Running Java EE projects on Payara takes a VERY LONG TIME to start

2019-10-31 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3316:


Hi [~naris], 
Attached logs have many errors listed related to fetching the dtd files. May 
you also try to deploy a hello-world application without any 
deployment-descriptor file on Payara 4.x & the latest 5.19x and share the 
result. If without dd, your application deploys quickly, then please share the 
deployment-descriptor file here.

> Running Java EE projects on Payara takes a VERY LONG TIME to start
> --
>
> Key: NETBEANS-3316
> URL: https://issues.apache.org/jira/browse/NETBEANS-3316
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Project, javaee - Web Project, 
> serverplugins - GlassFish
>Affects Versions: 8.2, 11.1
> Environment: Windows 10 64-bit
> Payara 4,2
> Java 1.8,0_231 64 bit (also happens with Java 11.0.1 64 bit)
>Reporter: Murray Wilson
>Priority: Critical
> Attachments: messages.log, messages.log.1, messages.log.2
>
>
> When working on any Java EE Web Project, attempting to start or debug the 
> project takes an extremely long time - over 20 minutes to start an 
> application on a local paya server on a windows 10 machine with the local 
> payara server already loaded, even if the project had already having been 
> deployed.
> It will deploy the project to the local server again and then get stuck at 
> 50% completion for over 20-30 minutes using Netbeans 11.1 (in 8.2 it would 
> take 2-6 minutes). This delay seems to be getting longer with each release 
> and it has gotten to the point where netbeans is unusable for web development.
>  



--
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] [Assigned] (NETBEANS-3270) Webapp not correctly recognised as Java EE

2019-10-28 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-3270:
--

Assignee: Gaurav Gupta

> Webapp not correctly recognised as Java EE
> --
>
> Key: NETBEANS-3270
> URL: https://issues.apache.org/jira/browse/NETBEANS-3270
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project, projects - Maven
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Assignee: Gaurav Gupta
>Priority: Major
>
> Steps to reproduce:
> 1. Clean install of Netbeans 11.1 or 11.2 Beta 3 with all modules activated 
> and Payara 5.192 added.
> 2. File -> New Project -> Maven -> Web Application
> 3. Accept defaults for project except: Server: Payara  Server Java EE 
> version: Java EE 7 Web -> Finish
> 4. File -> New -> Other -> Persistence -> Persistence Unit -> Next
> Expected Outcome:
> Provider and Database Dialog should show EE options, i.e. "Use Java 
> Transaction APIs" and server JNDI datasources in the "Data Source" drop down.
> Actual Outcome:
> Dialog only shows SE options; no server data sources and to JTA checkbox.



--
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] [Commented] (NETBEANS-3273) Cannot run Payara 5 under JDK 8

2019-10-25 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3273:


Can't reproduce on Windows hence asked my team member to reproduce on the same 
environment.

> Cannot run Payara 5 under JDK 8
> ---
>
> Key: NETBEANS-3273
> URL: https://issues.apache.org/jira/browse/NETBEANS-3273
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - GlassFish
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>
> On Linux (not sure about other platforms), running Payara using JDK 8 gives 
> the following error on Services -> server -> Payara -> start:
> Unrecognized option: --add-opens=java.base/jdk.internal.loader=ALL-UNNAMED
> Error: Could not create the Java Virtual Machine.
> Error: A fatal exception has occurred. Program will exit.
> Steps to reproduce:
> # Ensure host system has JDK 11 (as default) and JDK 8 installed
> # Clean install NB 11.1 or 11.2 with JDK 11 as chosen JVM and activate all 
> modules
> # Use platform manager to add JDK 8 as new platform.
> # Add a Payara 5.192 or 5.193 server
> # Services -> Server -> Payara Server -> Properties -> Java -> Java Platform: 
> JDK 8 -> Close
> # Services -> Server -> Payara Server -> Start
> Expected behaviour:
> Successful startup messages in Payara Server console
> Actual behaviour:
> Failure messages in Payara Server console:
> Unrecognized option: --add-opens=java.base/jdk.internal.loader=ALL-UNNAMED
> Error: Could not create the Java Virtual Machine.
> Error: A fatal exception has occurred. Program will exit.
> This is a known issue in the original Payara eclipse plugin tooling, see:
> [https://github.com/payara/ecosystem-eclipse-plugin/issues/11|https://github.com/payara/ecosystem-eclipse-plugin/issues/11]



--
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] [Commented] (NETBEANS-3269) Enterprise Application project type broken

2019-10-24 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3269:


I can reproduce it and found 2 issues :

*(A).* Ideally, It should create 4 projects but after generating 5 projects are 
created:
# Sample (parent project)
# Sample-ear
# Sample-ejb
# Sample-war
# Sample-1.0-Snapshot (this project must not be generated, which is Java EE 8 
sample)

*(B).* The packaging for the *parent* project should be *pom* but it is 
overridden by the *war* type that causes the failure in the creation of the 
project. Also the *javax:javaee-api:8.0* dependency added to the parent project.

It looks like Java EE 8 maven archetype is also executed even though it must 
not as Java EE 7 selected during project creation.



> Enterprise Application project type broken
> --
>
> Key: NETBEANS-3269
> URL: https://issues.apache.org/jira/browse/NETBEANS-3269
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
> Attachments: 11.0-working.log, 11.1-broken.log
>
>
> 1. Install clean NB 11.1
> 2. Activate all modules
> 3. Tools -> Servers -> Add Server -> Payara Server
> 4. Accept defaults for Payara Server; click I have read; click download -> 
> Payara Server 5.192
> 5. Select domain1 (Linux only, Windows not necc); Accept defaults except user 
> name: admin -> OK
> 6. File -> New Project -> Maven Project -> Enterprise Application
> 7. Specify a name: eartest and valid location -> Next
> 8 Choose Server: Payara Server, Java EE Version: Java EE 7 -> Finish
> Expected outcome:
> BUILD SUCCESS (see attached 11.0-working.log)
> Actual outcome:
> BUILD FAILURE (see attached 11.1-broken.log)



--
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] [Commented] (NETBEANS-3270) Webapp not correctly recognised as Java EE

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3270:


I can confirm the issue Maven/Gradle Web application (irrespective of the 
selected server type) but works fine in Ant Web Application.

> Webapp not correctly recognised as Java EE
> --
>
> Key: NETBEANS-3270
> URL: https://issues.apache.org/jira/browse/NETBEANS-3270
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project, projects - Maven
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>
> Steps to reproduce:
> 1. Clean install of Netbeans 11.1 or 11.2 Beta 3 with all modules activated 
> and Payara 5.192 added.
> 2. File -> New Project -> Maven -> Web Application
> 3. Accept defaults for project except: Server: Payara  Server Java EE 
> version: Java EE 7 Web -> Finish
> 4. File -> New -> Other -> Persistence -> Persistence Unit -> Next
> Expected Outcome:
> Provider and Database Dialog should show EE options, i.e. "Use Java 
> Transaction APIs" and server JNDI datasources in the "Data Source" drop down.
> Actual Outcome:
> Dialog only shows SE options; no server data sources and to JTA checkbox.



--
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] [Comment Edited] (NETBEANS-3270) Webapp not correctly recognised as Java EE

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-3270 at 10/22/19 5:12 PM:
--

I can confirm the issue for Maven/Gradle Web application (irrespective of the 
selected server type) but works fine in Ant Web Application.


was (Author: jgauravgupta):
I can confirm the issue Maven/Gradle Web application (irrespective of the 
selected server type) but works fine in Ant Web Application.

> Webapp not correctly recognised as Java EE
> --
>
> Key: NETBEANS-3270
> URL: https://issues.apache.org/jira/browse/NETBEANS-3270
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project, projects - Maven
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>
> Steps to reproduce:
> 1. Clean install of Netbeans 11.1 or 11.2 Beta 3 with all modules activated 
> and Payara 5.192 added.
> 2. File -> New Project -> Maven -> Web Application
> 3. Accept defaults for project except: Server: Payara  Server Java EE 
> version: Java EE 7 Web -> Finish
> 4. File -> New -> Other -> Persistence -> Persistence Unit -> Next
> Expected Outcome:
> Provider and Database Dialog should show EE options, i.e. "Use Java 
> Transaction APIs" and server JNDI datasources in the "Data Source" drop down.
> Actual Outcome:
> Dialog only shows SE options; no server data sources and to JTA checkbox.



--
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] [Comment Edited] (NETBEANS-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-3271 at 10/22/19 8:27 AM:
--

Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

The issue is related to the maven archetype (instead of the selected server) as 
only Web Application archetype is available for Java EE 8 application.


was (Author: jgauravgupta):
Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

** The issue is related to the maven archetype (instead of the selected server) 
as only Web Application archetype is available for Java EE 8 application.

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Assignee: Josh Juneau
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



--
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] [Comment Edited] (NETBEANS-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-3271 at 10/22/19 8:27 AM:
--

Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

** The issue is related to the maven archetype (instead of the selected server) 
as only Web Application archetype is available for Java EE 8 application.


was (Author: jgauravgupta):
Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Assignee: Josh Juneau
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



--
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] [Assigned] (NETBEANS-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-3271:
--

Assignee: Josh Juneau

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Assignee: Josh Juneau
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



--
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] [Commented] (NETBEANS-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3271:


Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



--
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-1965) Export public & friend packages for Payara Plugin

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta closed NETBEANS-1965.
--
Resolution: Won't Do

This ticket can be closed in favour of Payara plugin's donation:

[https://github.com/apache/netbeans/pull/1290]

[https://github.com/apache/netbeans/pull/1297]

> Export public & friend packages for Payara Plugin
> -
>
> Key: NETBEANS-1965
> URL: https://issues.apache.org/jira/browse/NETBEANS-1965
> Project: NetBeans
>  Issue Type: Task
>Affects Versions: 10.0
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Minor
>  Labels: Export-Package, Exported-Packages
> Fix For: Next
>
>  Time Spent: 3h 10m
>  Remaining Estimate: 0h
>




--
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] [Commented] (NETBEANS-2861) Always generates Maven Web Application on creation of other Maven EE Project (EJB Module, Enterprise Application, Enterprise Application Client) with Java EE 8

2019-07-18 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-2861:


I agree with [~Juneau001], this is not a blocker issue.

> Always generates Maven Web Application on creation of other Maven EE Project 
> (EJB Module, Enterprise Application, Enterprise Application Client) with Java 
> EE 8
> ---
>
> Key: NETBEANS-2861
> URL: https://issues.apache.org/jira/browse/NETBEANS-2861
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Maven
>Affects Versions: 11.1
>Reporter: Gaurav Gupta
>Assignee: Josh Juneau
>Priority: Major
>  Labels: javaee, maven
>
> Step to reproduce :
>  * File Menu > New Project > Java with Maven
>  * Choose EJB Module, Enterprise Application or Enterprise Application
>  * Select Java EE 8 version and click finish
>  * In the Project window, a Maven Web Application project is shown
> If Java EE 7 version is selected then project generated from archetype  
> *org.codehaus.mojo.archetypes:ejb-javaee7:1.1* and the structure has no 
> problem.



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

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

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



[jira] [Assigned] (NETBEANS-2861) Always generates Maven Web Application on creation of other Maven EE Project (EJB Module, Enterprise Application, Enterprise Application Client) with Java EE 8

2019-07-18 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta reassigned NETBEANS-2861:
--

Assignee: Josh Juneau

> Always generates Maven Web Application on creation of other Maven EE Project 
> (EJB Module, Enterprise Application, Enterprise Application Client) with Java 
> EE 8
> ---
>
> Key: NETBEANS-2861
> URL: https://issues.apache.org/jira/browse/NETBEANS-2861
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Maven
>Affects Versions: 11.1
>Reporter: Gaurav Gupta
>Assignee: Josh Juneau
>Priority: Major
>  Labels: javaee, maven
>
> Step to reproduce :
>  * File Menu > New Project > Java with Maven
>  * Choose EJB Module, Enterprise Application or Enterprise Application
>  * Select Java EE 8 version and click finish
>  * In the Project window, a Maven Web Application project is shown
> If Java EE 7 version is selected then project generated from archetype  
> *org.codehaus.mojo.archetypes:ejb-javaee7:1.1* and the structure has no 
> problem.



--
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-2861) Always generates Maven Web Application on creation other Maven EE Project (EJB Module, Enterprise Application, Enterprise Application Client) with Java EE 8

2019-07-17 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2861:
--

 Summary: Always generates Maven Web Application on creation other 
Maven EE Project (EJB Module, Enterprise Application, Enterprise Application 
Client) with Java EE 8
 Key: NETBEANS-2861
 URL: https://issues.apache.org/jira/browse/NETBEANS-2861
 Project: NetBeans
  Issue Type: Bug
  Components: javaee - Maven
Affects Versions: 11.1
Reporter: Gaurav Gupta


Step to reproduce :
 * File Menu > New Project > Java with Maven
 * Choose EJB Module, Enterprise Application or Enterprise Application
 * Select Java EE 8 version and click finish
 * In the Project window, a Maven Web Application project is shown

If Java EE 7 version is selected then project generated from archetype  
*org.codehaus.mojo.archetypes:ejb-javaee7:1.1* and the structure has no problem.



--
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-2833) Canonical projectType can't be used for ProjectCustomizer.CompositeCategoryProvider.Registration

2019-07-11 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2833:
--

 Summary: Canonical projectType can't be used for 
ProjectCustomizer.CompositeCategoryProvider.Registration
 Key: NETBEANS-2833
 URL: https://issues.apache.org/jira/browse/NETBEANS-2833
 Project: NetBeans
  Issue Type: Bug
  Components: apisupport - Project
Reporter: Gaurav Gupta


*ProjectCustomizer.Category* registration ignored If canonical *projectType* 
(e.g org-netbeans-modules-maven/war) is used in 
*org.netbeans.spi.project.ui.support.ProjectCustomizer..CompositeCategoryProvider.Registration*
 annotation otherwise non-canonical projectType (e.g 
org-netbeans-modules-maven) registration works perfectrly.



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

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

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



[jira] [Assigned] (NETBEANS-2824) No Properties dialog showing in 11.1vc1 for Java Application

2019-07-11 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta reassigned NETBEANS-2824:
--

Assignee: Gaurav Gupta  (was: Gaurav Gupta)

> No Properties dialog showing in 11.1vc1 for Java Application
> 
>
> Key: NETBEANS-2824
> URL: https://issues.apache.org/jira/browse/NETBEANS-2824
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Options
>Affects Versions: 11.1
> Environment: Windows 10, AdoptOpenJDK 11.0.3
>Reporter: Benjamin Graf
>Assignee: Gaurav Gupta
>Priority: Critical
> Attachments: messages.log
>
>
> mOpen project properties dialog on plain Java Application Maven project ends 
> with:
> {code:java}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.fish.payara.micro.project.MicroApplication.getInstance(MicroApplication.java:149)
>   at 
> org.netbeans.modules.fish.payara.micro.project.MicroPropertiesPanelProvider.createCategory(MicroPropertiesPanelProvider.java:44)
>   at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.readCategories(ProjectCustomizer.java:647)
>   at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.getSubCategories(ProjectCustomizer.java:608)
>   at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer.createCustomizerDialog(ProjectCustomizer.java:235)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl$1.run(CustomizerProviderImpl.java:155)
>   at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.doEvent(NbMutexEventProvider.java:95)
>   at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.readAccess(NbMutexEventProvider.java:70)
>   at 
> org.netbeans.modules.openide.util.LazyMutexImplementation.readAccess(LazyMutexImplementation.java:66)
>   at org.openide.util.Mutex.readAccess(Mutex.java:235)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:147)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:115)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:110)
>   at 
> org.netbeans.modules.project.ui.actions.CustomizeProject$1$1.run(CustomizeProject.java:135)
>   at 
> java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
>   at 
> java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
>   at java.base/java.security.AccessController.doPrivileged(Native Method)
>   at 
> java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85)
>   at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)
>   at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
> [catch] at 
> java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>   at 
> java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
> {code}
> Reproducable with following steps:
>  * Install a fresh installation from scratch by using zip and deleting profile
>  * Start Netbeans Application
>  * Start "New project dialog"
>  ** Create a new Java with Maven - Java Application project
>  *** Download and Activate modules (nb-javac-impl!)
>  *** Finish project creating
>  * Open Properties on created project -> {color:#14892c}*it works!*{color}
>  * Start "New project dialog"
>  ** Create a new Java with Maven - Web Application project
>  ** Cancel dialog after modules have been activated
>  * Open Properties on previously created project -> {color:#ff}*it 
> fails!*{color}



--
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-2824) No Properties dialog showing in 11.1vc1 for Java Application

2019-07-11 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-2824:


I can reproduce this issue on fresh NetBeans 11.1 VC1 instance. This is blocker 
issue, I will create the PR for fix asap.

> No Properties dialog showing in 11.1vc1 for Java Application
> 
>
> Key: NETBEANS-2824
> URL: https://issues.apache.org/jira/browse/NETBEANS-2824
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Options
>Affects Versions: 11.1
> Environment: Windows 10, AdoptOpenJDK 11.0.3
>Reporter: Benjamin Graf
>Priority: Blocker
>
> mOpen project properties dialog on plain Java Application Maven project ends 
> with:
> {code:java}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.fish.payara.micro.project.MicroApplication.getInstance(MicroApplication.java:149)
>   at 
> org.netbeans.modules.fish.payara.micro.project.MicroPropertiesPanelProvider.createCategory(MicroPropertiesPanelProvider.java:44)
>   at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.readCategories(ProjectCustomizer.java:647)
>   at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.getSubCategories(ProjectCustomizer.java:608)
>   at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer.createCustomizerDialog(ProjectCustomizer.java:235)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl$1.run(CustomizerProviderImpl.java:155)
>   at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.doEvent(NbMutexEventProvider.java:95)
>   at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.readAccess(NbMutexEventProvider.java:70)
>   at 
> org.netbeans.modules.openide.util.LazyMutexImplementation.readAccess(LazyMutexImplementation.java:66)
>   at org.openide.util.Mutex.readAccess(Mutex.java:235)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:147)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:115)
>   at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:110)
>   at 
> org.netbeans.modules.project.ui.actions.CustomizeProject$1$1.run(CustomizeProject.java:135)
>   at 
> java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
>   at 
> java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
>   at java.base/java.security.AccessController.doPrivileged(Native Method)
>   at 
> java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85)
>   at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)
>   at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
> [catch] at 
> java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>   at 
> java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
> {code}
> Reproducable with following steps:
>  * Install a fresh installation from scratch by using zip and deleting profile
>  * Start Netbeans Application
>  * Start "New project dialog"
>  ** Create a new Java with Maven - Java Application project
>  *** Download and Activate modules (nb-javac-impl!)
>  *** Finish project creating
>  * Open Properties on created project -> {color:#14892c}*it works!*{color}
>  * Start "New project dialog"
>  ** Create a new Java with Maven - Web Application project
>  ** Cancel dialog after modules have been activated
>  * Open Properties on previously created project -> {color:#ff}*it 
> fails!*{color}



--
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:

[jira] [Updated] (NETBEANS-2799) Java EE 8 generated application source improvement

2019-07-04 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2799:
---
Description: 
Few improvements to consider in JavaEE 8 application archetype:
 # Remove unused import in resources.JavaEE8Resource
 # @author Juneau should not be in source file
 # maven-dependency-plugin plugin declares javaee-api dependency should use 
${jakartaee} property.
 # The generated java source file should be in package ${groupId}.${artifactId}
e.g: 
${groupId}.${artifactId}.JAXRSConfiguration
${groupId}.${artifactId}.resources.JavaEE8Resource

 

  was:
Few improvements to consider in JavaEE 8 application archetype:
 # Remove unused import in resources.JavaEE8Resource
 # @author Juneau should not be in source file
 # maven-dependency-plugin plugin declares javaee-api dependency should use 
${jakartaee} property.
 # The generated java source file should be in package ${groupId}.${artifactId}

 


> Java EE 8 generated application source improvement
> --
>
> Key: NETBEANS-2799
> URL: https://issues.apache.org/jira/browse/NETBEANS-2799
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Web Project
>Reporter: Gaurav Gupta
>Priority: Minor
>  Labels: archetype
>
> Few improvements to consider in JavaEE 8 application archetype:
>  # Remove unused import in resources.JavaEE8Resource
>  # @author Juneau should not be in source file
>  # maven-dependency-plugin plugin declares javaee-api dependency should use 
> ${jakartaee} property.
>  # The generated java source file should be in package 
> ${groupId}.${artifactId}
> e.g: 
> ${groupId}.${artifactId}.JAXRSConfiguration
> ${groupId}.${artifactId}.resources.JavaEE8Resource
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2799) Java EE 8 generated application source improvement

2019-07-04 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta reassigned NETBEANS-2799:
--

Assignee: Josh Juneau

> Java EE 8 generated application source improvement
> --
>
> Key: NETBEANS-2799
> URL: https://issues.apache.org/jira/browse/NETBEANS-2799
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Web Project
>Reporter: Gaurav Gupta
>Assignee: Josh Juneau
>Priority: Minor
>  Labels: archetype
>
> Few improvements to consider in JavaEE 8 application archetype:
>  # Remove unused import in resources.JavaEE8Resource
>  # @author Juneau should not be in source file
>  # maven-dependency-plugin plugin declares javaee-api dependency should use 
> ${jakartaee} property.
>  # The generated java source file should be in package 
> ${groupId}.${artifactId}
> e.g: 
> ${groupId}.${artifactId}.JAXRSConfiguration
> ${groupId}.${artifactId}.resources.JavaEE8Resource
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2800) Unable to create Servlet/Filter in Java EE 8 web application

2019-07-04 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2800:
---
Component/s: javaee - Web Project

> Unable to create Servlet/Filter in Java EE 8 web application
> 
>
> Key: NETBEANS-2800
> URL: https://issues.apache.org/jira/browse/NETBEANS-2800
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Reporter: Gaurav Gupta
>Priority: Major
> Attachments: Servlet Issue.png
>
>
> On creating Servlet/Filter  in Java EE 8 web application results in the 
> following error:
> "Web application version is unsupported. Upgrade web.xml to version 2.4 or 
> newer or use previous version of NetBeans."
>  
> Please find the attached screenshot.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2800) Unable to create Servlet/Filter in Java EE 8 web application

2019-07-04 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2800:
--

 Summary: Unable to create Servlet/Filter in Java EE 8 web 
application
 Key: NETBEANS-2800
 URL: https://issues.apache.org/jira/browse/NETBEANS-2800
 Project: NetBeans
  Issue Type: Bug
Reporter: Gaurav Gupta
 Attachments: Servlet Issue.png

On creating Servlet/Filter  in Java EE 8 web application results in the 
following error:

"Web application version is unsupported. Upgrade web.xml to version 2.4 or 
newer or use previous version of NetBeans."

 

Please find the attached screenshot.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2799) Java EE 8 generated application source improvement

2019-07-04 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2799:
---
Component/s: javaee - Web Project

> Java EE 8 generated application source improvement
> --
>
> Key: NETBEANS-2799
> URL: https://issues.apache.org/jira/browse/NETBEANS-2799
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Web Project
>Reporter: Gaurav Gupta
>Priority: Minor
>
> Few improvements to consider in JavaEE 8 application archetype:
>  # Remove unused import in resources.JavaEE8Resource
>  # @author Juneau should not be in source file
>  # maven-dependency-plugin plugin declares javaee-api dependency should use 
> ${jakartaee} property.
>  # The generated java source file should be in package 
> ${groupId}.${artifactId}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2799) Java EE 8 generated application source improvement

2019-07-04 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2799:
---
Labels: archetype  (was: )

> Java EE 8 generated application source improvement
> --
>
> Key: NETBEANS-2799
> URL: https://issues.apache.org/jira/browse/NETBEANS-2799
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Web Project
>Reporter: Gaurav Gupta
>Priority: Minor
>  Labels: archetype
>
> Few improvements to consider in JavaEE 8 application archetype:
>  # Remove unused import in resources.JavaEE8Resource
>  # @author Juneau should not be in source file
>  # maven-dependency-plugin plugin declares javaee-api dependency should use 
> ${jakartaee} property.
>  # The generated java source file should be in package 
> ${groupId}.${artifactId}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2799) Java EE 8 generated application source improvement

2019-07-04 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2799:
--

 Summary: Java EE 8 generated application source improvement
 Key: NETBEANS-2799
 URL: https://issues.apache.org/jira/browse/NETBEANS-2799
 Project: NetBeans
  Issue Type: Improvement
Reporter: Gaurav Gupta


Few improvements to consider in JavaEE 8 application archetype:
 # Remove unused import in resources.JavaEE8Resource
 # @author Juneau should not be in source file
 # maven-dependency-plugin plugin declares javaee-api dependency should use 
${jakartaee} property.
 # The generated java source file should be in package ${groupId}.${artifactId}

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2775) New Java Web Application Project Duplicate Servers

2019-06-30 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta edited comment on NETBEANS-2775 at 6/30/19 12:27 PM:
--

The issue is specifically in Java EE server registry panel as GlassFish 
introduced new URI fragment gfv5ee8 and Payara added pfv3ee6, pfv4ee7, and 
pfv5ee8 etc.

[https://github.com/apache/netbeans/blob/f0bd57faabf02cf3484ec31dbd9fdc6a494a84fa/enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/wizard/ServerChooserVisual.java#L298]

 


was (Author: jgauravgupta):
The issue is specifically in Java EE server registry as GlassFish introduced 
new URI fragment gfv5ee8 and Payara added pfv3ee6, pfv4ee7, and pfv5ee8 etc.

[https://github.com/apache/netbeans/blob/f0bd57faabf02cf3484ec31dbd9fdc6a494a84fa/enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/wizard/ServerChooserVisual.java#L298]

 

> New Java Web Application Project Duplicate Servers
> --
>
> Key: NETBEANS-2775
> URL: https://issues.apache.org/jira/browse/NETBEANS-2775
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 11.1
> Environment: 11.1 beta 2
> Java: 1.8.0_192; Java HotSpot(TM) 64-Bit Server VM 25.192-b12
> Runtime: Java(TM) SE Runtime Environment 1.8.0_192-b12
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Vano Beridze
>Assignee: Gaurav Gupta
>Priority: Major
> Attachments: bug2.PNG
>
>
> # Creating New Maven Web Application
>  # Java EE 8 Web
>  # Server  pressing Add
>  # Dialog shows up which has 2 GlassFish Server and 3 Payara Server entries



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2775) New Java Web Application Project Duplicate Servers

2019-06-30 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-2775:


The issue is specifically in Java EE server registry as GlassFish introduced 
new URI fragment gfv5ee8 and Payara added pfv3ee6, pfv4ee7, and pfv5ee8 etc.

[https://github.com/apache/netbeans/blob/f0bd57faabf02cf3484ec31dbd9fdc6a494a84fa/enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/wizard/ServerChooserVisual.java#L298]

 

> New Java Web Application Project Duplicate Servers
> --
>
> Key: NETBEANS-2775
> URL: https://issues.apache.org/jira/browse/NETBEANS-2775
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 11.1
> Environment: 11.1 beta 2
> Java: 1.8.0_192; Java HotSpot(TM) 64-Bit Server VM 25.192-b12
> Runtime: Java(TM) SE Runtime Environment 1.8.0_192-b12
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Vano Beridze
>Assignee: Gaurav Gupta
>Priority: Major
> Attachments: bug2.PNG
>
>
> # Creating New Maven Web Application
>  # Java EE 8 Web
>  # Server  pressing Add
>  # Dialog shows up which has 2 GlassFish Server and 3 Payara Server entries



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2775) New Java Web Application Project Duplicate Servers

2019-06-30 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta reassigned NETBEANS-2775:
--

Assignee: Gaurav Gupta  (was: Gaurav Gupta)

> New Java Web Application Project Duplicate Servers
> --
>
> Key: NETBEANS-2775
> URL: https://issues.apache.org/jira/browse/NETBEANS-2775
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project
>Affects Versions: 11.1
> Environment: 11.1 beta 2
> Java: 1.8.0_192; Java HotSpot(TM) 64-Bit Server VM 25.192-b12
> Runtime: Java(TM) SE Runtime Environment 1.8.0_192-b12
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Vano Beridze
>Assignee: Gaurav Gupta
>Priority: Major
> Attachments: bug2.PNG
>
>
> # Creating New Maven Web Application
>  # Java EE 8 Web
>  # Server  pressing Add
>  # Dialog shows up which has 2 GlassFish Server and 3 Payara Server entries



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2760) URL http://jj-blogger.blogspot.com/ in generated POM

2019-06-28 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-2760:


Thanks Josh for the great work. Please also consider to remove the extra 
non-standard dependecies from pom.xml and add the missing index.html in webapp 
root.

> URL http://jj-blogger.blogspot.com/ in generated POM
> 
>
> Key: NETBEANS-2760
> URL: https://issues.apache.org/jira/browse/NETBEANS-2760
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Maven
>Reporter: Geertjan Wielenga
>Assignee: Josh Juneau
>Priority: Major
>
> In the New Project dialog, select "Java with Maven | Web Application", click 
> Next, Next, select GlassFish and Java EE 8 Web. Click Finish. The project is 
> created and opens in the IDE.
> Look in the POM and notice this on line 10:
> http://jj-blogger.blogspot.com/
> That should not be there.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2705) allowExperimentalOptions support in org.netbeans.api.scripting.Scripting API

2019-06-16 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2705:
---
Description: 
If using Nashorn compatibility mode via setting the system property 
'*polyglot.js.nashorn-compat*', then on creation of script manager with 
'*Scripting.createManager()..getEngineByName("GraalVM:js")*' following 
exception is thrown :
{code:java}
js.nashorn-compat is experimental and must be enabled with 
allowExperimentalOptions()
{code}
See the Nashorn Migration Guide for more info: 
[https://github.com/graalvm/graaljs/blob/master/docs/user/NashornMigrationGuide.md
 ]

  was:
If using Nashorn compatibility mode via setting the system property 
'*polyglot.js.nashorn-compat*', then on creation of script manager with 
'*Scripting.createManager()..getEngineByName("GraalVM:js")*' folowing exception 
is thrown :
{code:java}
js.nashorn-compat is experimental and must be enabled with 
allowExperimentalOptions()
{code}
See the Nashorn Migration Guide for more info: 
[https://github.com/graalvm/graaljs/blob/master/docs/user/NashornMigrationGuide.md
]


> allowExperimentalOptions support in org.netbeans.api.scripting.Scripting API
> 
>
> Key: NETBEANS-2705
> URL: https://issues.apache.org/jira/browse/NETBEANS-2705
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Major
>  Labels: API, Scripting, js
>
> If using Nashorn compatibility mode via setting the system property 
> '*polyglot.js.nashorn-compat*', then on creation of script manager with 
> '*Scripting.createManager()..getEngineByName("GraalVM:js")*' following 
> exception is thrown :
> {code:java}
> js.nashorn-compat is experimental and must be enabled with 
> allowExperimentalOptions()
> {code}
> See the Nashorn Migration Guide for more info: 
> [https://github.com/graalvm/graaljs/blob/master/docs/user/NashornMigrationGuide.md
>  ]



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2705) allowExperimentalOptions support in org.netbeans.api.scripting.Scripting API

2019-06-16 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2705:
--

 Summary: allowExperimentalOptions support in 
org.netbeans.api.scripting.Scripting API
 Key: NETBEANS-2705
 URL: https://issues.apache.org/jira/browse/NETBEANS-2705
 Project: NetBeans
  Issue Type: Improvement
Affects Versions: 11.0
Reporter: Gaurav Gupta


If using Nashorn compatibility mode via setting the system property 
'*polyglot.js.nashorn-compat*', then on creation of script manager with 
'*Scripting.createManager()..getEngineByName("GraalVM:js")*' folowing exception 
is thrown :
{code:java}
js.nashorn-compat is experimental and must be enabled with 
allowExperimentalOptions()
{code}
See the Nashorn Migration Guide for more info: 
[https://github.com/graalvm/graaljs/blob/master/docs/user/NashornMigrationGuide.md
]



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2379) Unable to create Maven Java EE Web Application project

2019-04-09 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2379:
---
Description: 
* Cleaned AppData\Roaming\NetBeans & AppData\Local\NetBeans.
 * Started fresh IDE 11.0 instance
 * Installed nb-javac plugin
On Creating project from Java with Maven > Web Application (disabled) > Finding 
feature, following error is shown :

Error encountered obtaining update information:
 
[https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...

 

!nb_error.png|width=600,height=350!

 

 

  was:
On Creating project from Java with Maven > Web Application (disabled) > Finding 
feature, following error is shown :

Error encountered obtaining update information:
 
[https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...

 

!nb_error.png|height=350,width=600!

 

 


> Unable to create Maven Java EE Web Application project
> --
>
> Key: NETBEANS-2379
> URL: https://issues.apache.org/jira/browse/NETBEANS-2379
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Major
> Attachments: nb_error.png
>
>
> * Cleaned AppData\Roaming\NetBeans & AppData\Local\NetBeans.
>  * Started fresh IDE 11.0 instance
>  * Installed nb-javac plugin
> On Creating project from Java with Maven > Web Application (disabled) > 
> Finding feature, following error is shown :
> Error encountered obtaining update information:
>  
> [https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...
>  
> !nb_error.png|width=600,height=350!
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2379) Unable to create Maven Java EE Web Application project

2019-04-09 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2379:
---
Description: 
On Creating project from Java with Maven > Web Application (disabled) > Finding 
feature, following error is shown :

Error encountered obtaining update information:
 
[https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...

 

!nb_error.png|height=350,width=600!

 

 

  was:
On Creating project from Java with Maven > Web Application (disabled) > Finding 
feature, following error is shown :

Error encountered obtaining update information:
[https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...

 

 


> Unable to create Maven Java EE Web Application project
> --
>
> Key: NETBEANS-2379
> URL: https://issues.apache.org/jira/browse/NETBEANS-2379
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Major
> Attachments: nb_error.png
>
>
> On Creating project from Java with Maven > Web Application (disabled) > 
> Finding feature, following error is shown :
> Error encountered obtaining update information:
>  
> [https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...
>  
> !nb_error.png|height=350,width=600!
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2379) Unable to create Maven Java EE Web Application project

2019-04-09 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2379:
---
Attachment: nb_error.png

> Unable to create Maven Java EE Web Application project
> --
>
> Key: NETBEANS-2379
> URL: https://issues.apache.org/jira/browse/NETBEANS-2379
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Major
> Attachments: nb_error.png
>
>
> On Creating project from Java with Maven > Web Application (disabled) > 
> Finding feature, following error is shown :
> Error encountered obtaining update information:
> [https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2379) Unable to create Maven Java EE Web Application project

2019-04-09 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2379:
--

 Summary: Unable to create Maven Java EE Web Application project
 Key: NETBEANS-2379
 URL: https://issues.apache.org/jira/browse/NETBEANS-2379
 Project: NetBeans
  Issue Type: Bug
  Components: ide - Features On Demand
Affects Versions: 11.0
Reporter: Gaurav Gupta
 Attachments: nb_error.png

On Creating project from Java with Maven > Web Application (disabled) > Finding 
feature, following error is shown :

Error encountered obtaining update information:
[https://netbeans.org/projects/legacy/projects/legacy/nb/updates/11.0/updates.xml.gz]?unique=080842...xxx...

 

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2358) LBL_Ergonomics_Extra_Required printed two times in New Project dialog

2019-04-05 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta edited comment on NETBEANS-2358 at 4/6/19 5:46 AM:


Related source snippet :

[https://github.com/apache/incubator-netbeans/blob/master/ergonomics/ide.ergonomics/src/org/netbeans/modules/ide/ergonomics/fod/ConfigurationPanel.java#L113]


was (Author: jgauravgupta):
Related source snippet :

incubator-netbeans\ergonomics\ide.ergonomics\src\org\netbeans\modules\ide\ergonomics\fod\ConfigurationPanel.java#setInfo#L113

> LBL_Ergonomics_Extra_Required printed two times in New Project dialog
> -
>
> Key: NETBEANS-2358
> URL: https://issues.apache.org/jira/browse/NETBEANS-2358
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Minor
> Attachments: LabelDuplication.png
>
>
> LBL_Ergonomics_Extra_Required=Additional modules are needed to run Java SE 
> support on JDK 8.
> label printed two times in the New Project > Finding Feature section, Please 
> find the attached screenshot.
> !LabelDuplication.png|height=450,width=850!



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2358) LBL_Ergonomics_Extra_Required printed two times in New Project dialog

2019-04-05 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-2358:


Related source snippet :

incubator-netbeans\ergonomics\ide.ergonomics\src\org\netbeans\modules\ide\ergonomics\fod\ConfigurationPanel.java#setInfo#L113

> LBL_Ergonomics_Extra_Required printed two times in New Project dialog
> -
>
> Key: NETBEANS-2358
> URL: https://issues.apache.org/jira/browse/NETBEANS-2358
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Minor
> Attachments: LabelDuplication.png
>
>
> LBL_Ergonomics_Extra_Required=Additional modules are needed to run Java SE 
> support on JDK 8.
> label printed two times in the New Project > Finding Feature section, Please 
> find the attached screenshot.
> !LabelDuplication.png|height=450,width=850!



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2358) LBL_Ergonomics_Extra_Required printed two times in New Project dialog

2019-04-05 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2358:
---
Description: 
LBL_Ergonomics_Extra_Required=Additional modules are needed to run Java SE 
support on JDK 8.
label printed two times in the New Project > Finding Feature section, Please 
find the attached screenshot.




!LabelDuplication.png|height=450,width=850!

  was:
LBL_Ergonomics_Extra_Required=Additional modules are needed to run Java SE 
support on JDK 8.
label printed two times in the New Project > Finding Feature section, Please 
find the attached screenshot.




!LabelDuplication.png|height=250,width=450!


> LBL_Ergonomics_Extra_Required printed two times in New Project dialog
> -
>
> Key: NETBEANS-2358
> URL: https://issues.apache.org/jira/browse/NETBEANS-2358
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Minor
> Attachments: LabelDuplication.png
>
>
> LBL_Ergonomics_Extra_Required=Additional modules are needed to run Java SE 
> support on JDK 8.
> label printed two times in the New Project > Finding Feature section, Please 
> find the attached screenshot.
> !LabelDuplication.png|height=450,width=850!



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2358) LBL_Ergonomics_Extra_Required printed two times in New Project dialog

2019-04-05 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2358:
---
Description: 
LBL_Ergonomics_Extra_Required=Additional modules are needed to run Java SE 
support on JDK 8.
label printed two times in the New Project > Finding Feature section, Please 
find the attached screenshot.




!LabelDuplication.png|height=250,width=450!

  was:!LabelDuplication.png!


> LBL_Ergonomics_Extra_Required printed two times in New Project dialog
> -
>
> Key: NETBEANS-2358
> URL: https://issues.apache.org/jira/browse/NETBEANS-2358
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Minor
> Attachments: LabelDuplication.png
>
>
> LBL_Ergonomics_Extra_Required=Additional modules are needed to run Java SE 
> support on JDK 8.
> label printed two times in the New Project > Finding Feature section, Please 
> find the attached screenshot.
> !LabelDuplication.png|height=250,width=450!



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2358) LBL_Ergonomics_Extra_Required printed two times in New Project dialog

2019-04-05 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2358:
--

 Summary: LBL_Ergonomics_Extra_Required printed two times in New 
Project dialog
 Key: NETBEANS-2358
 URL: https://issues.apache.org/jira/browse/NETBEANS-2358
 Project: NetBeans
  Issue Type: Bug
  Components: ide - Features On Demand
Affects Versions: 11.0
Reporter: Gaurav Gupta
 Attachments: LabelDuplication.png

!LabelDuplication.png!



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2358) LBL_Ergonomics_Extra_Required printed two times in New Project dialog

2019-04-05 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-2358:
---
Attachment: LabelDuplication.png

> LBL_Ergonomics_Extra_Required printed two times in New Project dialog
> -
>
> Key: NETBEANS-2358
> URL: https://issues.apache.org/jira/browse/NETBEANS-2358
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Features On Demand
>Affects Versions: 11.0
>Reporter: Gaurav Gupta
>Priority: Minor
> Attachments: LabelDuplication.png
>
>
> !LabelDuplication.png!



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2201) Unable to open GlassFish server output window

2019-03-03 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-2201:
--

 Summary: Unable to open GlassFish server output window 
 Key: NETBEANS-2201
 URL: https://issues.apache.org/jira/browse/NETBEANS-2201
 Project: NetBeans
  Issue Type: Bug
  Components: serverplugins - GlassFish
Reporter: Gaurav Gupta
Assignee: Gaurav Gupta
 Fix For: 11.0


When running NetBeans on JDK 11, GlassFish server output window can't be opened 
and throwing below exception :

java.util.MissingResourceException: Can't find bundle for base name 
sun.util.logging.resources.logging



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-1965) Export public & friend packages for Payara Plugin

2019-01-22 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-1965:


Thanks [~jtulach] for the PR review, I will take a look on the feedback points 
and reopen the PR with more details.

> Export public & friend packages for Payara Plugin
> -
>
> Key: NETBEANS-1965
> URL: https://issues.apache.org/jira/browse/NETBEANS-1965
> Project: NetBeans
>  Issue Type: Task
>Affects Versions: 10.0
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Minor
>  Labels: Export-Package, Exported-Packages, pull-request-available
> Fix For: 11.0
>
>  Time Spent: 3h 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-1965) Export public & friend packages for Payara Plugin

2019-01-20 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-1965:
--

 Summary: Export public & friend packages for Payara Plugin
 Key: NETBEANS-1965
 URL: https://issues.apache.org/jira/browse/NETBEANS-1965
 Project: NetBeans
  Issue Type: Task
Affects Versions: 10.0
Reporter: Gaurav Gupta
Assignee: Gaurav Gupta
 Fix For: 11.0






--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-1480) NetBeans shows NPE warning even after nonNull check

2018-10-20 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-1480:
---
Attachment: NonNull1.png

> NetBeans shows NPE warning even after nonNull check
> ---
>
> Key: NETBEANS-1480
> URL: https://issues.apache.org/jira/browse/NETBEANS-1480
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Gaurav Gupta
>Priority: Major
> Attachments: NonNull1.png
>
>
> NetBeans shows warning "Dereferencing possible null pointer" even 
> "java.util.Objects.nonNull" check is applied in the 'If' condition. 
> If condition is replaced with "var != null" then no warning are shown.
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-1480) NetBeans shows NPE warning even after nonNull check

2018-10-20 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-1480:
--

 Summary: NetBeans shows NPE warning even after nonNull check
 Key: NETBEANS-1480
 URL: https://issues.apache.org/jira/browse/NETBEANS-1480
 Project: NetBeans
  Issue Type: Bug
Reporter: Gaurav Gupta


NetBeans shows warning "Dereferencing possible null pointer" even 
"java.util.Objects.nonNull" check is applied in the 'If' condition. 

If condition is replaced with "var != null" then no warning are shown.

 

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-1193) Unable to open any xml file in the IDE

2018-09-21 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta closed NETBEANS-1193.
--
Resolution: Cannot Reproduce

> Unable to open any xml file in the IDE
> --
>
> Key: NETBEANS-1193
> URL: https://issues.apache.org/jira/browse/NETBEANS-1193
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Code folding
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE 9.0 (Build 
> incubator-netbeans-release-334-on-20180708)
> Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
> Runtime: Java(TM) SE Runtime Environment 10.0.2+13
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Gaurav Gupta
>Priority: Blocker
>
> Step to reproduce :
> Project Node > Maven Project > Right click > Open POM
> or directly drop any external xml in the IDE
> NetBeans IDE info : 
> {noformat}
> Product Version: Apache NetBeans IDE 9.0 (Build 
> incubator-netbeans-release-334-on-20180708)
> Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
> Runtime: Java(TM) SE Runtime Environment 10.0.2+13
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: C:\Users\jGauravGupta\AppData\Roaming\NetBeans\9.0
> Cache directory: C:\Users\jGauravGupta\AppData\Local\NetBeans\Cache\9.0
> {noformat}
> Stacktrace :
> {code:java}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.resolveBackColor(CodeFoldingSideBar.java:350)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.updateColors(CodeFoldingSideBar.java:365)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.access$200(CodeFoldingSideBar.java:99)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar$2.preferenceChange(CodeFoldingSideBar.java:228)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.addNotify(CodeFoldingSideBar.java:284)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at 
> org.netbeans.modules.editor.impl.CustomizableSideBar$WestSidebarHolder.addNotify(CustomizableSideBar.java:286)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addImpl(Container.java:1144)
>   at java.desktop/java.awt.Container.add(Container.java:995)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditor(CloneableEditorInitializer.java:523)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditorAndDecorationsInEDT(CloneableEditorInitializer.java:573)
> [catch] at 
> org.openide.text.CloneableEditorInitializer.run(CloneableEditorInitializer.java:321)
>   at 
> org.openide.text.CloneableEditorInitializer.processPendingEDTRequests(CloneableEditorInitializer.java:135)
>   at 
> org.openide.text.CloneableEditorInitializer$1.run(CloneableEditorInitializer.java:84)
>   at 
> org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1546)
>   at 
> java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
>   at 
> java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)
>   at java.desktop/java.awt.EventQueue.access$600(EventQueue.java:97)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
>   at java.base/java.security.AccessController.doPrivileged(Native Method)
>   at 
> java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87)
>   at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)
>   at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>   

[jira] [Commented] (NETBEANS-1193) Unable to open any xml file in the IDE

2018-09-21 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-1193:


I reinstalled the JDK 10 , used fresh zip bundle of NetBeans and  cleared 
NetBeans cache, it seems to be fixed.

Should I close this issue ?

> Unable to open any xml file in the IDE
> --
>
> Key: NETBEANS-1193
> URL: https://issues.apache.org/jira/browse/NETBEANS-1193
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Code folding
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE 9.0 (Build 
> incubator-netbeans-release-334-on-20180708)
> Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
> Runtime: Java(TM) SE Runtime Environment 10.0.2+13
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Gaurav Gupta
>Priority: Blocker
>
> Step to reproduce :
> Project Node > Maven Project > Right click > Open POM
> or directly drop any external xml in the IDE
> NetBeans IDE info : 
> {noformat}
> Product Version: Apache NetBeans IDE 9.0 (Build 
> incubator-netbeans-release-334-on-20180708)
> Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
> Runtime: Java(TM) SE Runtime Environment 10.0.2+13
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: C:\Users\jGauravGupta\AppData\Roaming\NetBeans\9.0
> Cache directory: C:\Users\jGauravGupta\AppData\Local\NetBeans\Cache\9.0
> {noformat}
> Stacktrace :
> {code:java}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.resolveBackColor(CodeFoldingSideBar.java:350)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.updateColors(CodeFoldingSideBar.java:365)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.access$200(CodeFoldingSideBar.java:99)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar$2.preferenceChange(CodeFoldingSideBar.java:228)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.addNotify(CodeFoldingSideBar.java:284)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at 
> org.netbeans.modules.editor.impl.CustomizableSideBar$WestSidebarHolder.addNotify(CustomizableSideBar.java:286)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addImpl(Container.java:1144)
>   at java.desktop/java.awt.Container.add(Container.java:995)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditor(CloneableEditorInitializer.java:523)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditorAndDecorationsInEDT(CloneableEditorInitializer.java:573)
> [catch] at 
> org.openide.text.CloneableEditorInitializer.run(CloneableEditorInitializer.java:321)
>   at 
> org.openide.text.CloneableEditorInitializer.processPendingEDTRequests(CloneableEditorInitializer.java:135)
>   at 
> org.openide.text.CloneableEditorInitializer$1.run(CloneableEditorInitializer.java:84)
>   at 
> org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1546)
>   at 
> java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
>   at 
> java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)
>   at java.desktop/java.awt.EventQueue.access$600(EventQueue.java:97)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
>   at java.base/java.security.AccessController.doPrivileged(Native Method)
>   at 
> java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87)
>   at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)
>   at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
>   at 
> 

[jira] [Updated] (NETBEANS-1193) Unable to open any xml file in the IDE

2018-08-27 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta updated NETBEANS-1193:
---
Environment: 
Product Version: Apache NetBeans IDE 9.0 (Build 
incubator-netbeans-release-334-on-20180708)
Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
Runtime: Java(TM) SE Runtime Environment 10.0.2+13
System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)

> Unable to open any xml file in the IDE
> --
>
> Key: NETBEANS-1193
> URL: https://issues.apache.org/jira/browse/NETBEANS-1193
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Code folding
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE 9.0 (Build 
> incubator-netbeans-release-334-on-20180708)
> Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
> Runtime: Java(TM) SE Runtime Environment 10.0.2+13
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Gaurav Gupta
>Priority: Blocker
>
> Step to reproduce :
> Project Node > Maven Project > Right click > Open POM
> or directly drop any external xml in the IDE
> NetBeans IDE info : 
> {noformat}
> Product Version: Apache NetBeans IDE 9.0 (Build 
> incubator-netbeans-release-334-on-20180708)
> Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
> Runtime: Java(TM) SE Runtime Environment 10.0.2+13
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: C:\Users\jGauravGupta\AppData\Roaming\NetBeans\9.0
> Cache directory: C:\Users\jGauravGupta\AppData\Local\NetBeans\Cache\9.0
> {noformat}
> Stacktrace :
> {code:java}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.resolveBackColor(CodeFoldingSideBar.java:350)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.updateColors(CodeFoldingSideBar.java:365)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.access$200(CodeFoldingSideBar.java:99)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar$2.preferenceChange(CodeFoldingSideBar.java:228)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.addNotify(CodeFoldingSideBar.java:284)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at 
> org.netbeans.modules.editor.impl.CustomizableSideBar$WestSidebarHolder.addNotify(CustomizableSideBar.java:286)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addImpl(Container.java:1144)
>   at java.desktop/java.awt.Container.add(Container.java:995)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditor(CloneableEditorInitializer.java:523)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditorAndDecorationsInEDT(CloneableEditorInitializer.java:573)
> [catch] at 
> org.openide.text.CloneableEditorInitializer.run(CloneableEditorInitializer.java:321)
>   at 
> org.openide.text.CloneableEditorInitializer.processPendingEDTRequests(CloneableEditorInitializer.java:135)
>   at 
> org.openide.text.CloneableEditorInitializer$1.run(CloneableEditorInitializer.java:84)
>   at 
> org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1546)
>   at 
> java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
>   at 
> java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)
>   at java.desktop/java.awt.EventQueue.access$600(EventQueue.java:97)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
>   at java.base/java.security.AccessController.doPrivileged(Native Method)
>   at 
> java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87)
>   at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)
>   at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
>   at 
> 

[jira] [Commented] (NETBEANS-1193) Unable to open any xml file in the IDE

2018-08-27 Thread Gaurav Gupta (JIRA)


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

Gaurav Gupta commented on NETBEANS-1193:


Yes, this is officially released version of Apache NetBeans (incubating) 9.0. 
Previously, I was using Apache NetBeans (incubating) 9.0 with JDK 8 without any 
single issue.

 But after I changing the Java Platform to JDK 10.0.2 in etc/netbeans.conf, xml 
editor broken.


{code:java}
java version "10.0.2" 2018-07-17
Java(TM) SE Runtime Environment 18.3 (build 10.0.2+13)
Java HotSpot(TM) 64-Bit Server VM 18.3 (build 10.0.2+13, mixed mode)

OS : windows 10 Pro
{code}





> Unable to open any xml file in the IDE
> --
>
> Key: NETBEANS-1193
> URL: https://issues.apache.org/jira/browse/NETBEANS-1193
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Code folding
>Affects Versions: 9.0
>Reporter: Gaurav Gupta
>Priority: Blocker
>
> Step to reproduce :
> Project Node > Maven Project > Right click > Open POM
> or directly drop any external xml in the IDE
> NetBeans IDE info : 
> {noformat}
> Product Version: Apache NetBeans IDE 9.0 (Build 
> incubator-netbeans-release-334-on-20180708)
> Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
> Runtime: Java(TM) SE Runtime Environment 10.0.2+13
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: C:\Users\jGauravGupta\AppData\Roaming\NetBeans\9.0
> Cache directory: C:\Users\jGauravGupta\AppData\Local\NetBeans\Cache\9.0
> {noformat}
> Stacktrace :
> {code:java}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.resolveBackColor(CodeFoldingSideBar.java:350)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.updateColors(CodeFoldingSideBar.java:365)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.access$200(CodeFoldingSideBar.java:99)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar$2.preferenceChange(CodeFoldingSideBar.java:228)
>   at 
> org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.addNotify(CodeFoldingSideBar.java:284)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at 
> org.netbeans.modules.editor.impl.CustomizableSideBar$WestSidebarHolder.addNotify(CustomizableSideBar.java:286)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addNotify(Container.java:2798)
>   at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
>   at java.desktop/java.awt.Container.addImpl(Container.java:1144)
>   at java.desktop/java.awt.Container.add(Container.java:995)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditor(CloneableEditorInitializer.java:523)
>   at 
> org.openide.text.CloneableEditorInitializer.initCustomEditorAndDecorationsInEDT(CloneableEditorInitializer.java:573)
> [catch] at 
> org.openide.text.CloneableEditorInitializer.run(CloneableEditorInitializer.java:321)
>   at 
> org.openide.text.CloneableEditorInitializer.processPendingEDTRequests(CloneableEditorInitializer.java:135)
>   at 
> org.openide.text.CloneableEditorInitializer$1.run(CloneableEditorInitializer.java:84)
>   at 
> org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1546)
>   at 
> java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
>   at 
> java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)
>   at java.desktop/java.awt.EventQueue.access$600(EventQueue.java:97)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
>   at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
>   at java.base/java.security.AccessController.doPrivileged(Native Method)
>   at 
> java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87)
>   at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)
>   at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
>   at 
> java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
>   at 
> 

[jira] [Created] (NETBEANS-1193) Unable to open any xml file in the IDE

2018-08-26 Thread Gaurav Gupta (JIRA)
Gaurav Gupta created NETBEANS-1193:
--

 Summary: Unable to open any xml file in the IDE
 Key: NETBEANS-1193
 URL: https://issues.apache.org/jira/browse/NETBEANS-1193
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Code folding
Affects Versions: 9.0
Reporter: Gaurav Gupta


Step to reproduce :
Project Node > Maven Project > Right click > Open POM
or directly drop any external xml in the IDE


NetBeans IDE info : 
{noformat}
Product Version: Apache NetBeans IDE 9.0 (Build 
incubator-netbeans-release-334-on-20180708)
Java: 10.0.2; Java HotSpot(TM) 64-Bit Server VM 10.0.2+13
Runtime: Java(TM) SE Runtime Environment 10.0.2+13
System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
User directory: C:\Users\jGauravGupta\AppData\Roaming\NetBeans\9.0
Cache directory: C:\Users\jGauravGupta\AppData\Local\NetBeans\Cache\9.0
{noformat}

Stacktrace :
{code:java}
java.lang.NullPointerException
at 
org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.resolveBackColor(CodeFoldingSideBar.java:350)
at 
org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.updateColors(CodeFoldingSideBar.java:365)
at 
org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.access$200(CodeFoldingSideBar.java:99)
at 
org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar$2.preferenceChange(CodeFoldingSideBar.java:228)
at 
org.netbeans.modules.editor.fold.ui.CodeFoldingSideBar.addNotify(CodeFoldingSideBar.java:284)
at java.desktop/java.awt.Container.addNotify(Container.java:2798)
at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
at 
org.netbeans.modules.editor.impl.CustomizableSideBar$WestSidebarHolder.addNotify(CustomizableSideBar.java:286)
at java.desktop/java.awt.Container.addNotify(Container.java:2798)
at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
at java.desktop/java.awt.Container.addNotify(Container.java:2798)
at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
at java.desktop/java.awt.Container.addNotify(Container.java:2798)
at java.desktop/javax.swing.JComponent.addNotify(JComponent.java:4783)
at java.desktop/java.awt.Container.addImpl(Container.java:1144)
at java.desktop/java.awt.Container.add(Container.java:995)
at 
org.openide.text.CloneableEditorInitializer.initCustomEditor(CloneableEditorInitializer.java:523)
at 
org.openide.text.CloneableEditorInitializer.initCustomEditorAndDecorationsInEDT(CloneableEditorInitializer.java:573)
[catch] at 
org.openide.text.CloneableEditorInitializer.run(CloneableEditorInitializer.java:321)
at 
org.openide.text.CloneableEditorInitializer.processPendingEDTRequests(CloneableEditorInitializer.java:135)
at 
org.openide.text.CloneableEditorInitializer$1.run(CloneableEditorInitializer.java:84)
at 
org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1546)
at 
java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
at 
java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)
at java.desktop/java.awt.EventQueue.access$600(EventQueue.java:97)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at 
java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:87)
at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)
at 
org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
at 
java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
at 
java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
at 
java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
at 
java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
at 
java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at 
java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)

{code}




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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