[jira] [Commented] (NETBEANS-4356) Unneeded/redundant cast added by code completion

2020-05-20 Thread Ernie Rael (Jira)


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

Ernie Rael commented on NETBEANS-4356:
--

[~jlahoda] added you in case you could triage or ...

> Unneeded/redundant cast added by code completion
> 
>
> Key: NETBEANS-4356
> URL: https://issues.apache.org/jira/browse/NETBEANS-4356
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion  Templates
>Affects Versions: 12.0
> Environment: Product Version: Apache NetBeans IDE 12.0-beta4
> Updates: Updates available to version NetBeans 8.2 Patch 2
> Java: 14.0.1; Java HotSpot(TM) 64-Bit Server VM 14.0.1+7
> Runtime: Java(TM) SE Runtime Environment 14.0.1+7
> System: Windows 7 version 6.1 running on amd64; UTF-8; en_US (nb)
>Reporter: Ernie Rael
>Priority: Major
>  Labels: regresion
>
> Consider the code, caret shown as '|',
> {code:java}
>   static private void xxx(ViMark m) {
> if(m instanceof Filemark) {
>   if(m.getb|)
> }
>   }
> {code}
> Bring up code completion, it show info for Filemark, not ViMark; that could 
> be handy in some cases. BTW, ViMark is an interface. Select method 
> getBuffer() and the result is
> {code:java}
>   if(((Filemark)m).getBuffer())
> {code}
> ViMark has a getBuffer method, the cast is bogus. The project is marked 1.8 
> source.
> I tried it after removing cachedir, still failed. A simple test case works. 
> I'll try to get a smaller case.



--
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-4356) Unneeded/redundant cast added by code completion

2020-05-20 Thread Ernie Rael (Jira)
Ernie Rael created NETBEANS-4356:


 Summary: Unneeded/redundant cast added by code completion
 Key: NETBEANS-4356
 URL: https://issues.apache.org/jira/browse/NETBEANS-4356
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Completion  Templates
Affects Versions: 12.0
 Environment: Product Version: Apache NetBeans IDE 12.0-beta4
Updates: Updates available to version NetBeans 8.2 Patch 2
Java: 14.0.1; Java HotSpot(TM) 64-Bit Server VM 14.0.1+7
Runtime: Java(TM) SE Runtime Environment 14.0.1+7
System: Windows 7 version 6.1 running on amd64; UTF-8; en_US (nb)
Reporter: Ernie Rael


Consider the code, caret shown as '|',
{code:java}
  static private void xxx(ViMark m) {
if(m instanceof Filemark) {
  if(m.getb|)
}
  }
{code}
Bring up code completion, it show info for Filemark, not ViMark; that could be 
handy in some cases. BTW, ViMark is an interface. Select method getBuffer() and 
the result is
{code:java}
  if(((Filemark)m).getBuffer())
{code}
ViMark has a getBuffer method, the cast is bogus. The project is marked 1.8 
source.

I tried it after removing cachedir, still failed. A simple test case works. 
I'll try to get a smaller case.



--
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-4329) Update eclipselink from 2.5.2 to 2.7.7

2020-05-20 Thread Jose (Jira)


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

Jose updated NETBEANS-4329:
---
Description: 
Notes:
 - Add 17 entries to 'eclipselink.target-database' as per 
[documentation|https://www.eclipse.org/eclipselink/api/2.7/org/eclipse/persistence/platform/database/package-summary.html]
 - Add 3 entries to 'eclipselink.target-server' as per 
[documentation|https://www.eclipse.org/eclipselink/api/2.7/org/eclipse/persistence/platform/server/ServerPlatform.html]
 - Java EE 8 integration
 - Bean Validation support in MOXy
 - Java API for JSON Processing (JSR-353) support in MOXy
 - JPA-RS Enhancements (Pagination, Options, Versions, ...)
 - Redesign of type property in JSON processing
 - Pluggable Serializers
 - JGroups Support
 - Substantial number of bug fixes and enhancements
 - Certified support for:
     - Java Persistence (JPA) 2.2 - JSR 338
     - Java Architecture for XML Binding (JAXB) 2.3 - JSR 222
     - Service Data Objects (SDO) 2.1.1 - JSR 235
     - Java API for JSON Processing (JSON-P) 1.0 - JSR 353
 - Deprecated Functionality: None
 - Known Issues
     - When running EclipseLink 2.7 in Glassfish 4.0, you must specify a valid 
datasource 
     in the persistence.xml through either the jta-data-source or 
non-jta-data-source tags.
     - Java hotspot compiler may crash when compiling 
  
org.eclipse.persistence.internal.sessions.CommitManager::commitChangedObjectsForClassWithChangeSet
 
   As a workaround, execute java with 
  
-XX:CompileCommand=exclude,org/eclipse/persistence/internal/sessions/CommitManager,commitChangedObjectsForClassWithChangeSet
 
 command line option for JIT compiler.

 * This is just an update to the eclipselink library, this will not provide 
support for JPA 2.2, I am working on a different Issue/PR for that matter.

[EclipseLink Web Page|https://www.eclipse.org/eclipselink/]
 [EclipseLink Release 
Notes|https://www.eclipse.org/eclipselink/releases/2.7.php]

  was:
Notes:
- Java EE 8 integration
- Bean Validation support in MOXy
- Java API for JSON Processing (JSR-353) support in MOXy
- JPA-RS Enhancements (Pagination, Options, Versions, ...)
- Redesign of type property in JSON processing
- Pluggable Serializers
- JGroups Support
- Substantial number of bug fixes and enhancements
- Certified support for:
    - Java Persistence (JPA) 2.2 - JSR 338
    - Java Architecture for XML Binding (JAXB) 2.3 - JSR 222
    - Service Data Objects (SDO) 2.1.1 - JSR 235
    - Java API for JSON Processing (JSON-P) 1.0 - JSR 353
- Deprecated Functionality: None
- Known Issues
    - When running EclipseLink 2.7 in Glassfish 4.0, you must specify a valid 
datasource 
    in the persistence.xml through either the jta-data-source or 
non-jta-data-source tags.
    - Java hotspot compiler may crash when compiling 
 
org.eclipse.persistence.internal.sessions.CommitManager::commitChangedObjectsForClassWithChangeSet
 
  As a workaround, execute java with 
 
-XX:CompileCommand=exclude,org/eclipse/persistence/internal/sessions/CommitManager,commitChangedObjectsForClassWithChangeSet
 
 command line option for JIT compiler.
 * This is just an update to the eclipselink library, this will not provide 
support for JPA 2.2, I am working in a different Issue/PR for that matter.


[EclipseLink Web Page|https://www.eclipse.org/eclipselink/]
[EclipseLink Release Notes|https://www.eclipse.org/eclipselink/releases/2.7.php]


> Update eclipselink from 2.5.2 to 2.7.7
> --
>
> Key: NETBEANS-4329
> URL: https://issues.apache.org/jira/browse/NETBEANS-4329
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Libraries
>Affects Versions: 12.0, 11.3
>Reporter: Jose
>Assignee: Jose
>Priority: Minor
> Fix For: 12.1
>
>
> Notes:
>  - Add 17 entries to 'eclipselink.target-database' as per 
> [documentation|https://www.eclipse.org/eclipselink/api/2.7/org/eclipse/persistence/platform/database/package-summary.html]
>  - Add 3 entries to 'eclipselink.target-server' as per 
> [documentation|https://www.eclipse.org/eclipselink/api/2.7/org/eclipse/persistence/platform/server/ServerPlatform.html]
>  - Java EE 8 integration
>  - Bean Validation support in MOXy
>  - Java API for JSON Processing (JSR-353) support in MOXy
>  - JPA-RS Enhancements (Pagination, Options, Versions, ...)
>  - Redesign of type property in JSON processing
>  - Pluggable Serializers
>  - JGroups Support
>  - Substantial number of bug fixes and enhancements
>  - Certified support for:
>      - Java Persistence (JPA) 2.2 - JSR 338
>      - Java Architecture for XML Binding (JAXB) 2.3 - JSR 222
>      - Service Data Objects (SDO) 2.1.1 - JSR 235
>      - Java API for JSON Processing (JSON-P) 1.0 - JSR 353
>  - Deprecated Functionality: None
>  - Known Issues
>      - When 

[netbeans] branch master updated (5885596 -> b52d38d)

2020-05-20 Thread jlahoda
This is an automated email from the ASF dual-hosted git repository.

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


from 5885596  Merge pull request #2026 from pedro-w/jgit-551
 add b52d38d  Enhancing the OpenJDK support with ability to disable use of 
ant langtools build; and specifying a different location for the build.

No new revisions were added by this update.

Summary of changes:
 .../release/scripts/build-langtools-consol.xml |   6 +-
 .../java/openjdk/jtreg/ActionProviderImpl.java |  10 +-
 .../java/openjdk/project/ActionProviderImpl.java   |  26 +++-
 .../modules/java/openjdk/project/Settings.java |  20 
 .../{TestCategory.form => BuildCategory.form}  |  63 --
 .../openjdk/project/customizer/BuildCategory.java  | 132 +
 .../openjdk/project/customizer/Bundle.properties   |   3 +
 .../openjdk/project/customizer/TestCategory.form   |   2 +
 .../openjdk/project/customizer/TestCategory.java   |   2 +-
 9 files changed, 214 insertions(+), 50 deletions(-)
 copy 
java/java.openjdk.project/src/org/netbeans/modules/java/openjdk/project/customizer/{TestCategory.form
 => BuildCategory.form} (54%)
 create mode 100644 
java/java.openjdk.project/src/org/netbeans/modules/java/openjdk/project/customizer/BuildCategory.java


-
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-4355) Rename array-type variable breaks code

2020-05-20 Thread mkhramov (Jira)
mkhramov created NETBEANS-4355:
--

 Summary: Rename array-type variable breaks code
 Key: NETBEANS-4355
 URL: https://issues.apache.org/jira/browse/NETBEANS-4355
 Project: NetBeans
  Issue Type: Bug
  Components: java - Refactoring
Reporter: mkhramov


Steps to reproduce:

In java class I have 2 fields:

>> protected String arrayOne[], arrayTwo[];

 

invoke Rename on first one...

after that code changes to:

>> protected String[] arrayOneRenamed, arrayTwo[];

which is unexpected changes second field type



--
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-4337) Code Sniffer - make default standard optional

2020-05-20 Thread Jira


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

Tomáš Procházka commented on NETBEANS-4337:
---

Link to PR - https://github.com/apache/netbeans/pull/2149

> Code Sniffer - make default standard optional
> -
>
> Key: NETBEANS-4337
> URL: https://issues.apache.org/jira/browse/NETBEANS-4337
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis
>Affects Versions: 11.3
>Reporter: Tomáš Procházka
>Priority: Minor
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Code Sniffer configuration in Options > PHP > Code Analysis > Code Sniffer 
> requires selecting Default standard even if it is optional parameter.
> Code Sniffer can be run without parameter '--standard' and in that case it is 
> looking for configuration files. See the relevant part of 
> [documentation|https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#using-a-default-configuration-file].
> If user wants to use own configuration, he has to use parameter '--standard' 
> as part of Code Sniffer path in configuration (NETBEANS-3243). Default 
> standard still required.
> Suggested fix is to make Default standard optional.



--
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-4337) Code Sniffer - make default standard optional

2020-05-20 Thread Jira


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

Tomáš Procházka reassigned NETBEANS-4337:
-

Assignee: Tomáš Procházka

> Code Sniffer - make default standard optional
> -
>
> Key: NETBEANS-4337
> URL: https://issues.apache.org/jira/browse/NETBEANS-4337
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis
>Affects Versions: 11.3
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Code Sniffer configuration in Options > PHP > Code Analysis > Code Sniffer 
> requires selecting Default standard even if it is optional parameter.
> Code Sniffer can be run without parameter '--standard' and in that case it is 
> looking for configuration files. See the relevant part of 
> [documentation|https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#using-a-default-configuration-file].
> If user wants to use own configuration, he has to use parameter '--standard' 
> as part of Code Sniffer path in configuration (NETBEANS-3243). Default 
> standard still required.
> Suggested fix is to make Default standard optional.



--
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-4316) SAX errors on startup

2020-05-20 Thread David Gradwell (Jira)


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

David Gradwell commented on NETBEANS-4316:
--

More research:
 # This only happens when either a top level Java EE application was open 
before restarting NetBeans or when one is opened.
 # The same issue appears for 4 different servlets incuding my most basic test 
servlet.
 # If I close all of them and restart NetBeans the issue does not occur.
 # If I open any one of them the issue does re-occur.

 

All have a web.xml file that looks something like:

 

__
__
 _testservletmaven_
 __
 _testservletmaven_
 _testservletmaven_
 _com.gradwell.testservletmaven.testservletmaven_
 __
 __
 _testservletmaven_
 _/testservletmaven_
 __
__

 

Steps to reproduce:
 # Quit NetBeans.
 # Start NetBeans 12.0 beta 4 from the Mac Terminal command line.
 # Note error as follows which appears in the Terminal window but as far as I 
can see, not in the log file (attached).

&&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; lineNumber: 
2; columnNumber: 10; cvc-elt.1: Cannot find the declaration of element 
'web-app'.

 

This appears during the startup process if a servlet project  is already open 
in NetBeans or on opening and before doing any build/compilations.

> SAX errors on startup
> -
>
> Key: NETBEANS-4316
> URL: https://issues.apache.org/jira/browse/NETBEANS-4316
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina 10.15.4 and jdk1.8.0_221 with Maven 
> 3.6.1 
>Reporter: David Gradwell
>Priority: Minor
> Attachments: messages.log, messages.log
>
>
> When starting Netbeans 12.0 beta 3 from the command line under Mac OS X 
> Catalina 10.15.4 and jdk1.8.0_221 with Maven 3.6.1 I get the following SAX 
> Errors.  NetBeans seems to run OK so I've labelled this as minor.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [6:21] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 6; columnNumber: 21; cvc-complex-type.2.4.a: Invalid content was 
> found starting with element 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":context-root}'. One of 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":module-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":description, 
> "http://xmlns.jcp.org/xml/ns/javaee":display-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":icon, 
> "http://xmlns.jcp.org/xml/ns/javaee":distributable, 
> "http://xmlns.jcp.org/xml/ns/javaee":context-param, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":listener, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":session-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":mime-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":welcome-file-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":error-page, 
> "http://xmlns.jcp.org/xml/ns/javaee":jsp-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-constraint, 
> "http://xmlns.jcp.org/xml/ns/javaee":login-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-role, 
> "http://xmlns.jcp.org/xml/ns/javaee":env-entry, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-local-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":service-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-env-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-context-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-unit-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":post-construct, 
> "http://xmlns.jcp.org/xml/ns/javaee":pre-destroy, 
> "http://xmlns.jcp.org/xml/ns/javaee":data-source, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":mail-session, 
> "http://xmlns.jcp.org/xml/ns/javaee":connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":administered-object, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":locale-encoding-mapping-list, 
> 

[jira] [Updated] (NETBEANS-4316) SAX errors on startup

2020-05-20 Thread David Gradwell (Jira)


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

David Gradwell updated NETBEANS-4316:
-
Attachment: messages.log

> SAX errors on startup
> -
>
> Key: NETBEANS-4316
> URL: https://issues.apache.org/jira/browse/NETBEANS-4316
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina 10.15.4 and jdk1.8.0_221 with Maven 
> 3.6.1 
>Reporter: David Gradwell
>Priority: Minor
> Attachments: messages.log, messages.log
>
>
> When starting Netbeans 12.0 beta 3 from the command line under Mac OS X 
> Catalina 10.15.4 and jdk1.8.0_221 with Maven 3.6.1 I get the following SAX 
> Errors.  NetBeans seems to run OK so I've labelled this as minor.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [6:21] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 6; columnNumber: 21; cvc-complex-type.2.4.a: Invalid content was 
> found starting with element 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":context-root}'. One of 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":module-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":description, 
> "http://xmlns.jcp.org/xml/ns/javaee":display-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":icon, 
> "http://xmlns.jcp.org/xml/ns/javaee":distributable, 
> "http://xmlns.jcp.org/xml/ns/javaee":context-param, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":listener, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":session-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":mime-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":welcome-file-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":error-page, 
> "http://xmlns.jcp.org/xml/ns/javaee":jsp-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-constraint, 
> "http://xmlns.jcp.org/xml/ns/javaee":login-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-role, 
> "http://xmlns.jcp.org/xml/ns/javaee":env-entry, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-local-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":service-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-env-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-context-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-unit-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":post-construct, 
> "http://xmlns.jcp.org/xml/ns/javaee":pre-destroy, 
> "http://xmlns.jcp.org/xml/ns/javaee":data-source, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":mail-session, 
> "http://xmlns.jcp.org/xml/ns/javaee":connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":administered-object, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":locale-encoding-mapping-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":default-context-path, 
> "http://xmlns.jcp.org/xml/ns/javaee":request-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":response-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":deny-uncovered-http-methods, 
> "http://xmlns.jcp.org/xml/ns/javaee":absolute-ordering}' is expected.



--
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-4273) NullPointerException at org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTaskWhenScanFinished

2020-05-20 Thread David Gradwell (Jira)


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

David Gradwell commented on NETBEANS-4273:
--

I had a very similar issue.  Log file attached. 

Look down the bottom for:

 

_SEVERE [org.openide.util.RequestProcessor]: Error in RequestProcessor 
org.netbeans.modules.websvc.rest.nodes.RestServicesNodeFactory$RestNodeList$1_
_java.lang.NullPointerException_
 _at 
org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTask(AnnotationModelHelper.java:156)_
 _at 
org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTask(AnnotationModelHelper.java:124)_
 _at 
org.netbeans.modules.websvc.rest.model.impl.RestServicesMetadataModelImpl.runReadAction(RestServicesMetadataModelImpl.java:52)_
 _at 
org.netbeans.modules.websvc.rest.nodes.RestServicesNodeFactory$RestNodeList$1.run(RestServicesNodeFactory.java:86)_
 _at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)_
 _at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)_
 _at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)_
_[catch] at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)_

 

Also note that there are a lot of

 

_java.lang.ClassNotFoundException: com.sun.source.tree.DirectiveTree_
 _at java.net.URLClassLoader.findClass(URLClassLoader.java:382)_
 _at java.lang.ClassLoader.loadClass(ClassLoader.java:424)_
 _at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)_
 _at java.lang.ClassLoader.loadClass(ClassLoader.java:357)_
 _at org.netbeans.ProxyClassLoader.doFindClass(ProxyClassLoader.java:209)_
_Caused: java.lang.ClassNotFoundException: com.sun.source.tree.DirectiveTree 
starting from ModuleCL@3c46fde2[org.netbeans.modules.maven] with possible 
defining loaders null and declared parents 
[ModuleCL@38c08007[org.netbeans.api.java], 
ModuleCL@348ae1dd[org.netbeans.modules.project.libraries.ui], 
ModuleCL@72a514f7[org.netbeans.api.debugger.jpda], 
ModuleCL@2fe6dd80[org.openide.execution], ModuleCL@a4c9715[org.openide.text], 
ModuleCL@3f91acff[org.netbeans.api.progress], 
ModuleCL@3b6d398a[org.openide.loaders], 
ModuleCL@4721ba24[org.netbeans.libs.javacapi], 
org.netbeans.JarClassLoader@4cd5b57c, 
ModuleCL@1a7227ef[org.netbeans.modules.maven.embedder], ...45 more]_
 _at org.netbeans.ProxyClassLoader.doFindClass(ProxyClassLoader.java:211)_
 _at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:125)_
 _at java.lang.ClassLoader.loadClass(ClassLoader.java:357)_

> NullPointerException at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTaskWhenScanFinished
> ---
>
> Key: NETBEANS-4273
> URL: https://issues.apache.org/jira/browse/NETBEANS-4273
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina
>Reporter: David Gradwell
>Priority: Major
> Attachments: messages.log, messages.log
>
>
> Crash report whilst running NetBeans.
>  
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTask(AnnotationModelHelper.java:156)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.runInJavacContext(AnnotationModelHelper.java:433)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.rootsChanged(AnnotationModelHelper.java:413)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.rootsRemoved(AnnotationModelHelper.java:408)
>  at 
> org.netbeans.api.java.source.ClassIndex$SPIListener$1.run(ClassIndex.java:1107)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$5.run(TaskProcessor.java:458)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callParserResultTask(TaskProcessor.java:561)
> [catch] at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.run(TaskProcessor.java:725)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.execute(TaskProcessor.java:702)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$CompilationJob.run(TaskProcessor.java:663)
>  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
>  at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> 

[jira] [Updated] (NETBEANS-4273) NullPointerException at org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTaskWhenScanFinished

2020-05-20 Thread David Gradwell (Jira)


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

David Gradwell updated NETBEANS-4273:
-
Attachment: messages.log

> NullPointerException at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTaskWhenScanFinished
> ---
>
> Key: NETBEANS-4273
> URL: https://issues.apache.org/jira/browse/NETBEANS-4273
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina
>Reporter: David Gradwell
>Priority: Major
> Attachments: messages.log, messages.log
>
>
> Crash report whilst running NetBeans.
>  
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTask(AnnotationModelHelper.java:156)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.runInJavacContext(AnnotationModelHelper.java:433)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.rootsChanged(AnnotationModelHelper.java:413)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.rootsRemoved(AnnotationModelHelper.java:408)
>  at 
> org.netbeans.api.java.source.ClassIndex$SPIListener$1.run(ClassIndex.java:1107)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$5.run(TaskProcessor.java:458)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callParserResultTask(TaskProcessor.java:561)
> [catch] at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.run(TaskProcessor.java:725)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.execute(TaskProcessor.java:702)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$CompilationJob.run(TaskProcessor.java:663)
>  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
>  at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
>  
> and again:
>  
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper.runJavaSourceTask(AnnotationModelHelper.java:156)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.runInJavacContext(AnnotationModelHelper.java:433)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.rootsChanged(AnnotationModelHelper.java:413)
>  at 
> org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper$ClassIndexListenerImpl.rootsRemoved(AnnotationModelHelper.java:408)
>  at 
> org.netbeans.api.java.source.ClassIndex$SPIListener$1.run(ClassIndex.java:1107)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$5.run(TaskProcessor.java:458)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callParserResultTask(TaskProcessor.java:561)
> [catch] at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.run(TaskProcessor.java:725)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.execute(TaskProcessor.java:702)
>  at 
> org.netbeans.modules.parsing.impl.TaskProcessor$CompilationJob.run(TaskProcessor.java:663)
>  at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
>  at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
>  
>  



--
This message was sent by Atlassian Jira
(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-4316) SAX errors on startup

2020-05-20 Thread David Gradwell (Jira)


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

David Gradwell updated NETBEANS-4316:
-
Attachment: messages.log

> SAX errors on startup
> -
>
> Key: NETBEANS-4316
> URL: https://issues.apache.org/jira/browse/NETBEANS-4316
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina 10.15.4 and jdk1.8.0_221 with Maven 
> 3.6.1 
>Reporter: David Gradwell
>Priority: Minor
> Attachments: messages.log
>
>
> When starting Netbeans 12.0 beta 3 from the command line under Mac OS X 
> Catalina 10.15.4 and jdk1.8.0_221 with Maven 3.6.1 I get the following SAX 
> Errors.  NetBeans seems to run OK so I've labelled this as minor.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [6:21] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 6; columnNumber: 21; cvc-complex-type.2.4.a: Invalid content was 
> found starting with element 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":context-root}'. One of 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":module-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":description, 
> "http://xmlns.jcp.org/xml/ns/javaee":display-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":icon, 
> "http://xmlns.jcp.org/xml/ns/javaee":distributable, 
> "http://xmlns.jcp.org/xml/ns/javaee":context-param, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":listener, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":session-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":mime-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":welcome-file-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":error-page, 
> "http://xmlns.jcp.org/xml/ns/javaee":jsp-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-constraint, 
> "http://xmlns.jcp.org/xml/ns/javaee":login-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-role, 
> "http://xmlns.jcp.org/xml/ns/javaee":env-entry, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-local-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":service-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-env-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-context-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-unit-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":post-construct, 
> "http://xmlns.jcp.org/xml/ns/javaee":pre-destroy, 
> "http://xmlns.jcp.org/xml/ns/javaee":data-source, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":mail-session, 
> "http://xmlns.jcp.org/xml/ns/javaee":connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":administered-object, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":locale-encoding-mapping-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":default-context-path, 
> "http://xmlns.jcp.org/xml/ns/javaee":request-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":response-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":deny-uncovered-http-methods, 
> "http://xmlns.jcp.org/xml/ns/javaee":absolute-ordering}' is expected.



--
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-4354) JPA-enabled Web application deployent problem

2020-05-20 Thread reza mohseni (Jira)
reza mohseni created NETBEANS-4354:
--

 Summary: JPA-enabled Web application deployent problem
 Key: NETBEANS-4354
 URL: https://issues.apache.org/jira/browse/NETBEANS-4354
 Project: NetBeans
  Issue Type: Bug
  Components: serverplugins - WildFly
 Environment: Netbeans 11.3
Wildfly 18.0
Fedora linux 30
Open JDK 13 (from fedora repositry)
Microsoft Sql Server 2016
Microsoft Sql Server JDBC Driver 8.2 (for jdk 13) (as a wildfly  module)
Reporter: reza mohseni
 Attachments: jpatest.tar.gz, netbeansWebAppDeploymentOnWildfly.txt, 
standalone.xml

In deploying a war packaged web application when the jpa support is

added to the project the deployment does not go through normal path brings 
about  

some exception.

the exception, test project and wildfly config has been attached.

there is no problem in deployment of the war file of the project via wildfly 
console.



--
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-4316) SAX errors on startup

2020-05-20 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4316:
-

Steps to reproduce, log file.

> SAX errors on startup
> -
>
> Key: NETBEANS-4316
> URL: https://issues.apache.org/jira/browse/NETBEANS-4316
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina 10.15.4 and jdk1.8.0_221 with Maven 
> 3.6.1 
>Reporter: David Gradwell
>Priority: Minor
>
> When starting Netbeans 12.0 beta 3 from the command line under Mac OS X 
> Catalina 10.15.4 and jdk1.8.0_221 with Maven 3.6.1 I get the following SAX 
> Errors.  NetBeans seems to run OK so I've labelled this as minor.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [6:21] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 6; columnNumber: 21; cvc-complex-type.2.4.a: Invalid content was 
> found starting with element 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":context-root}'. One of 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":module-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":description, 
> "http://xmlns.jcp.org/xml/ns/javaee":display-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":icon, 
> "http://xmlns.jcp.org/xml/ns/javaee":distributable, 
> "http://xmlns.jcp.org/xml/ns/javaee":context-param, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":listener, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":session-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":mime-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":welcome-file-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":error-page, 
> "http://xmlns.jcp.org/xml/ns/javaee":jsp-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-constraint, 
> "http://xmlns.jcp.org/xml/ns/javaee":login-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-role, 
> "http://xmlns.jcp.org/xml/ns/javaee":env-entry, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-local-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":service-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-env-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-context-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-unit-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":post-construct, 
> "http://xmlns.jcp.org/xml/ns/javaee":pre-destroy, 
> "http://xmlns.jcp.org/xml/ns/javaee":data-source, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":mail-session, 
> "http://xmlns.jcp.org/xml/ns/javaee":connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":administered-object, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":locale-encoding-mapping-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":default-context-path, 
> "http://xmlns.jcp.org/xml/ns/javaee":request-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":response-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":deny-uncovered-http-methods, 
> "http://xmlns.jcp.org/xml/ns/javaee":absolute-ordering}' is expected.



--
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-4316) SAX errors on startup

2020-05-20 Thread David Gradwell (Jira)


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

David Gradwell commented on NETBEANS-4316:
--

Still getting this problem with NetBeans 12.0 beta 4.

 

&&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; lineNumber: 
2; columnNumber: 10; cvc-elt.1: Cannot find the declaration of element 
'web-app'.

 

 

> SAX errors on startup
> -
>
> Key: NETBEANS-4316
> URL: https://issues.apache.org/jira/browse/NETBEANS-4316
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina 10.15.4 and jdk1.8.0_221 with Maven 
> 3.6.1 
>Reporter: David Gradwell
>Priority: Minor
>
> When starting Netbeans 12.0 beta 3 from the command line under Mac OS X 
> Catalina 10.15.4 and jdk1.8.0_221 with Maven 3.6.1 I get the following SAX 
> Errors.  NetBeans seems to run OK so I've labelled this as minor.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [2:10] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 2; columnNumber: 10; cvc-elt.1.a: Cannot find the declaration of 
> element 'web-app'.
> &&& SAX error: [6:21] null / null / org.xml.sax.SAXParseException; 
> lineNumber: 6; columnNumber: 21; cvc-complex-type.2.4.a: Invalid content was 
> found starting with element 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":context-root}'. One of 
> '\{"http://xmlns.jcp.org/xml/ns/javaee":module-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":description, 
> "http://xmlns.jcp.org/xml/ns/javaee":display-name, 
> "http://xmlns.jcp.org/xml/ns/javaee":icon, 
> "http://xmlns.jcp.org/xml/ns/javaee":distributable, 
> "http://xmlns.jcp.org/xml/ns/javaee":context-param, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter, 
> "http://xmlns.jcp.org/xml/ns/javaee":filter-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":listener, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet, 
> "http://xmlns.jcp.org/xml/ns/javaee":servlet-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":session-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":mime-mapping, 
> "http://xmlns.jcp.org/xml/ns/javaee":welcome-file-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":error-page, 
> "http://xmlns.jcp.org/xml/ns/javaee":jsp-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-constraint, 
> "http://xmlns.jcp.org/xml/ns/javaee":login-config, 
> "http://xmlns.jcp.org/xml/ns/javaee":security-role, 
> "http://xmlns.jcp.org/xml/ns/javaee":env-entry, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":ejb-local-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":service-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":resource-env-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-context-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":persistence-unit-ref, 
> "http://xmlns.jcp.org/xml/ns/javaee":post-construct, 
> "http://xmlns.jcp.org/xml/ns/javaee":pre-destroy, 
> "http://xmlns.jcp.org/xml/ns/javaee":data-source, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":jms-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":mail-session, 
> "http://xmlns.jcp.org/xml/ns/javaee":connection-factory, 
> "http://xmlns.jcp.org/xml/ns/javaee":administered-object, 
> "http://xmlns.jcp.org/xml/ns/javaee":message-destination, 
> "http://xmlns.jcp.org/xml/ns/javaee":locale-encoding-mapping-list, 
> "http://xmlns.jcp.org/xml/ns/javaee":default-context-path, 
> "http://xmlns.jcp.org/xml/ns/javaee":request-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":response-character-encoding, 
> "http://xmlns.jcp.org/xml/ns/javaee":deny-uncovered-http-methods, 
> "http://xmlns.jcp.org/xml/ns/javaee":absolute-ordering}' is expected.



--
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-4272) Package as DMG Image (using ANT) fails with Error: Bundler "DMG Installer" (dmg) failed to produce a bundle.

2020-05-20 Thread David Gradwell (Jira)


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

David Gradwell commented on NETBEANS-4272:
--

NetBeans 12.0 beta 4 works provided that netbeans.conf is changed to point to a 
JDK 1.8 installation home. 

> Package as DMG Image (using ANT) fails with Error: Bundler "DMG Installer" 
> (dmg) failed to produce a bundle.
> 
>
> Key: NETBEANS-4272
> URL: https://issues.apache.org/jira/browse/NETBEANS-4272
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.0
> Environment: Mac OS X Catalina 10.15.4 with NetBeans running with 
> jdk1.8.0_221
>Reporter: David Gradwell
>Priority: Major
>
> *Issue*
> Package as DMG Image (using ANT) fails with Error: Bundler "DMG Installer" 
> (dmg) failed to produce a bundle.
> No way to produce a native installer using NetBeans 12.0.
> *NetBeans Version*
> 12.0 beta 3
> *Steps to reproduce:*
>  # Install fresh copy of 12.0 beta 3.
>  # Change netbeans.conf to point to a JDK 1.8 installation home. E.g.
> netbeans_jdkhome="/Library/Java/JavaVirtualMachines/jdk1.8.0_221.jdk/Contents/Home"
> 3 Create new Project "Java with Ant", "Java Application".
>  # Create a single Java file such as:
> package testmacdmgwithant;
> public class TestMacDMGwithAnt
> { /** * @param args the command line arguments */ public static void 
> main(String[] args) \\{ int a=1; }
> }
>  
>  # Go clean and build and debug to prove it works OK.
>  # Run the .jar in the dist folder to prove it works OK.
>  # Go right click on the project and select "Package as DMG Image"
>  
> End of output is:
> Launching  in native packager mode...
> No base JDK. Package will use system JRE.
> No base JDK. Package will use system JRE.
> Building DMG package for TestMacOSXPackagingWithAnt
> Found more than one key matching 'Developer ID Application: '
> /Users/davidjlgradwell/NetBeansDev/TestMacOSXPackagingWithAnt/nbproject/build-native.xml:715:
>  Error: Bundler "DMG Installer" (dmg) failed to produce a bundle.
> BUILD FAILED (total time: 10 seconds)
>  No useful information in the log file.
> Notes: 
>  
>  # Packaging works fine with NetBeans 11.3 with the same netbeans_jdkhome as 
> above.
>  # Maven projects do not support Properties/Build/Deployment/Enable Native 
> Packaging Actions in Project Menu.



--
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-4353) AssertionError on rename of class, field, or method - fixed after computer restart

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Description: 
Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 

 

 

A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring _does_ work.

Two files in two projects are affected. I _can_ refactor classes and members in 
other files.

The bug persists after:
 * Closing and re-opening the .java file in the editor
 * Closing and re-opening Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

  was:
Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 

 

 

A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

I can refactor other classes and members.

The bug persists after:
 * Closing and re-opening the .java file in the editor
 * Closing and re-opening Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine


> AssertionError on rename of class, field, or method - fixed after computer 
> restart
> --
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Minor
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> Fortunately, the bug was fixed by restarting my computer. Hopefully someone 
> can learn something from the IDE log, maybe address some insane Windows edge 
> case! 
>  
> 
>  
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring _does_ work.
> Two files in two projects are affected. I _can_ refactor classes and members 
> in other files.
> The bug persists after:
>  * Closing and re-opening the .java file in the editor
>  * Closing and re-opening Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine



--
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-4353) AssertionError on rename of class, field, or method - fixed after computer restart

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Description: 
Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 

 

 

A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

I can refactor other classes and members.

The bug persists after:
 * Closing and re-opening the .java file in the editor
 * Closing and re-opening Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

  was:
Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 

 

 

A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

I can refactor other classes and members.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine


> AssertionError on rename of class, field, or method - fixed after computer 
> restart
> --
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Minor
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> Fortunately, the bug was fixed by restarting my computer. Hopefully someone 
> can learn something from the IDE log, maybe address some insane Windows edge 
> case! 
>  
> 
>  
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring does work.
> I can refactor other classes and members.
> The bug persists after:
>  * Closing and re-opening the .java file in the editor
>  * Closing and re-opening Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine



--
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-4353) AssertionError on rename of class, field, or method - fixed after computer restart

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Description: 
Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 

 

 

A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

I can refactor other classes and members.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

  was:
A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

I can refactor other classes and members.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 

 

Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 


> AssertionError on rename of class, field, or method - fixed after computer 
> restart
> --
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Minor
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> Fortunately, the bug was fixed by restarting my computer. Hopefully someone 
> can learn something from the IDE log, maybe address some insane Windows edge 
> case! 
>  
> 
>  
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring does work.
> I can refactor other classes and members.
> The bug persists after:
>  * Opening and closing the .java file in the editor
>  * Opening and closing Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine



--
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-4353) AssertionError on rename of class, field, or method - fixed after computer restart

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Description: 
A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

I can refactor other classes and members.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 

 

Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 

  was:
A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 

Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 


> AssertionError on rename of class, field, or method - fixed after computer 
> restart
> --
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Minor
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring does work.
> I can refactor other classes and members.
> The bug persists after:
>  * Opening and closing the .java file in the editor
>  * Opening and closing Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine
>  
> 
>  
> Fortunately, the bug was fixed by restarting my computer. Hopefully someone 
> can learn something from the IDE log, maybe address some insane Windows edge 
> case! 



--
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-4353) AssertionError on rename of class, field, or method

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Description: 
A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 

Fortunately, the bug was fixed by restarting my computer. Hopefully someone can 
learn something from the IDE log, maybe address some insane Windows edge case! 

  was:
A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 

Fortunately,  

 


> AssertionError on rename of class, field, or method
> ---
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Minor
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring does work.
> The bug persists after:
>  * Opening and closing the .java file in the editor
>  * Opening and closing Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine
>  
> Fortunately, the bug was fixed by restarting my computer. Hopefully someone 
> can learn something from the IDE log, maybe address some insane Windows edge 
> case! 



--
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-4353) AssertionError on rename of class, field, or method - fixed after computer restart

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Summary: AssertionError on rename of class, field, or method - fixed after 
computer restart  (was: AssertionError on rename of class, field, or method)

> AssertionError on rename of class, field, or method - fixed after computer 
> restart
> --
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Minor
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring does work.
> The bug persists after:
>  * Opening and closing the .java file in the editor
>  * Opening and closing Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine
>  
> Fortunately, the bug was fixed by restarting my computer. Hopefully someone 
> can learn something from the IDE log, maybe address some insane Windows edge 
> case! 



--
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-4353) AssertionError on rename of class, field, or method

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Priority: Minor  (was: Major)

> AssertionError on rename of class, field, or method
> ---
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Minor
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring does work.
> The bug persists after:
>  * Opening and closing the .java file in the editor
>  * Opening and closing Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine
>  
> Fortunately,  
>  



--
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-4353) AssertionError on rename of class, field, or method

2020-05-20 Thread Peter Froud (Jira)


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

Peter Froud updated NETBEANS-4353:
--
Description: 
A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

The bug persists after:
 * Opening and closing the .java file in the editor
 * Opening and closing Netbeans
 * Deleting the %localappdata%\NetBeans\Cache folder

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 

Fortunately,  

 

  was:
A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

The bug persists after deleting the %localappdata%\NetBeans\Cache folder.

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 


> AssertionError on rename of class, field, or method
> ---
>
> Key: NETBEANS-4353
> URL: https://issues.apache.org/jira/browse/NETBEANS-4353
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 11.3
> Environment: Operating System = Windows 10 version 10.0 running on 
> amd64.
> Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
> Runtime = OpenJDK Runtime Environment 14+36.
>Reporter: Peter Froud
>Priority: Major
> Attachments: AssertionError on class rename.png, AssertionError on 
> field rename.png, AssertionError on method rename.png, AssertionErrorTest 
> project.zip, messages - Copy.log
>
>
> A popup window says:
> "Module Expression Language threw java.lang.AssertionError. Please report a 
> bug against Expression Language module and attach your var/log/messages.log."
> If I click the Refactor button, the refactoring does work.
> The bug persists after:
>  * Opening and closing the .java file in the editor
>  * Opening and closing Netbeans
>  * Deleting the %localappdata%\NetBeans\Cache folder
> I could not reproduce the problem on another computer running Windows 10.
> I've attached:
>  * IDE log from %appdata%\NetBeans\11.3\var\log
>  * Three screenshots of the popup warnings
>  * Zipped project which exhibits the bug on my machine
>  
> Fortunately,  
>  



--
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-4353) AssertionError on rename of class, field, or method

2020-05-20 Thread Peter Froud (Jira)
Peter Froud created NETBEANS-4353:
-

 Summary: AssertionError on rename of class, field, or method
 Key: NETBEANS-4353
 URL: https://issues.apache.org/jira/browse/NETBEANS-4353
 Project: NetBeans
  Issue Type: Bug
  Components: java - Refactoring
Affects Versions: 11.3
 Environment: Operating System = Windows 10 version 10.0 running on 
amd64.
Java; VM; Vendor = 14; OpenJDK 64-Bit Server VM 14+36; AdoptOpenJDK.
Runtime = OpenJDK Runtime Environment 14+36.
Reporter: Peter Froud
 Attachments: AssertionError on class rename.png, AssertionError on 
field rename.png, AssertionError on method rename.png, AssertionErrorTest 
project.zip, messages - Copy.log

A popup window says:

"Module Expression Language threw java.lang.AssertionError. Please report a bug 
against Expression Language module and attach your var/log/messages.log."

If I click the Refactor button, the refactoring does work.

The bug persists after deleting the %localappdata%\NetBeans\Cache folder.

I could not reproduce the problem on another computer running Windows 10.

I've attached:
 * IDE log from %appdata%\NetBeans\11.3\var\log
 * Three screenshots of the popup warnings
 * Zipped project which exhibits the bug on my machine

 



--
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-4186) Stackoverflow error during scanning of projects

2020-05-20 Thread Ghislain G. (Jira)


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

Ghislain G. commented on NETBEANS-4186:
---

I have the same kind of exception with JDK8 and JDK14.

h4. OpenJDK 1.8.0_252

{noformat}
java.lang.StackOverflowError
at java.util.WeakHashMap.getTable(WeakHashMap.java:350)
at java.util.WeakHashMap.get(WeakHashMap.java:397)
at 
org.openide.util.lookup.MetaInfServicesLookup.beforeLookup(MetaInfServicesLookup.java:121)
at 
org.openide.util.lookup.AbstractLookup.lookupItem(AbstractLookup.java:402)
at 
org.openide.util.lookup.AbstractLookup.lookup(AbstractLookup.java:396)
at org.openide.util.lookup.ProxyLookup.lookup(ProxyLookup.java:197)
at 
org.netbeans.modules.javascript2.model.JsElementImpl.isInternalFile(JsElementImpl.java:194)
at 
org.netbeans.modules.javascript2.model.JsElementImpl.isPlatform(JsElementImpl.java:188)
at 
org.netbeans.modules.javascript2.model.api.IndexedElement$Flag.getFlag(IndexedElement.java:387)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.createDocument(JsIndexer.java:121)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:221)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
[...]
{noformat}

h4. OpenJDK 14.0.1+7

{noformat}
java.lang.StackOverflowError
at 
org.openide.util.lookup.AbstractLookup.lookupItem(AbstractLookup.java:402)
at 
org.openide.util.lookup.AbstractLookup.lookup(AbstractLookup.java:396)
at org.openide.util.lookup.ProxyLookup.lookup(ProxyLookup.java:197)
at 
org.netbeans.modules.javascript2.model.JsElementImpl.isInternalFile(JsElementImpl.java:194)
at 
org.netbeans.modules.javascript2.model.JsElementImpl.isPlatform(JsElementImpl.java:188)
at 
org.netbeans.modules.javascript2.model.api.IndexedElement$Flag.getFlag(IndexedElement.java:387)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.createDocument(JsIndexer.java:121)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:221)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
[...]
{noformat}


> Stackoverflow error during scanning of projects
> ---
>
> Key: NETBEANS-4186
> URL: https://issues.apache.org/jira/browse/NETBEANS-4186
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
> Environment: Windows 10, OpenJDK 13, NetBeans 12.0-beta3
>Reporter: Thomas Kellerer
>Priority: Minor
>
> I have cleared the "cache" subdirectory of my userdir, to force reindexing.
> The background scanning completed and it seems to have worked. However the 
> problem reported showed the following exception
> {noformat}
> java.lang.StackOverflowError
>   at java.base/java.util.WeakHashMap.getTable(WeakHashMap.java:350)
>   at java.base/java.util.WeakHashMap.get(WeakHashMap.java:398)
>   at 
> org.openide.util.lookup.MetaInfServicesLookup.beforeLookup(MetaInfServicesLookup.java:121)
>   at 
> org.openide.util.lookup.AbstractLookup.lookupItem(AbstractLookup.java:402)
>   at 
> org.openide.util.lookup.AbstractLookup.lookup(AbstractLookup.java:396)
>   at org.openide.util.lookup.ProxyLookup.lookup(ProxyLookup.java:197)
>   at 
> org.netbeans.modules.javascript2.model.JsElementImpl.isInternalFile(JsElementImpl.java:194)
>   at 
> org.netbeans.modules.javascript2.model.JsElementImpl.isPlatform(JsElementImpl.java:188)
>   at 
> org.netbeans.modules.javascript2.model.api.IndexedElement$Flag.getFlag(IndexedElement.java:387)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.createDocument(JsIndexer.java:121)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:221)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> 

[jira] [Commented] (NETBEANS-3732) First open of project fails, "resolve problems ..." fails

2020-05-20 Thread Neil C Smith (Jira)


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

Neil C Smith commented on NETBEANS-3732:


Interestingly this appears to be caused by #4328. It seems not to occur when 
JavaFX is not marked as required, perhaps due to a difference in how 
dependencies are calculated.  The log shows the same error message about 
web-inspect.jar but FOD continues to install the rest of the required modules.

> First open of project fails, "resolve problems ..." fails
> -
>
> Key: NETBEANS-3732
> URL: https://issues.apache.org/jira/browse/NETBEANS-3732
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
> Environment: Win7, 11.3beta1
>Reporter: Ernie Rael
>Priority: Minor
> Fix For: 11.3
>
>
> - clean start NB
>  - open small existing test project
>  - accept javafx, nb-javac
>  observe "JavaApplication2 (broken)" in Projects window
> Right click on project, click "Resolve Problems..."
>  Observe in a dialog
>  Would also need to enable StandardModule:
>  org.netbeans.modules.web.inspect
>  jarFile: F:\j\nb-files\11.3b1\netbeans\webcommon\modules
>  \org-netbeans-modules-web-inspect.jar
> The project is still "broken", problem not resolved.
> Close the "broken" project, then re-open and things seem ok.



--
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-4328) Installation of nb-javac and JavaFX no longer optional in some cases

2020-05-20 Thread Neil C Smith (Jira)


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

Neil C Smith updated NETBEANS-4328:
---
Description: 
Changes between 11.2 and 11.3 mean that when opening existing Java projects (or 
when projects are being opened during settings imports on first run), it is no 
longer possible to cancel the dialog to install JavaFX and nb-javac without the 
projects being marked broken and Java support not being enabled. This is 
because JavaFX has now been marked required.

When importing settings on first run, the dialog gets re-shown for every open 
project if cancel is pressed - this gives the appearance of an infinite loop 
forcing the user to install the optional plugins. This is particularly a 
problem because we don't want users to install nb-javac in 12.0 with JDK 14.

*If the user is unwilling or _unable because of network issues_ to install 
JavaFX, the IDE is rendered unusable and they are left with the impression they 
need to force quit the IDE.*

This also breaks the guidelines on optional Cat X dependencies at 
[https://www.apache.org/legal/resolved#optional]

  was:
Changes between 11.2 and 11.3 mean that when opening existing Java projects (or 
when projects are being opened during settings imports on first run), it is no 
longer possible to cancel the dialog to install JavaFX and nb-javac without the 
projects being marked broken and Java support not being enabled.

When importing settings on first run, the dialog gets re-shown for every open 
project if cancel is pressed - this gives the appearance of an infinite loop 
forcing the user to install the optional plugins. This is particularly a 
problem because we don't want users to install nb-javac in 12.0 with JDK 14.

*If the user is unwilling or _unable because of network issues_ to install 
JavaFX, the IDE is rendered unusable and they are left with the impression they 
need to force quit the IDE.*

This also breaks the guidelines on optional Cat X dependencies at 
[https://www.apache.org/legal/resolved#optional]


> Installation of nb-javac and JavaFX no longer optional in some cases
> 
>
> Key: NETBEANS-4328
> URL: https://issues.apache.org/jira/browse/NETBEANS-4328
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 11.3
>Reporter: Neil C Smith
>Priority: Blocker
>  Labels: netcat
> Fix For: 12.0
>
>  Time Spent: 2h 40m
>  Remaining Estimate: 0h
>
> Changes between 11.2 and 11.3 mean that when opening existing Java projects 
> (or when projects are being opened during settings imports on first run), it 
> is no longer possible to cancel the dialog to install JavaFX and nb-javac 
> without the projects being marked broken and Java support not being enabled. 
> This is because JavaFX has now been marked required.
> When importing settings on first run, the dialog gets re-shown for every open 
> project if cancel is pressed - this gives the appearance of an infinite loop 
> forcing the user to install the optional plugins. This is particularly a 
> problem because we don't want users to install nb-javac in 12.0 with JDK 14.
> *If the user is unwilling or _unable because of network issues_ to install 
> JavaFX, the IDE is rendered unusable and they are left with the impression 
> they need to force quit the IDE.*
> This also breaks the guidelines on optional Cat X dependencies at 
> [https://www.apache.org/legal/resolved#optional]



--
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-4328) Installation of nb-javac and JavaFX no longer optional in some cases

2020-05-20 Thread Neil C Smith (Jira)


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

Neil C Smith updated NETBEANS-4328:
---
Description: 
Changes between 11.2 and 11.3 mean that when opening existing Java projects (or 
when projects are being opened during settings imports on first run), it is no 
longer possible to cancel the dialog to install JavaFX and nb-javac without the 
projects being marked broken and Java support not being enabled.

When importing settings on first run, the dialog gets re-shown for every open 
project if cancel is pressed - this gives the appearance of an infinite loop 
forcing the user to install the optional plugins. This is particularly a 
problem because we don't want users to install nb-javac in 12.0 with JDK 14.

*If the user is unwilling or _unable because of network issues_ to install 
either of these dependencies, the IDE is rendered unusable and they are left 
with the impression they need to force quit the IDE.*

This also breaks the guidelines on optional Cat X dependencies at 
[https://www.apache.org/legal/resolved#optional]

  was:
Changes between 11.2 and 11.3 mean that when opening existing Java projects (or 
when projects are being opened during settings imports on first run), it is no 
longer possible to cancel the dialog to install JavaFX and nb-javac without the 
projects being marked broken and Java support not being enabled.

When importing settings on first run, the dialog gets re-shown for every open 
project if cancel is pressed - this gives the appearance of an infinite loop 
forcing the user to install the optional plugins. This is particularly a 
problem because we don't want users to install nb-javac in 12.0 with JDK 14.

If the user is unwilling or unable to install either of these dependencies, the 
IDE is rendered unusable.

This also breaks the guidelines on optional Cat X dependencies at 
[https://www.apache.org/legal/resolved#optional]


> Installation of nb-javac and JavaFX no longer optional in some cases
> 
>
> Key: NETBEANS-4328
> URL: https://issues.apache.org/jira/browse/NETBEANS-4328
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 11.3
>Reporter: Neil C Smith
>Priority: Blocker
>  Labels: netcat
> Fix For: 12.0
>
>  Time Spent: 2h 40m
>  Remaining Estimate: 0h
>
> Changes between 11.2 and 11.3 mean that when opening existing Java projects 
> (or when projects are being opened during settings imports on first run), it 
> is no longer possible to cancel the dialog to install JavaFX and nb-javac 
> without the projects being marked broken and Java support not being enabled.
> When importing settings on first run, the dialog gets re-shown for every open 
> project if cancel is pressed - this gives the appearance of an infinite loop 
> forcing the user to install the optional plugins. This is particularly a 
> problem because we don't want users to install nb-javac in 12.0 with JDK 14.
> *If the user is unwilling or _unable because of network issues_ to install 
> either of these dependencies, the IDE is rendered unusable and they are left 
> with the impression they need to force quit the IDE.*
> This also breaks the guidelines on optional Cat X dependencies at 
> [https://www.apache.org/legal/resolved#optional]



--
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-4328) Installation of nb-javac and JavaFX no longer optional in some cases

2020-05-20 Thread Neil C Smith (Jira)


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

Neil C Smith updated NETBEANS-4328:
---
Description: 
Changes between 11.2 and 11.3 mean that when opening existing Java projects (or 
when projects are being opened during settings imports on first run), it is no 
longer possible to cancel the dialog to install JavaFX and nb-javac without the 
projects being marked broken and Java support not being enabled.

When importing settings on first run, the dialog gets re-shown for every open 
project if cancel is pressed - this gives the appearance of an infinite loop 
forcing the user to install the optional plugins. This is particularly a 
problem because we don't want users to install nb-javac in 12.0 with JDK 14.

*If the user is unwilling or _unable because of network issues_ to install 
JavaFX, the IDE is rendered unusable and they are left with the impression they 
need to force quit the IDE.*

This also breaks the guidelines on optional Cat X dependencies at 
[https://www.apache.org/legal/resolved#optional]

  was:
Changes between 11.2 and 11.3 mean that when opening existing Java projects (or 
when projects are being opened during settings imports on first run), it is no 
longer possible to cancel the dialog to install JavaFX and nb-javac without the 
projects being marked broken and Java support not being enabled.

When importing settings on first run, the dialog gets re-shown for every open 
project if cancel is pressed - this gives the appearance of an infinite loop 
forcing the user to install the optional plugins. This is particularly a 
problem because we don't want users to install nb-javac in 12.0 with JDK 14.

*If the user is unwilling or _unable because of network issues_ to install 
either of these dependencies, the IDE is rendered unusable and they are left 
with the impression they need to force quit the IDE.*

This also breaks the guidelines on optional Cat X dependencies at 
[https://www.apache.org/legal/resolved#optional]


> Installation of nb-javac and JavaFX no longer optional in some cases
> 
>
> Key: NETBEANS-4328
> URL: https://issues.apache.org/jira/browse/NETBEANS-4328
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 11.3
>Reporter: Neil C Smith
>Priority: Blocker
>  Labels: netcat
> Fix For: 12.0
>
>  Time Spent: 2h 40m
>  Remaining Estimate: 0h
>
> Changes between 11.2 and 11.3 mean that when opening existing Java projects 
> (or when projects are being opened during settings imports on first run), it 
> is no longer possible to cancel the dialog to install JavaFX and nb-javac 
> without the projects being marked broken and Java support not being enabled.
> When importing settings on first run, the dialog gets re-shown for every open 
> project if cancel is pressed - this gives the appearance of an infinite loop 
> forcing the user to install the optional plugins. This is particularly a 
> problem because we don't want users to install nb-javac in 12.0 with JDK 14.
> *If the user is unwilling or _unable because of network issues_ to install 
> JavaFX, the IDE is rendered unusable and they are left with the impression 
> they need to force quit the IDE.*
> This also breaks the guidelines on optional Cat X dependencies at 
> [https://www.apache.org/legal/resolved#optional]



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