You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/06/18 17:45:55 UTC

[GitHub] [netbeans] tmulle opened a new issue, #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

tmulle opened a new issue, #4242:
URL: https://github.com/apache/netbeans/issues/4242

   ### Apache NetBeans version
   
   Apache NetBeans 14
   
   ### What happened
   
   When trying to run any of my previous NetBeans Applications under JDK17 I get the error below at random times and parts of my application no longer work (ie. Opening JSON/XML files).
   
   I get this error when trying to open any XML/JSON file with the built in editor in my Platform Application and the editors no longer open.
   
   Under JDK11 everything works just fine under NetBeans 14 and previous and I don't get any of these warnings or errors.
   
   ```
   SEVERE [org.openide.util.Exceptions]
   java.lang.reflect.InaccessibleObjectException: Unable to make field private transient java.lang.Thread javax.swing.text.AbstractDocument.currWriter accessible: module java.desktop does not "opens javax.swing.text" to unnamed module @58da5dd9
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
   	at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:178)
   	at java.base/java.lang.reflect.Field.setAccessible(Field.java:172)
   	at org.netbeans.lib.editor.util.swing.DocumentUtilities.isWriteLocked(DocumentUtilities.java:523)
   	at org.netbeans.lib.editor.util.swing.DocumentUtilities.isReadLocked(DocumentUtilities.java:475)
   	at org.netbeans.lib.lexer.inc.DocumentInput.isReadLocked(DocumentInput.java:105)
   	at org.netbeans.spi.lexer.LanguageHierarchy$Accessor.isReadLocked(LanguageHierarchy.java:403)
   	at org.netbeans.lib.lexer.TokenHierarchyOperation.ensureReadLocked(TokenHierarchyOperation.java:383)
   	at org.netbeans.lib.lexer.TokenHierarchyOperation.isActive(TokenHierarchyOperation.java:343)
   	at org.netbeans.api.lexer.TokenHierarchy.isActive(TokenHierarchy.java:306)
   	at org.netbeans.modules.editor.impl.highlighting.HLFactory$TokenHierarchyActiveRunnable.run(HLFactory.java:108)
   	at org.netbeans.editor.BaseDocument.render(BaseDocument.java:1402)
   	at org.netbeans.modules.editor.impl.highlighting.HLFactory$TokenHierarchyActiveRunnable.isActive(HLFactory.java:103)
   	at org.netbeans.modules.editor.impl.highlighting.HLFactory.createLayers(HLFactory.java:69)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.rebuildAllLayersImpl(HighlightingManager.java:378)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting$4.run(HighlightingManager.java:357)
   	at org.netbeans.editor.BaseDocument.render(BaseDocument.java:1402)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.rebuildAllLayers(HighlightingManager.java:354)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.rebuildAll(HighlightingManager.java:340)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.<init>(HighlightingManager.java:202)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager.<init>(HighlightingManager.java:150)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager.getInstance(HighlightingManager.java:78)
   	at org.netbeans.modules.editor.NbEditorKit.call(NbEditorKit.java:1300)
   [catch] at org.openide.text.CloneableEditorInitializer.initKit(CloneableEditorInitializer.java:478)
   	at org.openide.text.CloneableEditorInitializer.run(CloneableEditorInitializer.java:315)
   	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)
   SEVERE [org.openide.util.Exceptions]
   java.lang.reflect.InaccessibleObjectException: Unable to make field private transient java.lang.Thread javax.swing.text.AbstractDocument.currWriter accessible: module java.desktop does not "opens javax.swing.text" to unnamed module @58da5dd9
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
   	at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:178)
   	at java.base/java.lang.reflect.Field.setAccessible(Field.java:172)
   	at org.netbeans.lib.editor.util.swing.DocumentUtilities.isWriteLocked(DocumentUtilities.java:523)
   	at org.netbeans.lib.editor.util.swing.DocumentUtilities.isReadLocked(DocumentUtilities.java:475)
   	at org.netbeans.lib.lexer.inc.DocumentInput.isReadLocked(DocumentInput.java:105)
   	at org.netbeans.spi.lexer.LanguageHierarchy$Accessor.isReadLocked(LanguageHierarchy.java:403)
   	at org.netbeans.lib.lexer.TokenHierarchyOperation.ensureReadLocked(TokenHierarchyOperation.java:383)
   	at org.netbeans.lib.lexer.TokenHierarchyOperation.isActive(TokenHierarchyOperation.java:343)
   	at org.netbeans.api.lexer.TokenHierarchy.isActive(TokenHierarchy.java:306)
   	at org.netbeans.modules.editor.impl.highlighting.HLFactory$TokenHierarchyActiveRunnable.run(HLFactory.java:108)
   	at org.netbeans.editor.BaseDocument.render(BaseDocument.java:1402)
   	at org.netbeans.modules.editor.impl.highlighting.HLFactory$TokenHierarchyActiveRunnable.isActive(HLFactory.java:103)
   	at org.netbeans.modules.editor.impl.highlighting.HLFactory.createLayers(HLFactory.java:69)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.rebuildAllLayersImpl(HighlightingManager.java:378)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting$4.run(HighlightingManager.java:357)
   	at org.netbeans.editor.BaseDocument.render(BaseDocument.java:1402)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.rebuildAllLayers(HighlightingManager.java:354)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.rebuildAll(HighlightingManager.java:340)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager$Highlighting.<init>(HighlightingManager.java:202)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager.<init>(HighlightingManager.java:150)
   	at org.netbeans.modules.editor.lib2.highlighting.HighlightingManager.getInstance(HighlightingManager.java:78)
   	at org.netbeans.modules.editor.lib2.view.HighlightsViewFactory.<init>(HighlightsViewFactory.java:132)
   	at org.netbeans.modules.editor.lib2.view.HighlightsViewFactory$HighlightsFactory.createEditorViewFactory(HighlightsViewFactory.java:427)
   	at org.netbeans.modules.editor.lib2.view.ViewUpdates.initFactories(ViewUpdates.java:132)
   	at org.netbeans.modules.editor.lib2.view.DocumentViewOp.parentViewSet(DocumentViewOp.java:565)
   	at org.netbeans.modules.editor.lib2.view.DocumentView$4.run(DocumentView.java:612)
   	at org.netbeans.modules.editor.lib2.view.DocumentView.runTransaction(DocumentView.java:201)
   	at org.netbeans.modules.editor.lib2.view.DocumentView$1.run(DocumentView.java:214)
   	at org.netbeans.editor.BaseDocument.render(BaseDocument.java:1402)
   	at org.netbeans.modules.editor.lib2.view.DocumentView.runReadLockTransaction(DocumentView.java:211)
   	at org.netbeans.modules.editor.lib2.view.DocumentView.setParent(DocumentView.java:607)
   	at java.desktop/javax.swing.plaf.basic.BasicTextUI$RootView.setView(BasicTextUI.java:1432)
   	at java.desktop/javax.swing.plaf.basic.BasicTextUI.setView(BasicTextUI.java:713)
   	at org.netbeans.editor.BaseTextUI.modelChanged(BaseTextUI.java:139)
   	at java.desktop/javax.swing.plaf.basic.BasicTextUI$UpdateHandler.propertyChange(BasicTextUI.java:1898)
   	at java.desktop/java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:343)
   	at java.desktop/java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:335)
   	at java.desktop/java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:268)
   	at java.desktop/java.awt.Component.firePropertyChange(Component.java:8722)
   	at org.openide.text.QuietEditorPane.firePropertyChange(QuietEditorPane.java:206)
   	at java.desktop/javax.swing.text.JTextComponent.setDocument(JTextComponent.java:456)
   	at org.openide.text.QuietEditorPane.setDocument(QuietEditorPane.java:159)
   	at org.openide.text.CloneableEditorInitializer.setKitAndDocumentToPaneInEDT(CloneableEditorInitializer.java:565)
   [catch] at org.openide.text.CloneableEditorInitializer.run(CloneableEditorInitializer.java:318)
   	at org.openide.text.CloneableEditorInitializer.processPendingEDTRequests(CloneableEditorInitializer.java:135)
   	at org.openide.text.CloneableEditorInitializer$1.run(CloneableEditorInitializer.java:84)
   	at org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1601)
   	at org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
   	at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
   	at org.netbeans.modules.openide.util.NbMutexEventProvider$Event.lambda$doEventRequest$1(NbMutexEventProvider.java:112)
   	at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318)
   	at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:771)
   	at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:722)
   	at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:716)
   	at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
   	at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
   	at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:741)
   	at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
   	at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
   	at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
   	at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
   	at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
   	at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
   	at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
   ```
   
   I get these warnings and things seem to work ok.. 
   ```
   WARNING [org.netbeans.core.execution.AccController]
   java.lang.reflect.InaccessibleObjectException: Unable to make field private java.security.ProtectionDomain[] java.security.AccessControlContext.context accessible: module java.base does not "opens java.security" to unnamed module @5b6615da
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
   	at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:178)
   	at java.base/java.lang.reflect.Field.setAccessible(Field.java:172)
   	at org.netbeans.core.execution.AccController.getContextField(AccController.java:50)
   	at org.netbeans.core.execution.AccController.getDomains(AccController.java:58)
   	at org.netbeans.core.execution.AccController.getIOPermissionCollection(AccController.java:78)
   	at org.netbeans.core.execution.AccController.getIOPermissionCollection(AccController.java:72)
   	at org.netbeans.core.execution.SecMan.checkTopLevelWindow(SecMan.java:105)
   	at org.netbeans.core.execution.SecMan.checkPermission(SecMan.java:97)
   	at org.netbeans.TopSecurityManager.checkTopLevelWindow(TopSecurityManager.java:208)
   	at org.netbeans.TopSecurityManager.checkPermission(TopSecurityManager.java:484)
   	at java.desktop/java.awt.Window.setWarningString(Window.java:1408)
   	at java.desktop/java.awt.Window.init(Window.java:508)
   	at java.desktop/java.awt.Window.<init>(Window.java:453)
   	at java.desktop/java.awt.Window.<init>(Window.java:608)
   	at java.desktop/java.awt.Dialog.<init>(Dialog.java:675)
   	at java.desktop/java.awt.Dialog.<init>(Dialog.java:419)
   	at java.desktop/javax.swing.JDialog.<init>(JDialog.java:273)
   	at java.desktop/javax.swing.JDialog.<init>(JDialog.java:207)
   	at java.desktop/javax.swing.JDialog.<init>(JDialog.java:155)
   	at org.netbeans.core.NotifyExcPanel.isModalDialogPresent(NotifyExcPanel.java:232)
   	at org.netbeans.core.NotifyExcPanel.<init>(NotifyExcPanel.java:170)
   	at org.netbeans.core.NotifyExcPanel.<init>(NotifyExcPanel.java:81)
   	at org.netbeans.core.NotifyExcPanel$ExceptionFlasher.actionPerformed(NotifyExcPanel.java:660)
   	at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1972)
   	at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2313)
   	at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
   	at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
   	at java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:279)
   	at java.desktop/java.awt.Component.processMouseEvent(Component.java:6626)
   	at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3389)
   	at java.desktop/java.awt.Component.processEvent(Component.java:6391)
   	at java.desktop/java.awt.Container.processEvent(Container.java:2266)
   	at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5001)
   	at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324)
   	at java.desktop/java.awt.Component.dispatchEvent(Component.java:4833)
   	at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4948)
   	at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4575)
   	at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4516)
   	at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310)
   	at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2780)
   	at java.desktop/java.awt.Component.dispatchEvent(Component.java:4833)
   	at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:773)
   	at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:722)
   	at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:716)
   	at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
   	at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
   	at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97)
   	at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:746)
   	at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:744)
   	at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
   	at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
   [catch] at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:743)
   	at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
   	at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
   	at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
   	at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
   	at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
   	at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
   	at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
   ```
   
   ### How to reproduce
   
   I don't have a specific example I can share unfortunately, but maybe try with a Platform Application that uses the built in JSON/XML editor and run it under JDK17 and see if you get the same errors.
   
   The editors don't open...
   
   Here is my log when my application first starts up, hopefully it will shed some light:
   
   ```
   cd /Users/tmulle/NetBeansProjects/TextAnalyzer/application; JAVA_HOME=/Users/tmulle/.sdkman/candidates/java/17.0.3-tem /Users/tmulle/Development/Tools/netbeans/java/maven/bin/mvn -Dnetbeans.run.params.debug=-J-Dnetbeans.patches.com.mycompany.ImportMeshSupport=/Users/tmulle/NetBeansProjects/TextAnalyzer/ImportMeshSupport/target/classes -Dexec.vmArgs= -Dexec.appArgs= nbm:cluster-app nbm:run-platform
   Running NetBeans Compile On Save execution. Phase execution is skipped and output directories of dependency projects (with Compile on Save turned on) will be used instead of their jar artifacts.
   Scanning for projects...
   
   -------------------< com.mycompany:TextAnalyzer-app >-------------------
   Building TextAnalyzer-app 1.0-SNAPSHOT
   --------------------------[ nbm-application ]---------------------------
   
   --- nbm-maven-plugin:4.6:cluster-app (default-cli) @ TextAnalyzer-app ---
   org.objectweb.asm added by org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-9.2.jar
   org.objectweb.asm.tree added by org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-tree-9.2.jar
   org.objectweb.asm.commons added by org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-commons-9.2.jar
   org.apache.felix.main added by org.netbeans.modules:org-netbeans-libs-felix:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/org.apache.felix.main-7.0.3.jar
   Could not resolve Class-Path item in org.netbeans.api:org-netbeans-libs-javafx:nbm-file:RELEASE140, path is:%24%7Bjava.home%7D/lib/ext/jfxrt.jar, skipping
   com.sun.jna.platform added by org.netbeans.api:org-netbeans-libs-jna-platform:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/jna-platform-5.9.0.jar
   com.sun.jna added by org.netbeans.api:org-netbeans-libs-jna:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/jna-5.9.0.jar
   junit_jupiter_api added by org.netbeans.api:org-netbeans-libs-junit5:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/junit-jupiter-api-5.6.0.jar
   junit_jupiter_params added by org.netbeans.api:org-netbeans-libs-junit5:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/junit-jupiter-params-5.6.0.jar
   junit_jupiter_engine added by org.netbeans.api:org-netbeans-libs-junit5:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/junit-jupiter-engine-5.6.0.jar
   osgi.core added by org.netbeans.api:org-netbeans-libs-osgi:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/osgi.core-8.0.0.jar
   osgi.cmpn added by org.netbeans.api:org-netbeans-libs-osgi:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/osgi.cmpn-7.0.0.jar
   testng added by org.netbeans.api:org-netbeans-libs-testng:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/testng-6.14.3.jar
   org.eclipse.osgi added by org.netbeans.api:org-netbeans-modules-netbinox:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/modules/ext/org.eclipse.osgi_3.9.1.nb9.jar
   com.ibm.icu added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/com-ibm-icu/icu4j.jar
   jaxb_api added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/javax-xml-bind/jaxb-api.jar
   io.prometheus.simpleclient_common added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-prometheus/simpleclient_common.jar
   io.prometheus.simpleclient added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-prometheus/simpleclient.jar
   io.prometheus.simpleclient_tracer_otel added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-prometheus/simpleclient_tracer_otel.jar
   io.prometheus.simpleclient_tracer_common added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-prometheus/simpleclient_tracer_common.jar
   io.prometheus.simpleclient_tracer_otel_agent added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-prometheus/simpleclient_tracer_otel_agent.jar
   org.tukaani.xz added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-tukaani/xz.jar
   org.apache.commons.commons_io added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/commons-io/commons-io.jar
   org.apache.commons.lang3 added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-apache-commons/commons-lang3.jar
   org.apache.commons.commons_text added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-apache-commons/commons-text.jar
   com.google.protobuf added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/com-google-protobuf/protobuf-java.jar
   com.google.protobuf.util added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/com-google-protobuf/protobuf-java-util.jar
   com.google.guava added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/com-google-guava/guava.jar
   com.google.guava.failureaccess added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/com-google-guava/failureaccess.jar
   org.jsr_305 added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/com-google-code-findbugs/jsr305.jar
   slf4j.api added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-slf4j/slf4j-api.jar
   com.sun.jna.platform added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/net-java-dev-jna/jna-platform.jar
   com.sun.jna added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/net-java-dev-jna/jna.jar
   io.netty.all added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-all.jar
   io.netty.buffer added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-buffer.jar
   io.netty.codec added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec.jar
   io.netty.codec_dns added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-dns.jar
   io.netty.codec_haproxy added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-haproxy.jar
   io.netty.codec_http added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-http.jar
   io.netty.codec_http2 added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-http2.jar
   io.netty.codec_memcache added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-memcache.jar
   io.netty.codec_mqtt added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-mqtt.jar
   io.netty.codec_redis added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-redis.jar
   io.netty.codec_smtp added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-smtp.jar
   io.netty.codec_socks added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-socks.jar
   io.netty.codec_stomp added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-stomp.jar
   io.netty.codec_xml added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-codec-xml.jar
   io.netty.common added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-common.jar
   io.netty.handler added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-handler.jar
   io.netty.tcnative_classes added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-tcnative-classes.jar
   io.netty.handler_proxy added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-handler-proxy.jar
   io.netty.resolver added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-resolver.jar
   io.netty.resolver_dns added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-resolver-dns.jar
   io.netty.transport added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-transport.jar
   io.netty.transport_rxtx added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-transport-rxtx.jar
   io.netty.transport_sctp added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-transport-sctp.jar
   io.netty.transport_udt added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-transport-udt.jar
   io.netty.transport_classes_epoll added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-transport-classes-epoll.jar
   io.netty.transport_native_unix_common added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-transport-native-unix-common.jar
   io.netty.transport_classes_kqueue added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-transport-classes-kqueue.jar
   io.netty.resolver_dns_classes_macos added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/io-netty/netty-resolver-dns-classes-macos.jar
   org.eclipse.jetty.server added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-eclipse-jetty/jetty-server.jar
   javax.servlet_api added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/javax-servlet/javax.servlet-api.jar
   org.eclipse.jetty.http added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-eclipse-jetty/jetty-http.jar
   org.eclipse.jetty.util added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-eclipse-jetty/jetty-util.jar
   org.eclipse.jetty.io added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-eclipse-jetty/jetty-io.jar
   com.google.gson added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/com-google-code-gson/gson.jar
   org.apache.commons.codec added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/commons-codec/commons-codec.jar
   bctls added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-bouncycastle/bctls-jdk15on.jar
   bcprov added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-bouncycastle/bcprov-jdk15on.jar
   picocli added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/info-picocli/picocli.jar
   ch.qos.logback.classic added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/ch-qos-logback/logback-classic.jar
   ch.qos.logback.core added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/ch-qos-logback/logback-core.jar
   jcl.over.slf4j added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-slf4j/jcl-over-slf4j.jar
   org.hdrhistogram.HdrHistogram added by com.mycompany:ImportMeshSupport:nbm-file:1.0-SNAPSHOT/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer/modules/ext/com.mycompany.ImportMeshSupport/org-hdrhistogram/HdrHistogram.jar
   org.objectweb.asm added by org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-9.2.jar
   org.objectweb.asm.tree added by org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-tree-9.2.jar
   org.objectweb.asm.commons added by org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-commons-9.2.jar
   org.antlr.antlr4_runtime added by org.netbeans.api:org-netbeans-libs-antlr4-runtime:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/ide/modules/ext/antlr4-runtime-4.7.2.jar
   com.googlecode.json_simple added by org.netbeans.api:org-netbeans-libs-json_simple:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/ide/modules/ext/json-simple-1.1.1.jar
   nu.validator.htmlparser added by org.netbeans.modules:org-netbeans-modules-html-parser:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/ide/modules/ext/html5-parser.jar
   org.snakeyaml.engine added by org.netbeans.api:org-netbeans-libs-snakeyaml_engine:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/ide/modules/ext/snakeyaml-engine.jar
   org.freemarker.freemarker added by org.netbeans.modules:org-netbeans-libs-freemarker:nbm-file:RELEASE140/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/ide/modules/ext/freemarker-2.3.30.jar
   Integrity verification passed.
   Created NetBeans module cluster(s) at /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer
   
   --- nbm-maven-plugin:4.6:run-platform (default-cli) @ TextAnalyzer-app ---
   Executing: /bin/sh -c '/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/bin/textanalyzer' '--userdir' '/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/userdir' '-J-Dnetbeans.logger.console=true' '-J-ea' '--branding' 'textanalyzer' '--jdkhome' '/Users/tmulle/.sdkman/candidates/java/17.0.3-tem' '-J-Dnetbeans.patches.com.mycompany.ImportMeshSupport=/Users/tmulle/NetBeansProjects/TextAnalyzer/ImportMeshSupport/target/classes'
   Jun 18, 2022 1:35:56 PM org.netbeans.ProxyURLStreamHandlerFactory register
   SEVERE: No way to find original stream handler for jar protocol
   java.lang.reflect.InaccessibleObjectException: Unable to make field transient java.net.URLStreamHandler java.net.URL.handler accessible: module java.base does not "opens java.net" to unnamed module @dfd3711
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
   	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
   	at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:178)
   	at java.base/java.lang.reflect.Field.setAccessible(Field.java:172)
   	at org.netbeans.ProxyURLStreamHandlerFactory.register(ProxyURLStreamHandlerFactory.java:59)
   	at org.netbeans.JarClassLoader.<clinit>(JarClassLoader.java:117)
   	at org.netbeans.MainImpl.execute(MainImpl.java:153)
   	at org.netbeans.MainImpl.main(MainImpl.java:60)
   	at org.netbeans.Main.main(Main.java:58)
   
   -------------------------------------------------------------------------------
   >Log Session: Saturday, June 18, 2022 at 1:35:56 PM Eastern Daylight Time
   >System Info: 
     Product Version         = TextAnalyzer 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd
     Operating System        = Mac OS X version 12.4 running on aarch64
     Java; VM; Vendor        = 17.0.3; OpenJDK 64-Bit Server VM 17.0.3+7; Eclipse Adoptium
     Runtime                 = OpenJDK Runtime Environment 17.0.3+7
     Java Home               = /Users/tmulle/.sdkman/candidates/java/17.0.3-tem
     System Locale; Encoding = en_US (textanalyzer); UTF-8
     Home Directory          = /Users/tmulle
     Current Directory       = /Users/tmulle/NetBeansProjects/TextAnalyzer/application
     User Directory          = /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/userdir
     Cache Directory         = /Users/tmulle/Library/Caches/textanalyzer/dev
     Installation            = /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/ide
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/bin
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/etc
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/java
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/webcommon
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/extra
                               /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform
     Boot & Ext. Classpath   = 
     Application Classpath   = /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/lib/boot.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/lib/org-openide-modules.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/lib/org-openide-util-lookup.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/lib/org-openide-util-ui.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/lib/org-openide-util.jar
     Startup Classpath       = /Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-tree-9.2.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/org-netbeans-libs-asm.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/org-openide-filesystems-compat8.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/org-openide-filesystems.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-9.2.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/asm-commons-9.2.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/core.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/core/core-base.jar:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanaly
 zer/core/locale/core_textanalyzer.jar
   -------------------------------------------------------------------------------
   INFO [org.netbeans.core.startup.NbEvents]: Module patch or custom extension: /Users/tmulle/NetBeansProjects/TextAnalyzer/ImportMeshSupport/target/classes
   WARNING [org.netbeans.core.modules]: the modules [org.netbeans.modules.xml.text] use org.netbeans.modules.editor.deprecated.pre65formatting which is deprecated.
   WARNING [org.netbeans.core.modules]: the modules [org.netbeans.modules.xml.text] use org.netbeans.modules.editor.structure which is deprecated.
   WARNING [org.netbeans.modules.editor.EditorModule]: Can't hack in to the JEditorPane's registry for kits: java.lang.reflect.InaccessibleObjectException: Unable to make field private static final java.lang.Object javax.swing.JEditorPane.kitRegistryKey accessible: module java.desktop does not "opens javax.swing" to unnamed module @3cfa179e
   WARNING [org.netbeans.modules.autoupdate.ui.actions.AutoupdateSettings]: The property "netbeans.default_userdir_root" was not set!
   WARNING: A terminally deprecated method in java.lang.System has been called
   WARNING: System::setSecurityManager has been called by org.netbeans.TopSecurityManager (file:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform/lib/boot.jar)
   WARNING: Please consider reporting this to the maintainers of org.netbeans.TopSecurityManager
   WARNING: System::setSecurityManager will be removed in a future release
   INFO [org.netbeans.core.startup.NbEvents]: Turning on modules:
   	org.openide.util.lookup [8.50 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.util [9.24 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.util.ui [9.24 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.modules [7.64 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.annotations.common/1 [1.44 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.filesystems [9.28 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.awt [7.84 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.progress/1 [1.64 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.progress.nb [1.64 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.dialogs [7.61 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.nodes [7.61 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.windows [6.93 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.batik.read [1.9.0.1 1 Netbeans/netbeans-TLP/netbeans/release140-27-on-20220601]
   	org.openide.util.ui.svg [1.10 Netbeans/netbeans-TLP/netbeans/release140-27-on-20220601]
   	org.netbeans.modules.editor.mimelookup/1 [1.56 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.text [6.84 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.scripting [1.13 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.swing.tabcontrol [1.72 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.swing.outline [1.50 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.explorer [6.78 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.actions [6.55 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.queries/1 [1.59 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.templates [1.24 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.filesystems.nb [9.26 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.loaders [7.86 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.intent [1.18 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.io [1.19 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.io [1.65 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.filesystems.compat8 [9.25 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.execution [9.19 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.openide.execution.compat8 [9.18 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.swing.plaf [1.58 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.keyring [1.40 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.asm [5.19 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.bootstrap/1 [2.94 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.startup.base [1.78.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.startup/1 [1.78.0.1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.sampler [1.30 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core/2 [3.67 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.spi.quicksearch [1.43 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.options.api/1 [1.61 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.flatlaf/1 [1.10 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.swing.laf.flatlaf [1.9 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.swing.laf.dark/1 [2.11.0.2 2 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.spi.tasklist/1 [1.51.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.spi.palette/1 [1.62 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.spi.navigator/1 [1.54 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.settings/1 [1.73 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.util/1 [1.81 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.document [1.25.0.3 3 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.lexer/2 [1.79.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.lib2/1 [2.36.0.55.3 55 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.lsp/1 [1.9 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.settings.lib [1.67.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.fold/1 [1.61 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.indent/2 [1.59 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.guards/1 [1.49 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.lib/3 [4.23.0.23.3.55 23 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.spi.editor.hints/0 [1.58.0.8.55 8 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.projectapi/1 [1.86 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.projectuiapi.base/1 [1.102.0.9 9 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.projectuiapi/1 [1.105.0.8 8 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.tools.storage [1.24 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.options.keymap [1.53 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.settings.storage/1 [1.68.0.1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.fold.nbui [1.28.0.55 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor/3 [1.103.0.6.3.23.55 6 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.options.editor/1 [1.76 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.spi.editor.hints.projects [1.27.0.1.8 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.multiview/1 [1.60 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.xml/1 [1.60 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.core/2 [1.59.0.4 4 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.xam/1 [1.48.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.xml.ui/1 [1.60 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.apache.xml.resolver [1.47.0.12 12 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.retriever/1 [1.47 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.schema.model/1 [1.48.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.axi [1.49 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.indent.support [1.58 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.java.classpath/1 [1.70 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.lucene/3 [3.35 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.masterfs/2 [2.71.0.2 2 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.parsing.lucene/2 [2.52.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.parsing.api/1 [9.23.0.8 8 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.breadcrumbs/0 [1.33 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.bracesmatching/0 [1.55.0.55 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.deprecated.pre65formatting/0 [1.47.0.1.6.23.55 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.errorstripe.api/1 [2.48.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.errorstripe/2 [2.50.0.1.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.completion/1 [1.61.0.2 2 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.codetemplates/1 [1.60.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.actions/1 [1.47.0.55 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.project.indexingbridge [1.33 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.parsing.indexing [9.25.0.1.3.8 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.diff/1 [1.67.0.42.1 42 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.refactoring.api [1.63.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.csl.types/1 [1.16 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.ui/1 [1.61 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.search [1.37 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.jumpto/1 [1.71.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.csl.api/2 [2.73.0.2.1.1.8.1 2 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.structure/1 [1.63.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.lexer [1.46 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.text/2 [1.75.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml [1.49 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.servletapi/1 [1.55 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.httpserver/2 [2.52.0.42 42 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xsl/1 [1.60 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.xdm/1 [1.50.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.xerces/1 [1.54.0.281 281 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.tax/2 [1.60.0.281 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.tools/2 [1.59 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.schema.completion [1.47 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.xml.catalog/2 [3.20.0.4 4 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.json_simple/1 [0.28 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.web.common [1.115 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.web.indent [1.36 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.extexecution.base/2 [1.22 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.extexecution/2 [1.65 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.web.common.ui [1.17 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.extbrowser/1 [1.69 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.settings/1 [1.65 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.web.browser.api [1.61 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.sendopts/2 [2.52 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.utilities/1 [1.77 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.utilities.project/1 [1.54 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.terminal [1.43 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.templates/1 [1.23 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.properties/1 [1.71 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.execution/1 [1.58 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.favorites/1 [1.62 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.projectui [1.75.0.8.9 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.projectapi.nb [1.20 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.progress.ui [1.49 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.print [7.42 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.parsing.nb [1.20.0.8.1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.masterfs.ui [2.19.0.2 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.masterfs.nio2 [1.31 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.jna/2 [2.11 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.masterfs.macosx [1.29 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.lexer.nbbridge/1 [1.48.0.1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.snakeyaml_engine/2 [2.5 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.languages.yaml [2.48 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.languages.manifest [1.48 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.languages.diff [1.49 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.keyring.fallback [1.24 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.keyring.impl [1.40 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.javascript2.types/1 [1.16 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.antlr4.runtime [1.17.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.javascript2.json [1.19 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.html.lexer/1 [1.54 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.javascript2.lexer/1 [1.22 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.nashorn/2 [2.0 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.javascript2.doc/1 [1.15 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.javascript2.model/1 [1.20 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.antlr3.runtime [1.37.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.css.lib/1 [1.99 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.javascript2.editor/1 [0.90 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.janitor [1.9 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.image/1 [1.64 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.html.editor.lib/3 [3.48 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.apache.commons.logging [1.2 1.2]
   	org.netbeans.modules.html.parser/1 [1.50.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.html.validation/1 [1.47 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.html.indexing [1.6 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.css.model [1.47 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.css.editor/1 [1.84 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.html/1 [1.77 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.html.editor/2 [2.72 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.search [1.41.0.0.55 0 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.plain.lib/1 [1.49 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.plain/2 [1.51 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.mimelookup.impl/1 [1.48 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.output2/1 [1.58 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.css.visual/3 [3.48 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.autosave/1 [1.7 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.editor.kit [1.49 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.autoupdate.services [1.71 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.autoupdate.cli [1.30 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.windows/2 [2.101 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.osgi [1.38 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.felix [2.31 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.autoupdate.ui [1.62 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.core.kit [1.47 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.modules.applemenu/1 [1.53 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.jna.platform/2 [2.11 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.libs.freemarker/1 [2.50.0.239 239 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.network [1.28 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.netigso [1.47 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.nativeaccess/1 [1.47 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.multitabs/1 [1.28.0.1 1 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.core.io.ui/1 [1.46 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	org.netbeans.api.progress.compat8 [1.63 14-c4f2d87113e1a2d2d4e21e8952e1f99612d5b3fd]
   	com.mycompany.TextAnalyzerProjectType [1.0 1.0-20220618 202206181658]
   	com.mycompany.TextAnalyzer.options [1.0 1.0-20220618 202206181659]
   	com.mycompany.TextAnalyzer.branding [1.0 1.0-20220618 202206181658]
   	com.mycompany.ImportMeshSupport [1.0 1.0-20220618 202206181659]
   INFO [org.netbeans.core.netigso.Netigso]: bundle org.apache.felix.framework@7.0.3 started
   INFO [org.netbeans.core.network.proxy.NetworkProxyReloader]: System network proxy resolver: Mac
   INFO [org.netbeans.core.network.proxy.NetworkProxyReloader]: System network proxy reloading failed! Trying fallback resolver.
   INFO [org.netbeans.core.network.proxy.fallback.FallbackNetworkProxy]: Fallback system proxy resolver: no http_proxy variable found
   INFO [org.netbeans.core.network.proxy.NetworkProxyReloader]: System network proxy reloading succeeded. Fallback provider was successful.
   INFO [org.netbeans.core.network.proxy.NetworkProxyReloader]: System network proxy - mode: direct
   INFO [org.netbeans.core.network.proxy.NetworkProxyReloader]: System network proxy: fell to default (correct if direct mode went before)
   INFO [org.netbeans.ui.metrics.laf]: USG_LOOK_AND_FEEL
   java.lang.IllegalAccessException: class org.netbeans.TopSecurityManager cannot access class sun.awt.AppContext (in module java.desktop) because module java.desktop does not export sun.awt to unnamed module @dfd3711
   	at java.base/jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392)
   	at java.base/java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674)
   	at java.base/java.lang.reflect.Method.invoke(Method.java:560)
   	at org.netbeans.TopSecurityManager.makeSwingUseSpecialClipboard(TopSecurityManager.java:714)
   	at org.netbeans.core.NbLifecycleManager.advancePolicy(NbLifecycleManager.java:71)
   	at org.netbeans.core.GuiRunLevel.run(GuiRunLevel.java:84)
   	at org.netbeans.core.startup.Main.start(Main.java:312)
   	at org.netbeans.core.startup.TopThreadGroup.run(TopThreadGroup.java:98)
   	at java.base/java.lang.Thread.run(Thread.java:833)
   INFO [org.netbeans.ui.metrics.projects]: USG_PROJECT_OPEN
   INFO [org.netbeans.ui.indexing]: Indexing started, time from last indexing 0 ms.
   INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: Resolving dependencies took: 3 ms
   INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: Complete indexing of 0 binary roots took: 0 ms
   INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: Complete indexing of 0 source roots took: 0 ms (New or modified files: 0, Deleted files: 0) [Adding listeners took: 0 ms]
   INFO [org.netbeans.ui.indexing]: Indexing finished, indexing took 205 ms.
   Diagnostic information
   Input arguments:
   	-Djdk.home=/Users/tmulle/.sdkman/candidates/java/17.0.3-tem
   	-Dnetbeans.dirs=/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/ide:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/textanalyzer:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/bin:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/etc:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/java:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/webcommon:/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/extra:
   	-Dnetbeans.home=/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/textanalyzer/platform
   	-Dnetbeans.logger.console=true
   	-ea
   	-Dnetbeans.patches.com.mycompany.ImportMeshSupport=/Users/tmulle/NetBeansProjects/TextAnalyzer/ImportMeshSupport/target/classes
   	-XX:+HeapDumpOnOutOfMemoryError
   	-XX:HeapDumpPath=/Users/tmulle/NetBeansProjects/TextAnalyzer/application/target/userdir/var/log/heapdump.hprof
   	-Djava.security.manager=allow
   Compiler: HotSpot 64-Bit Tiered Compilers
   Heap memory usage: initial 512.0MB maximum 8192.0MB
   Non heap memory usage: initial 7.3MB maximum -1b
   Garbage collector: G1 Young Generation (Collections=10 Total time spent=0s)
   Garbage collector: G1 Old Generation (Collections=0 Total time spent=0s)
   Classes: loaded=7492 total loaded=7493 unloaded 1
   INFO [org.netbeans.core.ui.warmup.DiagnosticTask]: Total memory 34,359,738,368
   INFO [null]: Total physical memory 34,359,738,368
   WARNING [org.openide.filesystems.Ordering]: Found same position 500 for both Menu/File/Import/org-netbeans-modules-project-ui-zip-import.shadow and Menu/File/Import/org-rajant-ImportMesh.shadow
   
   ```
   
   ### Did this work correctly in an earlier version?
   
   Apache NetBeans 14
   
   ### Operating System
   
   Mac OS X version 12.4 running on aarch64
   
   ### JDK
   
   17.0.3; OpenJDK 64-Bit Server VM 17.0.3+7; Eclipse Adoptium
   
   ### Apache NetBeans packaging
   
   Apache NetBeans binary zip
   
   ### Anything else
   
   This happens all the time when trying to run under JDK 17
   Running under JDK11 works fine in all versions of NetBeans (14,13,12.6, etc)
   
   
   ### Are you willing to submit a pull request?
   
   Yes
   
   ### Code of Conduct
   
   Yes


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] haidubogdan commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
haidubogdan commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1321056835

   I found also a documentation here:
   
   https://netbeans.apache.org/tutorials/nbm-nbi.html
   
   you create a conf file in nbproject - {conf_name}.conf
   
   and in ``project.properties`` you add this config line
   ```
   app.conf=nbproject/{conf_name}.conf
   ```
   I think it might be necessary to add the following lines in a *.conf file also, besides the **default_options** setting
   
   ```
   default_userdir="${DEFAULT_USERDIR_ROOT}/dev"
   default_cachedir="${DEFAULT_CACHEDIR_ROOT}/dev"
   ```
   
   On a clean rebuild and platform export all these options will be set in the ``application_name/etc/application_name.conf`` file


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] tmulle closed issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
tmulle closed issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"
URL: https://github.com/apache/netbeans/issues/4242


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] tmulle commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
tmulle commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1325614080

   @haidubogdan  So, I found out the solution for Maven builds after doing some digging around with your information as a guide.
   
   I found this old article: https://stackoverflow.com/questions/6558551/where-should-a-custom-netbeans-platform-conf-file-be-so-that-maven-finds-it
   
   Which someone asked the same question I did..Unfortunately, the Blog post mentioned written by Geertjan isn't available:
   http://blogs.oracle.com/geertjan/entry/nimbus_look_and_feel_for
   
   I found out for a Maven build you can add parameters to the `nbm-maven-plugin` and specify all sorts of configuration params, one of them being the `etc/*.conf` file you want to use.
   
   I added this config to my APP maven module and adding the information to my new conf file it worked with JDK17+:
   
   `default_options="--branding snapshotanalyzer -J-XX:+UseStringDeduplication -J-Xss2m  -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true -J-Dplugin.manager.check.updates=false -J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes  -J--add-opens=java.base/[java.net](http://java.net/)=ALL-UNNAMED -J--add-opens=java.base/java.lang.ref=ALL-UNNAMED -J--add-opens=java.base/java.lang=ALL-UNNAMED -J--add-opens=java.base/java.security=ALL-UNNAMED -J--add-opens=java.base/java.util=ALL-UNNAMED -J--add-opens=java.base/java.nio=ALL-UNNAMED -J--add-exports=java.base/sun.reflect.annotation=ALL-UNNAMED -J--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.text=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing=ALL-UNNAMED -J--add-opens=java.desktop/java.awt=ALL-UNNAMED -J--add-op
 ens=java.desktop/java.awt.event=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.plaf.synth=ALL-UNNAMED -J--add-opens=java.desktop/com.sun.java.swing.plaf.gtk=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.shell=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.im=ALL-UNNAMED -J--add-exports=java.desktop/sun.awt=ALL-UNNAMED -J--add-exports=java.desktop/java.awt.peer=ALL-UNNAMED -J--add-exports=java.desktop/com.sun.beans.editors=ALL-UNNAMED -J--add-exports=java.desktop/sun.swing=ALL-UNNAMED -J--add-exports=java.desktop/sun.awt.im=ALL-UNNAMED -J--add-exports=java.desktop/com.sun.java.swing.plaf.motif=ALL-UNNAMED -J--add-exports=java.desktop/com.apple.eio=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED -J--add-opens=jdk.c
 ompiler/com.sun.tools.javac.jvm=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED -J--add-exports=jdk.compiler/co
 m.sun.tools.javac.processing=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED -J--add-modules=jdk.jshell -J--add-opens=jdk.jshell/jdk.jshell=ALL-UNNAMED -J--add-exports=jdk.jdeps/com.sun.tools.classfile=ALL-UNNAMED -J--add-exports=jdk.jdeps/com.sun.tools.javap=ALL-UNNAMED -J--add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED -J--add-exports=java.management/sun.management=ALL-UNNAMED -J-XX:+IgnoreUnrecognizedVMOptions`
   
   Plugin config:
   
   ```<plugin>
                   <groupId>org.apache.netbeans.utilities</groupId>
                   <artifactId>nbm-maven-plugin</artifactId>
                   <configuration>
                       <etcConfFile>src/main/resources/myConf.conf</etcConfFile>
                   </configuration>
               </plugin>
   ```
   
   After rebuilding the project I saw the new settings in my `/etc/snapshotanalyzer.conf` file and I no longer got the warnings or error and all my to-components opened properly
   
   
   Hope this helps!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] mbien commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
mbien commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1159573455

   you have to give programs permission to access JDK internals by setting JVM flags. JDK 15 was the last JDK which allowed to run things without setting those exceptions. (it will print warnings)
   https://openjdk.org/jeps/396
   
   here are some lists of flags which would be needed to run the full IDE, platform apps won't need everything:
   https://github.com/apache/netbeans/tree/master/nbbuild/jms-config


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] haidubogdan commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
haidubogdan commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1320924715

   I had the same problem.
   
   You can concatenate the string from netbeans_default_options 
   to default_options="--branding snapshotanalyzer"
   
   ```
   default_options="--branding snapshotanalyzer -J-XX:+UseStringDeduplication -J-Xss2m  -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true -J-Dplugin.manager.check.updates=false -J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes  -J--add-opens=java.base/java.net=ALL-UNNAMED -J--add-opens=java.base/java.lang.ref=ALL-UNNAMED -J--add-opens=java.base/java.lang=ALL-UNNAMED -J--add-opens=java.base/java.security=ALL-UNNAMED -J--add-opens=java.base/java.util=ALL-UNNAMED -J--add-opens=java.base/java.nio=ALL-UNNAMED -J--add-exports=java.base/sun.reflect.annotation=ALL-UNNAMED -J--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.text=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing=ALL-UNNAMED -J--add-opens=java.desktop/java.awt=ALL-UNNAMED -J--add-opens=java.desktop/java
 .awt.event=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.plaf.synth=ALL-UNNAMED -J--add-opens=java.desktop/com.sun.java.swing.plaf.gtk=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.shell=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.im=ALL-UNNAMED -J--add-exports=java.desktop/sun.awt=ALL-UNNAMED -J--add-exports=java.desktop/java.awt.peer=ALL-UNNAMED -J--add-exports=java.desktop/com.sun.beans.editors=ALL-UNNAMED -J--add-exports=java.desktop/sun.swing=ALL-UNNAMED -J--add-exports=java.desktop/sun.awt.im=ALL-UNNAMED -J--add-exports=java.desktop/com.sun.java.swing.plaf.motif=ALL-UNNAMED -J--add-exports=java.desktop/com.apple.eio=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools
 .javac.jvm=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.pro
 cessing=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED -J--add-modules=jdk.jshell -J--add-opens=jdk.jshell/jdk.jshell=ALL-UNNAMED -J--add-exports=jdk.jdeps/com.sun.tools.classfile=ALL-UNNAMED -J--add-exports=jdk.jdeps/com.sun.tools.javap=ALL-UNNAMED -J--add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED -J--add-exports=java.management/sun.management=ALL-UNNAMED -J-XX:+IgnoreUnrecognizedVMOptions"
   ```
   
   It worked for me :) 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] tmulle commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
tmulle commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1334017335

   We can close this issue since I found the solution in my last reply.
   Thanks to all!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] tmulle commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
tmulle commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1300693050

   @mbien Thanks for the list of modules to add.
   
   It's been awhile and I was just wondering, how do I set those options in my project so that when the installers and application is built all of those additional module command line parameters get into the /etc/myapplication.conf file automatically? I'm hoping I don't have to manually add those parameters after each build.
   
   If I look in the /etc/netbeans.conf of my IDE I see an entry like this:
   ```
   netbeans_default_options="-J-XX:+UseStringDeduplication -J-Xss2m  -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true -J-Dplugin.manager.check.updates=false -J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes  -J--add-opens=java.base/java.net=ALL-UNNAMED -J--add-opens=java.base/java.lang.ref=ALL-UNNAMED -J--add-opens=java.base/java.lang=ALL-UNNAMED -J--add-opens=java.base/java.security=ALL-UNNAMED -J--add-opens=java.base/java.util=ALL-UNNAMED -J--add-opens=java.base/java.nio=ALL-UNNAMED -J--add-exports=java.base/sun.reflect.annotation=ALL-UNNAMED -J--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.text=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing=ALL-UNNAMED -J--add-opens=java.desktop/java.awt=ALL-UNNAMED -J--add-opens=java.desktop/java.awt.event=ALL-UNNA
 MED -J--add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED -J--add-opens=java.desktop/javax.swing.plaf.synth=ALL-UNNAMED -J--add-opens=java.desktop/com.sun.java.swing.plaf.gtk=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.shell=ALL-UNNAMED -J--add-opens=java.desktop/sun.awt.im=ALL-UNNAMED -J--add-exports=java.desktop/sun.awt=ALL-UNNAMED -J--add-exports=java.desktop/java.awt.peer=ALL-UNNAMED -J--add-exports=java.desktop/com.sun.beans.editors=ALL-UNNAMED -J--add-exports=java.desktop/sun.swing=ALL-UNNAMED -J--add-exports=java.desktop/sun.awt.im=ALL-UNNAMED -J--add-exports=java.desktop/com.sun.java.swing.plaf.motif=ALL-UNNAMED -J--add-exports=java.desktop/com.apple.eio=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNA
 MED -J--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED -J--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED
  -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED -J--add-modules=jdk.jshell -J--add-opens=jdk.jshell/jdk.jshell=ALL-UNNAMED -J--add-exports=jdk.jdeps/com.sun.tools.classfile=ALL-UNNAMED -J--add-exports=jdk.jdeps/com.sun.tools.javap=ALL-UNNAMED -J--add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED -J--add-exports=java.management/sun.management=ALL-UNNAMED -J-XX:+IgnoreUnrecognizedVMOptions"
   ```
   
   When I look in the generated /etc/snapshotanalyzer.conf of my NetBeans platform application this is all I have in that file:
   ```
   
   default_userdir="${DEFAULT_USERDIR_ROOT}/dev"
   default_cachedir="${DEFAULT_CACHEDIR_ROOT}/dev"
   
   # options used by the launcher by default, can be overridden by explicit
   # command line switches
   default_options="--branding snapshotanalyzer"
   # for development purposes you may wish to append: -J-Dnetbeans.logger.console=true -J-ea
   
   # default location of JDK/JRE, can be overridden by using --jdkhome <dir> switch
   #jdkhome="/path/to/jdk"
   
   # clusters' paths separated by path.separator (semicolon on Windows, colon on Unices)
   #extra_clusters=
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] tmulle commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
tmulle commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1159577823

   Great! How/Where do I add those flags? Do I add them in the <application_name>.conf in the etc folder of the generated application?
   
   Or can I add them in my project and rebuild so I don’t have to manually add them on each compile?
   
   
   
   > On Jun 18, 2022, at 6:11 PM, Michael Bien ***@***.***> wrote:
   > 
   > 
   > you have to give programs permission to access JDK internals by setting JVM flags. JDK 15 was the last JDK which allowed to run things without setting those exceptions. (it will print warnings)
   > https://openjdk.org/jeps/396 <https://openjdk.org/jeps/396>
   > here are some lists of flags which would be needed to run the full IDE, platform apps won't need everything:
   > https://github.com/apache/netbeans/tree/master/nbbuild/jms-config <https://github.com/apache/netbeans/tree/master/nbbuild/jms-config>
   > —
   > Reply to this email directly, view it on GitHub <https://github.com/apache/netbeans/issues/4242#issuecomment-1159573455>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABHRNUTZ5VYIE2HE7BZCZU3VPZCQNANCNFSM5ZFCHVYQ>.
   > You are receiving this because you authored the thread.
   > 
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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


[GitHub] [netbeans] mbien commented on issue #4242: JDK17 - Previous Platform Applications fail with module java.base does not "opens java.security" to unnamed module and module java.desktop does not "opens javax.swing.text"

Posted by GitBox <gi...@apache.org>.
mbien commented on issue #4242:
URL: https://github.com/apache/netbeans/issues/4242#issuecomment-1159581359

   everywhere basically. JVMs which run your junit tests need them and also in the conf of the application so that the launcher can set them.
   
   lets say you want to configure the surefire maven plugin for tests:
    ```xml
               <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-surefire-plugin</artifactId>
                   <version>3.0.0-M5</version>
                   <configuration>
                       <argLine>
                           --add-opens=java.base/java.net=ALL-UNNAMED
                           --add-opens=java.base/java.lang.ref=ALL-UNNAMED 
           ... add what you need
                       </argLine>
                   </configuration>
               </plugin>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

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