[jira] [Commented] (NETBEANS-3002) NullPointerExceptions during PHPStan inspection
[ https://issues.apache.org/jira/browse/NETBEANS-3002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16958571#comment-16958571 ] Czukowski commented on NETBEANS-3002: - Yes, I think it warns about an unused ignore pattern in the configuration file, which is not an error in any of the inspected sources, but rather in the configuration itself, so there's no file name or error lines and column numbers. > NullPointerExceptions during PHPStan inspection > --- > > Key: NETBEANS-3002 > URL: https://issues.apache.org/jira/browse/NETBEANS-3002 > Project: NetBeans > Issue Type: Bug > Components: php - Code Analysis >Affects Versions: 11.0, 11.1 > Environment: Windows 10 >Reporter: Czukowski >Assignee: Junichi Yamamoto >Priority: Major > Attachments: PHPStanException.zip > > > PHPStan code analysis support reports NullPointerExceptions at some > occasions. When the exception occurs, the Inspect dialog window is not closed > on its own. > I've been able to reproduce it using the uploaded sample project. Run > {{composer install}}, then configure NetBeans to use PHPStan from > {{vendor/bin}} and the configuration from {{phpstan.neon}} file in the > project root. > The configuration file contains {{ignoreErrors}} section with a pattern to > ignore known errors. The exception seems to depend on whether this pattern is > there or not (to disable, comment the line with {{#}}). > To reproduce, select the {{app}} folder and run PHPStan inspection with the > scope: Current folder (app). > With the setup above I've encountered two types of the stack traces: > *Without ignore pattern (commented line)* > Output: > {code} > "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" > "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" > "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" > "C:\Workspace\Test\PHPStanException\app" > > > > > > > > > > > Done. > {code} > Stack trace: > {code} > java.lang.NullPointerException > at org.netbeans.modules.php.analysis.util.Mappers.map(Mappers.java:54) > at > org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.doAnalyze(PHPStanAnalyzerImpl.java:140) > at > org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.analyze(PHPStanAnalyzerImpl.java:92) > at > org.netbeans.modules.analysis.RunAnalysis$1$1.doRunAnalyzer(RunAnalysis.java:186) > at > org.netbeans.modules.analysis.RunAnalysis$1$1.run(RunAnalysis.java:142) > at > org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) > at > org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) > at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278) > [catch] at > org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033) > {code} > *With ignore pattern* > Output: > {code} > "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" > "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" > "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" > "C:\Workspace\Test\PHPStanException\app" > > > > > > > > > > > > > > Done. > {code} > Stack trace: > {code} > java.lang.NullPointerException > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.sanitizeFileName(PHPStanReportParser.java:199) > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.getCurrentFile(PHPStanReportParser.java:180) > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.processFileStart(PHPStanReportParser.java:133) > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.startElement(PHPStanReportParser.java:114) > at > java.xml/com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:510) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:1397) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2710) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:605) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:534) > at > java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:888) > at > java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:824) > at > java.xml/co
[jira] [Commented] (NETBEANS-3002) NullPointerExceptions during PHPStan inspection
[ https://issues.apache.org/jira/browse/NETBEANS-3002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16958552#comment-16958552 ] Junichi Yamamoto commented on NETBEANS-3002: It seems that the values of name attributes are changed. old version (0.10.5): {code:xml} "/usr/bin/php" "/home/junichi11/phars/phpstan.phar" "analyse" "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" "--level=7" "/home/junichi11/Downloads/PHPStanException/app" {code} > NullPointerExceptions during PHPStan inspection > --- > > Key: NETBEANS-3002 > URL: https://issues.apache.org/jira/browse/NETBEANS-3002 > Project: NetBeans > Issue Type: Bug > Components: php - Code Analysis >Affects Versions: 11.0, 11.1 > Environment: Windows 10 >Reporter: Czukowski >Assignee: Junichi Yamamoto >Priority: Major > Attachments: PHPStanException.zip > > > PHPStan code analysis support reports NullPointerExceptions at some > occasions. When the exception occurs, the Inspect dialog window is not closed > on its own. > I've been able to reproduce it using the uploaded sample project. Run > {{composer install}}, then configure NetBeans to use PHPStan from > {{vendor/bin}} and the configuration from {{phpstan.neon}} file in the > project root. > The configuration file contains {{ignoreErrors}} section with a pattern to > ignore known errors. The exception seems to depend on whether this pattern is > there or not (to disable, comment the line with {{#}}). > To reproduce, select the {{app}} folder and run PHPStan inspection with the > scope: Current folder (app). > With the setup above I've encountered two types of the stack traces: > *Without ignore pattern (commented line)* > Output: > {code} > "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" > "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" > "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" > "C:\Workspace\Test\PHPStanException\app" > > > > > > > > > > > Done. > {code} > Stack trace: > {code} > java.lang.NullPointerException > at org.netbeans.modules.php.analysis.util.Mappers.map(Mappers.java:54) > at > org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.doAnalyze(PHPStanAnalyzerImpl.java:140) > at > org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.analyze(PHPStanAnalyzerImpl.java:92) > at > org.netbeans.modules.analysis.RunAnalysis$1$1.doRunAnalyzer(RunAnalysis.java:186) > at > org.netbeans.modules.analysis.RunAnalysis$1$1.run(RunAnalysis.java:142) > at > org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) > at > org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) > at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278) > [catch] at > org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033) > {code} > *With ignore pattern* > Output: > {code} > "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" > "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" > "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" > "C:\Workspace\Test\PHPStanException\app" > > > > > > > > > > > > > > Done. > {code} > Stack trace: > {code} > java.lang.NullPointerException > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.sanitizeFileName(PHPStanReportParser.java:199) > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.getCurrentFile(PHPStanReportParser.java:180) > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.processFileStart(PHPStanReportParser.java:133) > at > org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.startElement(PHPStanReportParser.java:114) > at > java.xml/com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:510) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:1397) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2710) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:605) > at > java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:534) > at > java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:888) > at > java.xml/com.sun.org.apache.xerces.int
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 941
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 120e604 Automated site publishing by Jenkins build 941 120e604 is described below commit 120e604617aa58ac41a02de518cbe9681357ffa8 Author: jenkins AuthorDate: Wed Oct 23 21:30:17 2019 + Automated site publishing by Jenkins build 941 --- content/download/nb112/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index f40ddcc..9b5ea26 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -152,7 +152,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. -https://openjdk.java.net/jeps/12";>JEP 12 provides for a preview language or VM feature, which "is a new feature of the Java SE Platform that is fully specified, fully implemented, and yet impermanent. It is available in a JDK feature release to provoke developer feedback based on real world use; this may lead to it becoming permanent in a future Java SE Platform. +https://openjdk.java.net/jeps/12";>JEP 12 provides for a preview language or VM feature, which "is a new feature of the Java SE Platform that is fully specified, fully implemented, and yet impermanent. It is available in a JDK feature release to provoke developer feedback based on real world use; this may lead to it becoming permanent in a future Java SE Platform". - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update index.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 9604249 Update index.asciidoc 9604249 is described below commit 96042492996df91f4ed4b528e70a89211d5caf9d Author: Geertjan Wielenga AuthorDate: Wed Oct 23 23:28:04 2019 +0200 Update index.asciidoc --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 5dd841d..95ff367 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -56,7 +56,7 @@ image::jdk13-yield.png[role="left", link="jdk13-yield.png"] image::jdk13-textblock.png[role="left", link="jdk13-textblock.png"] -- -TIP: link:https://openjdk.java.net/jeps/12[JEP 12] provides for a preview language or VM feature, which "is a new feature of the Java SE Platform that is fully specified, fully implemented, and yet impermanent. It is available in a JDK feature release to provoke developer feedback based on real world use; this may lead to it becoming permanent in a future Java SE Platform. +TIP: link:https://openjdk.java.net/jeps/12[JEP 12] provides for a preview language or VM feature, which "is a new feature of the Java SE Platform that is fully specified, fully implemented, and yet impermanent. It is available in a JDK feature release to provoke developer feedback based on real world use; this may lead to it becoming permanent in a future Java SE Platform". Preview features can only be used if the Java compiler's "--enable-preview" flag is set, as shown below for Maven. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 939
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 19494fa Automated site publishing by Jenkins build 939 19494fa is described below commit 19494fa7fe6be2b2f697d319c561447cb8ebe538 Author: jenkins AuthorDate: Wed Oct 23 21:25:19 2019 + Automated site publishing by Jenkins build 939 --- content/download/nb112/index.html | 32 1 file changed, 32 insertions(+) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 9ff07d8..f40ddcc 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -145,6 +145,38 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. + + + + + + + +https://openjdk.java.net/jeps/12";>JEP 12 provides for a preview language or VM feature, which "is a new feature of the Java SE Platform that is fully specified, fully implemented, and yet impermanent. It is available in a JDK feature release to provoke developer feedback based on real world use; this may lead to it becoming permanent in a future Java SE Platform. + + + + + +Preview features can only be used if the Java compiler’s "--enable-preview" flag is set, as shown below for Maven. + + + ++ + + PHP - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists+ ++ +maven-compiler-plugin +3.8.0 ++ ++ +--enable-preview +
[netbeans-website] branch master updated: Update index.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new ad02ea9 Update index.asciidoc ad02ea9 is described below commit ad02ea972e41517eab9bface31383aa650d29844 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 23:20:48 2019 +0200 Update index.asciidoc --- .../src/content/download/nb112/index.asciidoc | 21 + 1 file changed, 21 insertions(+) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index c757178..5dd841d 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -56,6 +56,27 @@ image::jdk13-yield.png[role="left", link="jdk13-yield.png"] image::jdk13-textblock.png[role="left", link="jdk13-textblock.png"] -- +TIP: link:https://openjdk.java.net/jeps/12[JEP 12] provides for a preview language or VM feature, which "is a new feature of the Java SE Platform that is fully specified, fully implemented, and yet impermanent. It is available in a JDK feature release to provoke developer feedback based on real world use; this may lead to it becoming permanent in a future Java SE Platform. + +Preview features can only be used if the Java compiler's "--enable-preview" flag is set, as shown below for Maven. + +[source,xml] + + + + + maven-compiler-plugin + 3.8.0 + + +--enable-preview + + + + + + + === PHP The highlights of enhancements in the PHP area are focused on support for PHP 7.4. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 937
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 5eaf951 Automated site publishing by Jenkins build 937 5eaf951 is described below commit 5eaf9517177b357dd373827b23a5bc886e459017 Author: jenkins AuthorDate: Wed Oct 23 21:12:36 2019 + Automated site publishing by Jenkins build 937 --- content/download/nb112/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index ac6de7c..9ff07d8 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -120,7 +120,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. - + @@ -136,7 +136,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. - + - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update index.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new e2fccb1 Update index.asciidoc e2fccb1 is described below commit e2fccb108e1ded9d8b8ac50d5f49bcd882784f09 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 23:10:04 2019 +0200 Update index.asciidoc --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 6e0f21c..c757178 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -43,12 +43,14 @@ TIP: The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. Th The highlights of enhancements in the Java area are focused on support for JDK 13. - JEP 354: Switch Expressions (Preview Feature): link:https://openjdk.java.net/jeps/354[https://openjdk.java.net/jeps/354] + [.feature] -- image::jdk13-yield.png[role="left", link="jdk13-yield.png"] -- - JEP 355: Text Blocks (Preview Feature): link:https://openjdk.java.net/jeps/355[https://openjdk.java.net/jeps/355] + [.feature] -- image::jdk13-textblock.png[role="left", link="jdk13-textblock.png"] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 935
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 1bca7ee Automated site publishing by Jenkins build 935 1bca7ee is described below commit 1bca7eea96ebd69b9a7d90697b39b3981dad625a Author: jenkins AuthorDate: Wed Oct 23 21:08:02 2019 + Automated site publishing by Jenkins build 935 --- content/download/nb112/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 491fe2e..ac6de7c 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -120,7 +120,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. - + @@ -136,7 +136,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. - + @@ -184,7 +184,7 @@ PHP RFC: Numeric Literal Separator: https://wiki.php.net/rfc/numeric_li -Further details are provided https://cwiki.apache.org/confluence/display/NETBEANS/11.2+Feature%3A+PHP";>here. +Further details on new support for PHP 7.4 features are provided https://cwiki.apache.org/confluence/display/NETBEANS/11.2+Feature%3A+PHP";>here. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-3285) cleanup bootstrap class path..
[ https://issues.apache.org/jira/browse/NETBEANS-3285?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] ASF GitHub Bot updated NETBEANS-3285: - Labels: pull-request-available (was: ) > cleanup bootstrap class path.. > -- > > Key: NETBEANS-3285 > URL: https://issues.apache.org/jira/browse/NETBEANS-3285 > Project: NetBeans > Issue Type: Improvement >Reporter: Brad Walker >Assignee: Brad Walker >Priority: Major > Labels: pull-request-available > > There are a lot of places where we see the following warning.. > > > {code:java} > ... > up-to-date: > compile: > [nb-javac] Compiling 31 source files to > /home/bwalker/src/netbeans/platform/openide.util.lookup/build/classes > [repeat] warning: [options] bootstrap class path not set in conjunction with > -source 1.7 > [repeat] > /home/bwalker/src/netbeans/platform/openide.util.lookup/src/org/openide/util/lookup/ProxyLookup.java:112: > warning: [rawtypes] found raw type: R > [repeat] Collection> arr; > [repeat] ^ > ... > {code} > > The warning is telling us that we are compiling for Java 1.7 source. Yet, we > are using a different *_rt.jar._* > This can be a problem going forward. > A really good Oracle blog, from a friend, about this is > [here|https://blogs.oracle.com/darcy/new-javac-warning-for-setting-an-older-source-without-bootclasspath] > There are some more places to clean this up. But, I decided to stop here to > make the code review easier. > -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update index.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new f9e7bf4 Update index.asciidoc f9e7bf4 is described below commit f9e7bf448c6ba0f7384a7cccee8ac5702e88daf2 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 23:04:15 2019 +0200 Update index.asciidoc --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index bb551e1..6e0f21c 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -43,14 +43,12 @@ TIP: The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. Th The highlights of enhancements in the Java area are focused on support for JDK 13. - JEP 354: Switch Expressions (Preview Feature): link:https://openjdk.java.net/jeps/354[https://openjdk.java.net/jeps/354] - [.feature] -- image::jdk13-yield.png[role="left", link="jdk13-yield.png"] -- - JEP 355: Text Blocks (Preview Feature): link:https://openjdk.java.net/jeps/355[https://openjdk.java.net/jeps/355] - [.feature] -- image::jdk13-textblock.png[role="left", link="jdk13-textblock.png"] @@ -74,7 +72,7 @@ Highlights of PHP 7.4 integration are listed below. PHP RFC: Numeric Literal Separator: link:https://wiki.php.net/rfc/numeric_literal_separator[https://wiki.php.net/rfc/numeric_literal_separator] - PHP RFC: New custom object serialization mechanism: link:https://wiki.php.net/rfc/custom_object_serialization[https://wiki.php.net/rfc/custom_object_serialization] -Further details are provided link:https://cwiki.apache.org/confluence/display/NETBEANS/11.2+Feature%3A+PHP[here]. +Further details on new support for PHP 7.4 features are provided link:https://cwiki.apache.org/confluence/display/NETBEANS/11.2+Feature%3A+PHP[here]. == Enhancements and Fixes - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 933
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new c98c290 Automated site publishing by Jenkins build 933 c98c290 is described below commit c98c2905d991a6d3e3541e8a73108f5e7dfaa233 Author: jenkins AuthorDate: Wed Oct 23 20:58:58 2019 + Automated site publishing by Jenkins build 933 --- content/download/nb112/index.html | 27 ++- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 751a9b7..491fe2e 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -120,9 +120,13 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. - + - + + + + + @@ -132,9 +136,13 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. - + - + + + + + @@ -143,9 +151,13 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. The highlights of enhancements in the PHP area are focused on support for PHP 7.4. - + - + + + + + @@ -209,9 +221,6 @@ PHP RFC: Numeric Literal Separator: https://wiki.php.net/rfc/numeric_li Amazon-related updates: https://github.com/apache/netbeans/pull/1312";>https://github.com/apache/netbeans/pull/1312 -LSP server for Java: https://github.com/apache/netbeans/pull/926";>https://github.com/apache/netbeans/pull/926 - - HTML5 attribute syntax support: https://github.com/apache/netbeans/pull/1380";>https://github.com/apache/netbeans/pull/1380 - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update index.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new c103fcb Update index.asciidoc c103fcb is described below commit c103fcb1c313040ca945581bbcb36adfe1caecf8 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 22:56:40 2019 +0200 Update index.asciidoc --- .../src/content/download/nb112/index.asciidoc| 20 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index c707644..bb551e1 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -44,21 +44,26 @@ The highlights of enhancements in the Java area are focused on support for JDK 1 - JEP 354: Switch Expressions (Preview Feature): link:https://openjdk.java.net/jeps/354[https://openjdk.java.net/jeps/354] -image::jdk13-yield.png[] - - +[.feature] +-- +image::jdk13-yield.png[role="left", link="jdk13-yield.png"] +-- - JEP 355: Text Blocks (Preview Feature): link:https://openjdk.java.net/jeps/355[https://openjdk.java.net/jeps/355] -image::jdk13-textblock.png[] - - +[.feature] +-- +image::jdk13-textblock.png[role="left", link="jdk13-textblock.png"] +-- === PHP The highlights of enhancements in the PHP area are focused on support for PHP 7.4. -image::php-7.4.png[] +[.feature] +-- +image::php-7.4.png[role="left", link="php-7.4.png"] +-- Highlights of PHP 7.4 integration are listed below. @@ -85,7 +90,6 @@ The highlights of the enhancements and fixes are listed below. - Upgraded Payara support to Payara Platform 5.193: link:https://github.com/apache/netbeans/pull/1470[https://github.com/apache/netbeans/pull/1470] - Various Gradle enhancements, include being able to read JVM arguments, such as the JDK's "--enable-preview": link:https://github.com/apache/netbeans/pulls?q=is%3Apr+label%3AGradle+is%3Aclosed[https://github.com/apache/netbeans/pulls?q=is%3Apr+label%3AGradle+is%3Aclosed] - Amazon-related updates: link:https://github.com/apache/netbeans/pull/1312[https://github.com/apache/netbeans/pull/1312] -- LSP server for Java: link:https://github.com/apache/netbeans/pull/926[https://github.com/apache/netbeans/pull/926] - HTML5 attribute syntax support: link:https://github.com/apache/netbeans/pull/1380[https://github.com/apache/netbeans/pull/1380] - Cleaned up Welcome Screen no longer refers to Oracle backends: link:https://github.com/apache/netbeans/pull/1457[https://github.com/apache/netbeans/pull/1457] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 931
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 2814bd6 Automated site publishing by Jenkins build 931 2814bd6 is described below commit 2814bd61f8969771f07a44b1e1f177556c7700dc Author: jenkins AuthorDate: Wed Oct 23 20:51:27 2019 + Automated site publishing by Jenkins build 931 --- content/download/nb112/index.html | 11 +++ content/download/nb112/php-7.4.png | Bin 0 -> 79987 bytes 2 files changed, 11 insertions(+) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 468928b..751a9b7 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -143,6 +143,14 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. The highlights of enhancements in the PHP area are focused on support for PHP 7.4. + + + + + + +Highlights of PHP 7.4 integration are listed below. + @@ -163,6 +171,9 @@ PHP RFC: Numeric Literal Separator: https://wiki.php.net/rfc/numeric_li + +Further details are provided https://cwiki.apache.org/confluence/display/NETBEANS/11.2+Feature%3A+PHP";>here. + diff --git a/content/download/nb112/php-7.4.png b/content/download/nb112/php-7.4.png new file mode 100644 index 000..92229c6 Binary files /dev/null and b/content/download/nb112/php-7.4.png differ - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: php.74 image
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new f80d23c php.74 image f80d23c is described below commit f80d23c0f2e258caee86e4433e28e553f669bd3b Author: Geertjan Wielenga AuthorDate: Wed Oct 23 22:49:25 2019 +0200 php.74 image --- .../src/content/download/nb112/php-7.4.png | Bin 0 -> 79987 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/netbeans.apache.org/src/content/download/nb112/php-7.4.png b/netbeans.apache.org/src/content/download/nb112/php-7.4.png new file mode 100644 index 000..92229c6 Binary files /dev/null and b/netbeans.apache.org/src/content/download/nb112/php-7.4.png differ - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update index.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 1bfad2f Update index.asciidoc 1bfad2f is described below commit 1bfad2f29bab4350a0e3d33a686febbc64920ee7 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 22:48:59 2019 +0200 Update index.asciidoc --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index fbfc2f6..c707644 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -45,16 +45,23 @@ The highlights of enhancements in the Java area are focused on support for JDK 1 - JEP 354: Switch Expressions (Preview Feature): link:https://openjdk.java.net/jeps/354[https://openjdk.java.net/jeps/354] image::jdk13-yield.png[] + + - JEP 355: Text Blocks (Preview Feature): link:https://openjdk.java.net/jeps/355[https://openjdk.java.net/jeps/355] image::jdk13-textblock.png[] - + + === PHP The highlights of enhancements in the PHP area are focused on support for PHP 7.4. +image::php-7.4.png[] + +Highlights of PHP 7.4 integration are listed below. + - PHP RFC: Typed Properties 2.0: link:https://wiki.php.net/rfc/typed_properties_v2[https://wiki.php.net/rfc/typed_properties_v2] - PHP RFC: Null Coalescing Assignment Operator: link:https://wiki.php.net/rfc/null_coalesce_equal_operator[https://wiki.php.net/rfc/null_coalesce_equal_operator] - PHP RFC: Spread Operator in Array Expression: link:https://wiki.php.net/rfc/spread_operator_for_array[https://wiki.php.net/rfc/spread_operator_for_array] @@ -62,6 +69,8 @@ The highlights of enhancements in the PHP area are focused on support for PHP 7. PHP RFC: Numeric Literal Separator: link:https://wiki.php.net/rfc/numeric_literal_separator[https://wiki.php.net/rfc/numeric_literal_separator] - PHP RFC: New custom object serialization mechanism: link:https://wiki.php.net/rfc/custom_object_serialization[https://wiki.php.net/rfc/custom_object_serialization] +Further details are provided link:https://cwiki.apache.org/confluence/display/NETBEANS/11.2+Feature%3A+PHP[here]. + == Enhancements and Fixes Closed issues for 11.2: link:https://github.com/apache/netbeans/milestone/3?closed=1[https://github.com/apache/netbeans/milestone/3?closed=1] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 929
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 45a5ac8 Automated site publishing by Jenkins build 929 45a5ac8 is described below commit 45a5ac83828b3827b88de50b2045f13ce17f085e Author: jenkins AuthorDate: Wed Oct 23 20:33:07 2019 + Automated site publishing by Jenkins build 929 --- content/download/nb112/index.html | 9 + content/download/nb112/jdk13-yield.png | Bin 0 -> 47088 bytes 2 files changed, 9 insertions(+) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index fe77e60..468928b 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -118,6 +118,15 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. JEP 354: Switch Expressions (Preview Feature): https://openjdk.java.net/jeps/354";>https://openjdk.java.net/jeps/354 + + + + + + + + + JEP 355: Text Blocks (Preview Feature): https://openjdk.java.net/jeps/355";>https://openjdk.java.net/jeps/355 diff --git a/content/download/nb112/jdk13-yield.png b/content/download/nb112/jdk13-yield.png new file mode 100644 index 000..3fcceb9 Binary files /dev/null and b/content/download/nb112/jdk13-yield.png differ - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: adding yield
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 323a5dd adding yield 323a5dd is described below commit 323a5ddf3431fca50b07a008bc98108e3063a6cf Author: Geertjan Wielenga AuthorDate: Wed Oct 23 22:29:14 2019 +0200 adding yield --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 4 1 file changed, 4 insertions(+) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 7fe2ec5..fbfc2f6 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -43,10 +43,14 @@ TIP: The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. Th The highlights of enhancements in the Java area are focused on support for JDK 13. - JEP 354: Switch Expressions (Preview Feature): link:https://openjdk.java.net/jeps/354[https://openjdk.java.net/jeps/354] + +image::jdk13-yield.png[] + - JEP 355: Text Blocks (Preview Feature): link:https://openjdk.java.net/jeps/355[https://openjdk.java.net/jeps/355] image::jdk13-textblock.png[] + === PHP The highlights of enhancements in the PHP area are focused on support for PHP 7.4. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: adding yield image
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 4115841 adding yield image 4115841 is described below commit 4115841eae32b8577bd5d31c433649f16528a0de Author: Geertjan Wielenga AuthorDate: Wed Oct 23 22:29:39 2019 +0200 adding yield image --- .../src/content/download/nb112/jdk13-yield.png | Bin 0 -> 47088 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/netbeans.apache.org/src/content/download/nb112/jdk13-yield.png b/netbeans.apache.org/src/content/download/nb112/jdk13-yield.png new file mode 100644 index 000..3fcceb9 Binary files /dev/null and b/netbeans.apache.org/src/content/download/nb112/jdk13-yield.png differ - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-3053) incorrect xml syntax highlighting (pom.xml)
[ https://issues.apache.org/jira/browse/NETBEANS-3053?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] collector1871 updated NETBEANS-3053: Priority: Minor (was: Trivial) > incorrect xml syntax highlighting (pom.xml) > --- > > Key: NETBEANS-3053 > URL: https://issues.apache.org/jira/browse/NETBEANS-3053 > Project: NetBeans > Issue Type: Bug > Components: editor - Options, java - Editor >Affects Versions: 11.0, 11.1 > Environment: Arch Linux, NetBeans 11.1 and 11.0, app has been > directly download from the site (NOT from the repositories) >Reporter: collector1871 >Priority: Minor > Attachments: attachment1.png, attachment2.png > > > Hello everyone, > I have very annoying problem with incorrect xml syntax highlighting (file > pom.xml), it looks like this:*!attachment1.png!* > basically this header tag is very unclear. I am afraid this issue > will appear in the future, for other syntax highlighting, so this is why I am > asking here. And also i would like to have pom.xml perfectly visible. > ... so what i am doing right now: Tools > Options > Fonts & Colors > > Language: XML > and I am channging "pi-content" > and this is temporary working, for example > *!attachment2.png!* > but the problem is that after NetBeans reastart, "pi-content" values are > again wrong (like in the first screenshot). > It looks like this problem is currently only with few syntax highlighting > values (other values are keeping saved and no issue). > Something like: 90% values are saved, 10% are reset to default after restart. > so my question is: how can I permanent change this syntax highlighting ? > Please also note that this is affecting only black themes : white themes are > working correctly (full xml syntax highlighting is working) -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Created] (NETBEANS-3285) cleanup bootstrap class path..
Brad Walker created NETBEANS-3285: - Summary: cleanup bootstrap class path.. Key: NETBEANS-3285 URL: https://issues.apache.org/jira/browse/NETBEANS-3285 Project: NetBeans Issue Type: Improvement Reporter: Brad Walker Assignee: Brad Walker There are a lot of places where we see the following warning.. {code:java} ... up-to-date: compile: [nb-javac] Compiling 31 source files to /home/bwalker/src/netbeans/platform/openide.util.lookup/build/classes [repeat] warning: [options] bootstrap class path not set in conjunction with -source 1.7 [repeat] /home/bwalker/src/netbeans/platform/openide.util.lookup/src/org/openide/util/lookup/ProxyLookup.java:112: warning: [rawtypes] found raw type: R [repeat] Collection> arr; [repeat] ^ ... {code} The warning is telling us that we are compiling for Java 1.7 source. Yet, we are using a different *_rt.jar._* This can be a problem going forward. A really good Oracle blog, from a friend, about this is [here|https://blogs.oracle.com/darcy/new-javac-warning-for-setting-an-older-source-without-bootclasspath] There are some more places to clean this up. But, I decided to stop here to make the code review easier. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3181) Exception while installing nb-javac
[ https://issues.apache.org/jira/browse/NETBEANS-3181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16958052#comment-16958052 ] Rick Hegarty commented on NETBEANS-3181: I also hit this issue with 11.1. This looks like a duplicate of NETBEANS-2552, I have verified that the issue is fixed with 11.2 beta 3. > Exception while installing nb-javac > --- > > Key: NETBEANS-3181 > URL: https://issues.apache.org/jira/browse/NETBEANS-3181 > Project: NetBeans > Issue Type: Bug > Components: java - Compiler >Affects Versions: 11.1 >Reporter: Fernando Montenegro >Priority: Minor > > This is a copy of the IDE log > --- > >Log Session: Sunday, September 29, 2019 11:31:04 PM EDT > >System Info: > Product Version = Apache NetBeans IDE 11.1 > Operating System= Windows 10 version 10.0 running on amd64 > Java; VM; Vendor= 1.8.0_212; Eclipse OpenJ9 VM openj9-0.14.2; > Eclipse OpenJ9 > Runtime = OpenJDK Runtime Environment 1.8.0_212-b04 > Java Home = C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre > System Locale; Encoding = en_US (nb); Cp1252 > Home Directory = C:\Users\fmontene > Current Directory = C:\Java\netbeans\bin > User Directory = C:\Users\fmontene\AppData\Roaming\NetBeans\11.1 > Cache Directory = > C:\Users\fmontene\AppData\Local\NetBeans\Cache\11.1 > Installation= C:\Java\netbeans\nb > C:\Java\netbeans\ergonomics > C:\Java\netbeans\ide > C:\Java\netbeans\extide > C:\Java\netbeans\java > C:\Java\netbeans\apisupport > C:\Java\netbeans\webcommon > C:\Java\netbeans\websvccommon > C:\Java\netbeans\enterprise > C:\Java\netbeans\profiler > C:\Java\netbeans\php > C:\Java\netbeans\harness > C:\Java\netbeans\groovy > C:\Java\netbeans\javafx > C:\Java\netbeans\platform > Boot & Ext. Classpath = C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\bin\compressedrefs\jclSC180\vm.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\se-service.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\rt.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\resources.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\jsse.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\charsets.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\jce.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\access-bridge-64.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\cldrdata.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\dnsns.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\dtfj.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\dtfjview.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\jaccess.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\localedata.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\nashorn.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\sunec.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\sunjce_provider.jar;C:\Program > > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\sunmscapi.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\sunpkcs11.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\traceformat.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\jre\lib\ext\zipfs.jar > Application Classpath = > C:\Java\netbeans\platform\lib\boot.jar;C:\Java\netbeans\platform\lib\org-openide-modules.jar;C:\Java\netbeans\platform\lib\org-openide-util-lookup.jar;C:\Java\netbeans\platform\lib\org-openide-util-ui.jar;C:\Java\netbeans\platform\lib\org-openide-util.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\lib\dt.jar;C:\Program > Files\AdoptOpenJDK\jdk-8.0.212.04-openj9\lib\tools.jar > Startup Classpath = > C:\Java\netbeans\platform\core\asm-all-5.0.1.jar;C:\Java\netbeans\platform\core\core-base.jar;C:\Java\netbeans\platform\core\core.jar;C:\Java\netbeans\platform\core\org-netbeans-libs-asm.jar;C:\Java\netbeans\platform\core\org-openide-filesystems-compat8.jar;C:\Java\netbeans\platform\core\org-openide-filesystems.jar;C:\Java\netbeans\nb\core\org
[jira] [Commented] (NETBEANS-3283) POM graph creation freezes NetBeans
[ https://issues.apache.org/jira/browse/NETBEANS-3283?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16958015#comment-16958015 ] Geertjan Wielenga commented on NETBEANS-3283: - I can reproduce your problem with this environment: Product Version: Apache NetBeans IDE 11.2 Java: 13; OpenJDK 64-Bit Server VM 13+33 Runtime: OpenJDK Runtime Environment 13+33 System: Mac OS X version 10.13.6 running on x86_64; UTF-8; en_NL (nb) User directory: /Users/geertjanwielenga/Library/Application Support/NetBeans/11.2-vc1 Cache directory: /Users/geertjanwielenga/Library/Caches/NetBeans/11.2-vc1 > POM graph creation freezes NetBeans > --- > > Key: NETBEANS-3283 > URL: https://issues.apache.org/jira/browse/NETBEANS-3283 > Project: NetBeans > Issue Type: Bug > Components: projects - Maven >Affects Versions: 11.2 >Reporter: Alessandro Falappa >Priority: Major > Attachments: nb-graph-bug-thread-dump.txt > > > NetBeans freezes when creating the graph of dependencies for a NetBeans > Plugin maven project. > Steps: > * Clone [https://github.com/AlexFalappa/nb-springboot.git] > * Open {{pom.xml}} file > * Click on _Show Graph_ > The JVM process running NetBeans consumes about 30-40% of CPU but the UI is > completely frozen with no other option than terminate NetBeans from the OS > process manager. > Took a stacktrace dump of the process (attached) but I am not sure how to > diagnose the problem. > The problematic part could be: > {code} > "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s > tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] >java.lang.Thread.State: RUNNABLE > at > java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.isThereFreeSpaceNonFixedSpace(FruchtermanReingoldLayout.java:351) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.relayoutNonFixed(FruchtermanReingoldLayout.java:391) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.doRelayoutNonFixed(FruchtermanReingoldLayout.java:371) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:117) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:69) > at > org.netbeans.api.visual.layout.SceneLayout$LayoutSceneListener.sceneValidated(SceneLayout.java:100) > at org.netbeans.api.visual.widget.Scene.validate(Scene.java:378) > at > org.netbeans.modules.java.graph.DependencyGraphScene.highlightDepth(DependencyGraphScene.java:691) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent.maxPathSpinnerStateChanged(DependencyGraphTopComponent.java:468) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent.access$1100(DependencyGraphTopComponent.java:97) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent$9.stateChanged(DependencyGraphTopComponent.java:431) > at > javax.swing.JSpinner.fireStateChanged(java.desktop@11.0.4/JSpinner.java:461) > at > javax.swing.JSpinner$ModelListener.stateChanged(java.desktop@11.0.4/JSpinner.java:388) > at > javax.swing.AbstractSpinnerModel.fireStateChanged(java.desktop@11.0.4/AbstractSpinnerModel.java:120) > at > javax.swing.SpinnerNumberModel.setMaximum(java.desktop@11.0.4/SpinnerNumberModel.java:278) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent$10$3.run(DependencyGraphTopComponent.java:636) > at > java.awt.event.InvocationEvent.dispatch(java.desktop@11.0.4/InvocationEvent.java:313) > at > java.awt.EventQueue.dispatchEventImpl(java.desktop@11.0.4/EventQueue.java:770) > at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:721) > at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:715) > at java.security.AccessController.doPrivileged(java.base@11.0.4/Native > Method) > at > java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.base@11.0.4/ProtectionDomain.java:85) > at > java.awt.EventQueue.dispatchEvent(java.desktop@11.0.4/EventQueue.java:740) > at > org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) > at > java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop@11.0.4/EventDispatchThread.java:203) > at > java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.4/EventDispatchThread.java:124) > at > java.awt.EventDispatchThread.pumpEventsForHierarchy(java.desktop@11.0.4/EventDispatchThread.java:113) > at > java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDi
[jira] [Created] (NETBEANS-3284) IllegalArgumentException: Key contains code point U+0000 opening Maven Projects
Laszlo Kishalmi created NETBEANS-3284: - Summary: IllegalArgumentException: Key contains code point U+ opening Maven Projects Key: NETBEANS-3284 URL: https://issues.apache.org/jira/browse/NETBEANS-3284 Project: NetBeans Issue Type: Bug Environment: Windows Reporter: Laszlo Kishalmi I open this new issue to collect several incarnation of this bug/feature. It seems Java changed how it is writing preferences on Windows between Java 8 and Java 9. This most probably triggers this issue when someone creates a Maven project under Java 8 and then tries to open it on Java 9 or later. The resolution is to empty the userdir where the preferences are being saved. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Resolved] (NETBEANS-3251) Netbeans 11.1 on JDK 11.0.5
[ https://issues.apache.org/jira/browse/NETBEANS-3251?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Laszlo Kishalmi resolved NETBEANS-3251. --- Resolution: Fixed Fixed by NETBEANS-3253. Users reported the fix is working fine. Let's mark this issue resolved. > Netbeans 11.1 on JDK 11.0.5 > --- > > Key: NETBEANS-3251 > URL: https://issues.apache.org/jira/browse/NETBEANS-3251 > Project: NetBeans > Issue Type: Bug >Affects Versions: 11.1 > Environment: Windows 10 >Reporter: Alexander Mitchell >Priority: Critical > Fix For: 11.2 > > > A fresh installation of Netbeans 11.1 and JDK 11.0.5 on Windows 10. Creating > a maven project and attempting to run gives error: > > Execution: > cd C:\Users\Alexander.Mitchell\Workspace\patterns; "JAVA_HOME=C:\\Program > Files\\Java\\jdk-11.0.5" cmd /c "\"\"C:\\Program > Files\\NetBeans\\NetBeans-11.1\\netbeans\\java\\maven\\bin\\mvn.cmd\" > -Dmaven.ext.class.path=\"C:\\Program > Files\\NetBeans\\NetBeans-11.1\\netbeans\\java\\maven-nblib\\netbeans-eventspy.jar\" > -Dfile.encoding=UTF-8 clean install\"" > > Error: > Cannot run program "cmd" (in directory > "C:\Users\Alexander.Mitchell\Workspace\patterns"): Malformed argument has > embedded quote: "C:\Program > Files\NetBeans\NetBeans-11.1\netbeans\java\maven\bin\mvn.cmd" > -Dmaven.ext.class.path="C:\Program > Files\NetBeans\NetBeans-11.1\netbeans\java\maven-nblib\netbeans-eventspy.jar" > -Dfile.encoding=UTF-8 clean install -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3283) POM graph creation freezes NetBeans
[ https://issues.apache.org/jira/browse/NETBEANS-3283?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957924#comment-16957924 ] Alessandro Falappa commented on NETBEANS-3283: -- This freeze does not happen with all maven projects but only with that particular maven project. Major priority cause only way out is to terminate IDE. > POM graph creation freezes NetBeans > --- > > Key: NETBEANS-3283 > URL: https://issues.apache.org/jira/browse/NETBEANS-3283 > Project: NetBeans > Issue Type: Bug > Components: projects - Maven >Affects Versions: 11.2 >Reporter: Alessandro Falappa >Priority: Major > Attachments: nb-graph-bug-thread-dump.txt > > > NetBeans freezes when creating the graph of dependencies for a NetBeans > Plugin maven project. > Steps: > * Clone [https://github.com/AlexFalappa/nb-springboot.git] > * Open {{pom.xml}} file > * Click on _Show Graph_ > The JVM process running NetBeans consumes about 30-40% of CPU but the UI is > completely frozen with no other option than terminate NetBeans from the OS > process manager. > Took a stacktrace dump of the process (attached) but I am not sure how to > diagnose the problem. > The problematic part could be: > {code} > "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s > tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] >java.lang.Thread.State: RUNNABLE > at > java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.isThereFreeSpaceNonFixedSpace(FruchtermanReingoldLayout.java:351) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.relayoutNonFixed(FruchtermanReingoldLayout.java:391) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.doRelayoutNonFixed(FruchtermanReingoldLayout.java:371) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:117) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:69) > at > org.netbeans.api.visual.layout.SceneLayout$LayoutSceneListener.sceneValidated(SceneLayout.java:100) > at org.netbeans.api.visual.widget.Scene.validate(Scene.java:378) > at > org.netbeans.modules.java.graph.DependencyGraphScene.highlightDepth(DependencyGraphScene.java:691) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent.maxPathSpinnerStateChanged(DependencyGraphTopComponent.java:468) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent.access$1100(DependencyGraphTopComponent.java:97) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent$9.stateChanged(DependencyGraphTopComponent.java:431) > at > javax.swing.JSpinner.fireStateChanged(java.desktop@11.0.4/JSpinner.java:461) > at > javax.swing.JSpinner$ModelListener.stateChanged(java.desktop@11.0.4/JSpinner.java:388) > at > javax.swing.AbstractSpinnerModel.fireStateChanged(java.desktop@11.0.4/AbstractSpinnerModel.java:120) > at > javax.swing.SpinnerNumberModel.setMaximum(java.desktop@11.0.4/SpinnerNumberModel.java:278) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent$10$3.run(DependencyGraphTopComponent.java:636) > at > java.awt.event.InvocationEvent.dispatch(java.desktop@11.0.4/InvocationEvent.java:313) > at > java.awt.EventQueue.dispatchEventImpl(java.desktop@11.0.4/EventQueue.java:770) > at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:721) > at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:715) > at java.security.AccessController.doPrivileged(java.base@11.0.4/Native > Method) > at > java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.base@11.0.4/ProtectionDomain.java:85) > at > java.awt.EventQueue.dispatchEvent(java.desktop@11.0.4/EventQueue.java:740) > at > org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) > at > java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop@11.0.4/EventDispatchThread.java:203) > at > java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.4/EventDispatchThread.java:124) > at > java.awt.EventDispatchThread.pumpEventsForHierarchy(java.desktop@11.0.4/EventDispatchThread.java:113) > at > java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:109) > at > java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:101) > at > java.awt.EventDispatchThread.run(java.desktop@11.0.4/EventDispatchThread.java:90) > {code} > -- This message
[jira] [Resolved] (NETBEANS-3253) Add -J-Djdk.lang.Process.allowAmbiguousCommands=true to netbeans.conf
[ https://issues.apache.org/jira/browse/NETBEANS-3253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Laszlo Kishalmi resolved NETBEANS-3253. --- Fix Version/s: 11.2 Resolution: Fixed Resolved as the corresponding PR got merged. > Add -J-Djdk.lang.Process.allowAmbiguousCommands=true to netbeans.conf > - > > Key: NETBEANS-3253 > URL: https://issues.apache.org/jira/browse/NETBEANS-3253 > Project: NetBeans > Issue Type: Bug >Reporter: Geertjan Wielenga >Priority: Major > Labels: pull-request-available > Fix For: 11.2 > > Time Spent: 20m > Remaining Estimate: 0h > > See > https://lists.apache.org/thread.html/bf415874d97739bd23eef134a246a8a7241c011372b36cc8650bf901@%3Cdev.netbeans.apache.org%3E -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-454) AssertionError/"Wrong diagnostic handler ... DeferredDiagnosticHandler" when opening Java autocomplete
[ https://issues.apache.org/jira/browse/NETBEANS-454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Laszlo Kishalmi updated NETBEANS-454: - Affects Version/s: 10.0 11.0 > AssertionError/"Wrong diagnostic handler ... DeferredDiagnosticHandler" when > opening Java autocomplete > -- > > Key: NETBEANS-454 > URL: https://issues.apache.org/jira/browse/NETBEANS-454 > Project: NetBeans > Issue Type: Bug > Components: editor - Completion & Templates, java - Compiler >Affects Versions: 9.0, 10.0, 11.0 > Environment: Apache NetBeans IDE Dev (Build > incubator-netbeans-release-205-on-20180202) on OpenJDK 64-Bit Server VM > 9.0.4.1+11, Mac OS X version 10.9.5 running on x86_64; UTF-8; en_US (nb) >Reporter: Eirik Bakke >Assignee: 杨宇杰 >Priority: Major > Attachments: threaddump.txt > > > The following exception occurred while opening the autocomplete popup while > editing a Java file: > {noformat} > java.lang.AssertionError: Wrong diagnostic handler: > com.sun.tools.javac.util.Log$DeferredDiagnosticHandler@7f84b389 > {noformat} > > A long thread dump followed, which is attached. Reporting this as a new JIRA > issue since the old NetBeans exception reporter no longer seems to be in use. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-454) AssertionError/"Wrong diagnostic handler ... DeferredDiagnosticHandler" when opening Java autocomplete
[ https://issues.apache.org/jira/browse/NETBEANS-454?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957917#comment-16957917 ] Laszlo Kishalmi commented on NETBEANS-454: -- Most likely an issue in javac or nb-javac. There are several incarnations of this one on the old bugzilla as well: https://netbeans.org/bugzilla/show_bug.cgi?id=241006 > AssertionError/"Wrong diagnostic handler ... DeferredDiagnosticHandler" when > opening Java autocomplete > -- > > Key: NETBEANS-454 > URL: https://issues.apache.org/jira/browse/NETBEANS-454 > Project: NetBeans > Issue Type: Bug > Components: editor - Completion & Templates, java - Compiler >Affects Versions: 9.0 > Environment: Apache NetBeans IDE Dev (Build > incubator-netbeans-release-205-on-20180202) on OpenJDK 64-Bit Server VM > 9.0.4.1+11, Mac OS X version 10.9.5 running on x86_64; UTF-8; en_US (nb) >Reporter: Eirik Bakke >Assignee: 杨宇杰 >Priority: Major > Attachments: threaddump.txt > > > The following exception occurred while opening the autocomplete popup while > editing a Java file: > {noformat} > java.lang.AssertionError: Wrong diagnostic handler: > com.sun.tools.javac.util.Log$DeferredDiagnosticHandler@7f84b389 > {noformat} > > A long thread dump followed, which is attached. Reporting this as a new JIRA > issue since the old NetBeans exception reporter no longer seems to be in use. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-454) AssertionError/"Wrong diagnostic handler ... DeferredDiagnosticHandler" when opening Java autocomplete
[ https://issues.apache.org/jira/browse/NETBEANS-454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Laszlo Kishalmi updated NETBEANS-454: - External issue URL: https://netbeans.org/bugzilla/show_bug.cgi?id=241006 > AssertionError/"Wrong diagnostic handler ... DeferredDiagnosticHandler" when > opening Java autocomplete > -- > > Key: NETBEANS-454 > URL: https://issues.apache.org/jira/browse/NETBEANS-454 > Project: NetBeans > Issue Type: Bug > Components: editor - Completion & Templates, java - Compiler >Affects Versions: 9.0 > Environment: Apache NetBeans IDE Dev (Build > incubator-netbeans-release-205-on-20180202) on OpenJDK 64-Bit Server VM > 9.0.4.1+11, Mac OS X version 10.9.5 running on x86_64; UTF-8; en_US (nb) >Reporter: Eirik Bakke >Assignee: 杨宇杰 >Priority: Major > Attachments: threaddump.txt > > > The following exception occurred while opening the autocomplete popup while > editing a Java file: > {noformat} > java.lang.AssertionError: Wrong diagnostic handler: > com.sun.tools.javac.util.Log$DeferredDiagnosticHandler@7f84b389 > {noformat} > > A long thread dump followed, which is attached. Reporting this as a new JIRA > issue since the old NetBeans exception reporter no longer seems to be in use. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-3283) POM graph creation freezes NetBeans
[ https://issues.apache.org/jira/browse/NETBEANS-3283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alessandro Falappa updated NETBEANS-3283: - Description: NetBeans freezes when creating the graph of dependencies for a NetBeans Plugin maven project. Steps: * Clone [https://github.com/AlexFalappa/nb-springboot.git] * Open {{pom.xml}} file * Click on _Show Graph_ The JVM process running NetBeans consumes about 30-40% of CPU but the UI is completely frozen with no other option than terminate NetBeans from the OS process manager. Took a stacktrace dump of the process (attached) but I am not sure how to diagnose the problem. The problematic part could be: {code} "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] java.lang.Thread.State: RUNNABLE at java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.isThereFreeSpaceNonFixedSpace(FruchtermanReingoldLayout.java:351) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.relayoutNonFixed(FruchtermanReingoldLayout.java:391) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.doRelayoutNonFixed(FruchtermanReingoldLayout.java:371) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:117) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:69) at org.netbeans.api.visual.layout.SceneLayout$LayoutSceneListener.sceneValidated(SceneLayout.java:100) at org.netbeans.api.visual.widget.Scene.validate(Scene.java:378) at org.netbeans.modules.java.graph.DependencyGraphScene.highlightDepth(DependencyGraphScene.java:691) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent.maxPathSpinnerStateChanged(DependencyGraphTopComponent.java:468) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent.access$1100(DependencyGraphTopComponent.java:97) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent$9.stateChanged(DependencyGraphTopComponent.java:431) at javax.swing.JSpinner.fireStateChanged(java.desktop@11.0.4/JSpinner.java:461) at javax.swing.JSpinner$ModelListener.stateChanged(java.desktop@11.0.4/JSpinner.java:388) at javax.swing.AbstractSpinnerModel.fireStateChanged(java.desktop@11.0.4/AbstractSpinnerModel.java:120) at javax.swing.SpinnerNumberModel.setMaximum(java.desktop@11.0.4/SpinnerNumberModel.java:278) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent$10$3.run(DependencyGraphTopComponent.java:636) at java.awt.event.InvocationEvent.dispatch(java.desktop@11.0.4/InvocationEvent.java:313) at java.awt.EventQueue.dispatchEventImpl(java.desktop@11.0.4/EventQueue.java:770) at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:721) at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:715) at java.security.AccessController.doPrivileged(java.base@11.0.4/Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.base@11.0.4/ProtectionDomain.java:85) at java.awt.EventQueue.dispatchEvent(java.desktop@11.0.4/EventQueue.java:740) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) at java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop@11.0.4/EventDispatchThread.java:203) at java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.4/EventDispatchThread.java:124) at java.awt.EventDispatchThread.pumpEventsForHierarchy(java.desktop@11.0.4/EventDispatchThread.java:113) at java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:109) at java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:101) at java.awt.EventDispatchThread.run(java.desktop@11.0.4/EventDispatchThread.java:90) {code} was: NetBeans freezes when creating the graph of dependencies for a NetBeans Plugin maven project. Steps: * Clone [https://github.com/AlexFalappa/nb-springboot.git] * Open {{pom.xml}} file * Click on _Show Graph_ The JVM process running NetBeans consumes about 30-40% of CPU but the UI is completely frozen. Took a stacktrace dump of the process (attached) but I am not sure how to diagnose the problem. The problematic part could be: {code} "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] java.lang.Thread.State: RUNNABLE at java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) a
[jira] [Updated] (NETBEANS-3283) POM graph creation freezes NetBeans
[ https://issues.apache.org/jira/browse/NETBEANS-3283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alessandro Falappa updated NETBEANS-3283: - Description: NetBeans freezes when creating the graph of dependencies for a NetBeans Plugin maven project. Steps: * Clone [https://github.com/AlexFalappa/nb-springboot.git] * Open {{pom.xml}} file * Click on _Show Graph_ The JVM process running NetBeans consumes about 30-40% of CPU but the UI is completely frozen. Took a stacktrace dump of the process (attached) but I am not sure how to diagnose the problem. The problematic part could be: {code} "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] java.lang.Thread.State: RUNNABLE at java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.isThereFreeSpaceNonFixedSpace(FruchtermanReingoldLayout.java:351) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.relayoutNonFixed(FruchtermanReingoldLayout.java:391) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.doRelayoutNonFixed(FruchtermanReingoldLayout.java:371) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:117) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:69) at org.netbeans.api.visual.layout.SceneLayout$LayoutSceneListener.sceneValidated(SceneLayout.java:100) at org.netbeans.api.visual.widget.Scene.validate(Scene.java:378) at org.netbeans.modules.java.graph.DependencyGraphScene.highlightDepth(DependencyGraphScene.java:691) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent.maxPathSpinnerStateChanged(DependencyGraphTopComponent.java:468) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent.access$1100(DependencyGraphTopComponent.java:97) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent$9.stateChanged(DependencyGraphTopComponent.java:431) at javax.swing.JSpinner.fireStateChanged(java.desktop@11.0.4/JSpinner.java:461) at javax.swing.JSpinner$ModelListener.stateChanged(java.desktop@11.0.4/JSpinner.java:388) at javax.swing.AbstractSpinnerModel.fireStateChanged(java.desktop@11.0.4/AbstractSpinnerModel.java:120) at javax.swing.SpinnerNumberModel.setMaximum(java.desktop@11.0.4/SpinnerNumberModel.java:278) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent$10$3.run(DependencyGraphTopComponent.java:636) at java.awt.event.InvocationEvent.dispatch(java.desktop@11.0.4/InvocationEvent.java:313) at java.awt.EventQueue.dispatchEventImpl(java.desktop@11.0.4/EventQueue.java:770) at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:721) at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:715) at java.security.AccessController.doPrivileged(java.base@11.0.4/Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.base@11.0.4/ProtectionDomain.java:85) at java.awt.EventQueue.dispatchEvent(java.desktop@11.0.4/EventQueue.java:740) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) at java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop@11.0.4/EventDispatchThread.java:203) at java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.4/EventDispatchThread.java:124) at java.awt.EventDispatchThread.pumpEventsForHierarchy(java.desktop@11.0.4/EventDispatchThread.java:113) at java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:109) at java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:101) at java.awt.EventDispatchThread.run(java.desktop@11.0.4/EventDispatchThread.java:90) {code} was: NetBeans freezes when creating the graph of dependencies for a NetBeans Plugin maven project. Steps: * Clone [https://github.com/AlexFalappa/nb-springboot.git] * Open {{pom.xml}} file * Click on _Show Graph_ Took a stacktrace dump of the process (attached) the relevant part should be: {code} "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] java.lang.Thread.State: RUNNABLE at java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.isThereFreeSpaceNonFixedSpace(FruchtermanReingoldLayout.java:351) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.relayoutNonFixed(Fruchte
[jira] [Updated] (NETBEANS-3283) POM graph creation freezes NetBeans
[ https://issues.apache.org/jira/browse/NETBEANS-3283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alessandro Falappa updated NETBEANS-3283: - Attachment: nb-graph-bug-thread-dump.txt > POM graph creation freezes NetBeans > --- > > Key: NETBEANS-3283 > URL: https://issues.apache.org/jira/browse/NETBEANS-3283 > Project: NetBeans > Issue Type: Bug > Components: projects - Maven >Affects Versions: 11.2 >Reporter: Alessandro Falappa >Priority: Major > Attachments: nb-graph-bug-thread-dump.txt > > > NetBeans freezes when creating the graph of dependencies for a NetBeans > Plugin maven project. > Steps: > * Clone [https://github.com/AlexFalappa/nb-springboot.git] > * Open {{pom.xml}} file > * Click on _Show Graph_ > Took a stacktrace dump of the process (attached) the relevant part should be: > {code} > "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s > tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] >java.lang.Thread.State: RUNNABLE > at > java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.isThereFreeSpaceNonFixedSpace(FruchtermanReingoldLayout.java:351) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.relayoutNonFixed(FruchtermanReingoldLayout.java:391) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.doRelayoutNonFixed(FruchtermanReingoldLayout.java:371) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:117) > at > org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:69) > at > org.netbeans.api.visual.layout.SceneLayout$LayoutSceneListener.sceneValidated(SceneLayout.java:100) > at org.netbeans.api.visual.widget.Scene.validate(Scene.java:378) > at > org.netbeans.modules.java.graph.DependencyGraphScene.highlightDepth(DependencyGraphScene.java:691) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent.maxPathSpinnerStateChanged(DependencyGraphTopComponent.java:468) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent.access$1100(DependencyGraphTopComponent.java:97) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent$9.stateChanged(DependencyGraphTopComponent.java:431) > at > javax.swing.JSpinner.fireStateChanged(java.desktop@11.0.4/JSpinner.java:461) > at > javax.swing.JSpinner$ModelListener.stateChanged(java.desktop@11.0.4/JSpinner.java:388) > at > javax.swing.AbstractSpinnerModel.fireStateChanged(java.desktop@11.0.4/AbstractSpinnerModel.java:120) > at > javax.swing.SpinnerNumberModel.setMaximum(java.desktop@11.0.4/SpinnerNumberModel.java:278) > at > org.netbeans.modules.maven.graph.DependencyGraphTopComponent$10$3.run(DependencyGraphTopComponent.java:636) > at > java.awt.event.InvocationEvent.dispatch(java.desktop@11.0.4/InvocationEvent.java:313) > at > java.awt.EventQueue.dispatchEventImpl(java.desktop@11.0.4/EventQueue.java:770) > at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:721) > at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:715) > at java.security.AccessController.doPrivileged(java.base@11.0.4/Native > Method) > at > java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.base@11.0.4/ProtectionDomain.java:85) > at > java.awt.EventQueue.dispatchEvent(java.desktop@11.0.4/EventQueue.java:740) > at > org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) > at > java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop@11.0.4/EventDispatchThread.java:203) > at > java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.4/EventDispatchThread.java:124) > at > java.awt.EventDispatchThread.pumpEventsForHierarchy(java.desktop@11.0.4/EventDispatchThread.java:113) > at > java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:109) > at > java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:101) > at > java.awt.EventDispatchThread.run(java.desktop@11.0.4/EventDispatchThread.java:90) > {code} > -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Created] (NETBEANS-3283) POM graph creation freezes NetBeans
Alessandro Falappa created NETBEANS-3283: Summary: POM graph creation freezes NetBeans Key: NETBEANS-3283 URL: https://issues.apache.org/jira/browse/NETBEANS-3283 Project: NetBeans Issue Type: Bug Components: projects - Maven Affects Versions: 11.2 Reporter: Alessandro Falappa NetBeans freezes when creating the graph of dependencies for a NetBeans Plugin maven project. Steps: * Clone [https://github.com/AlexFalappa/nb-springboot.git] * Open {{pom.xml}} file * Click on _Show Graph_ Took a stacktrace dump of the process (attached) the relevant part should be: {code} "AWT-EventQueue-0" #23 prio=6 os_prio=0 cpu=774656.25ms elapsed=18594.28s tid=0x2a2af800 nid=0x3a9c runnable [0x2b87c000] java.lang.Thread.State: RUNNABLE at java.util.Collections$UnmodifiableCollection$1.hasNext(java.base@11.0.4/Collections.java:1046) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.isThereFreeSpaceNonFixedSpace(FruchtermanReingoldLayout.java:351) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.relayoutNonFixed(FruchtermanReingoldLayout.java:391) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.doRelayoutNonFixed(FruchtermanReingoldLayout.java:371) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:117) at org.netbeans.modules.java.graph.FruchtermanReingoldLayout.performLayout(FruchtermanReingoldLayout.java:69) at org.netbeans.api.visual.layout.SceneLayout$LayoutSceneListener.sceneValidated(SceneLayout.java:100) at org.netbeans.api.visual.widget.Scene.validate(Scene.java:378) at org.netbeans.modules.java.graph.DependencyGraphScene.highlightDepth(DependencyGraphScene.java:691) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent.maxPathSpinnerStateChanged(DependencyGraphTopComponent.java:468) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent.access$1100(DependencyGraphTopComponent.java:97) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent$9.stateChanged(DependencyGraphTopComponent.java:431) at javax.swing.JSpinner.fireStateChanged(java.desktop@11.0.4/JSpinner.java:461) at javax.swing.JSpinner$ModelListener.stateChanged(java.desktop@11.0.4/JSpinner.java:388) at javax.swing.AbstractSpinnerModel.fireStateChanged(java.desktop@11.0.4/AbstractSpinnerModel.java:120) at javax.swing.SpinnerNumberModel.setMaximum(java.desktop@11.0.4/SpinnerNumberModel.java:278) at org.netbeans.modules.maven.graph.DependencyGraphTopComponent$10$3.run(DependencyGraphTopComponent.java:636) at java.awt.event.InvocationEvent.dispatch(java.desktop@11.0.4/InvocationEvent.java:313) at java.awt.EventQueue.dispatchEventImpl(java.desktop@11.0.4/EventQueue.java:770) at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:721) at java.awt.EventQueue$4.run(java.desktop@11.0.4/EventQueue.java:715) at java.security.AccessController.doPrivileged(java.base@11.0.4/Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.base@11.0.4/ProtectionDomain.java:85) at java.awt.EventQueue.dispatchEvent(java.desktop@11.0.4/EventQueue.java:740) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) at java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop@11.0.4/EventDispatchThread.java:203) at java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.4/EventDispatchThread.java:124) at java.awt.EventDispatchThread.pumpEventsForHierarchy(java.desktop@11.0.4/EventDispatchThread.java:113) at java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:109) at java.awt.EventDispatchThread.pumpEvents(java.desktop@11.0.4/EventDispatchThread.java:101) at java.awt.EventDispatchThread.run(java.desktop@11.0.4/EventDispatchThread.java:90) {code} -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: image for textblock in JDK 13
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new fcfb76b image for textblock in JDK 13 fcfb76b is described below commit fcfb76b1cf3d922c5ba123a9d47e7db4969fbc58 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 15:11:11 2019 +0200 image for textblock in JDK 13 --- .../src/content/download/nb112/jdk13-textblock.png | Bin 0 -> 27616 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/netbeans.apache.org/src/content/download/nb112/jdk13-textblock.png b/netbeans.apache.org/src/content/download/nb112/jdk13-textblock.png new file mode 100644 index 000..cbf78df Binary files /dev/null and b/netbeans.apache.org/src/content/download/nb112/jdk13-textblock.png differ - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 926
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 13c23f8 Automated site publishing by Jenkins build 926 13c23f8 is described below commit 13c23f8fa9193e4b93b007648b2fe907ea1f0eed Author: jenkins AuthorDate: Wed Oct 23 13:14:33 2019 + Automated site publishing by Jenkins build 926 --- content/download/nb112/index.html | 5 + content/download/nb112/jdk13-textblock.png | Bin 0 -> 27616 bytes 2 files changed, 5 insertions(+) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 6ab4b7a..fe77e60 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -123,6 +123,11 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. + + + + + PHP diff --git a/content/download/nb112/jdk13-textblock.png b/content/download/nb112/jdk13-textblock.png new file mode 100644 index 000..cbf78df Binary files /dev/null and b/content/download/nb112/jdk13-textblock.png differ - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update index.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new c7b7532 Update index.asciidoc c7b7532 is described below commit c7b753277ff24da3f9e7b6a8af1733e52ffd1aa2 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 15:12:18 2019 +0200 Update index.asciidoc --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 7e4e68d..7fe2ec5 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -45,6 +45,8 @@ The highlights of enhancements in the Java area are focused on support for JDK 1 - JEP 354: Switch Expressions (Preview Feature): link:https://openjdk.java.net/jeps/354[https://openjdk.java.net/jeps/354] - JEP 355: Text Blocks (Preview Feature): link:https://openjdk.java.net/jeps/355[https://openjdk.java.net/jeps/355] +image::jdk13-textblock.png[] + === PHP The highlights of enhancements in the PHP area are focused on support for PHP 7.4. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 924
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new cf249f0 Automated site publishing by Jenkins build 924 cf249f0 is described below commit cf249f0f795ca5bac2beda8d65cb3b11d6d825aa Author: jenkins AuthorDate: Wed Oct 23 12:40:49 2019 + Automated site publishing by Jenkins build 924 --- content/download/nb110/nb110.html | 2 +- content/download/nb111/nb111.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/download/nb110/nb110.html b/content/download/nb110/nb110.html index 7745a87..521afdd 100644 --- a/content/download/nb110/nb110.html +++ b/content/download/nb110/nb110.html @@ -159,7 +159,7 @@ Installers have been introduced for the first time in the next release, in Apach Deployment platforms -Apache NetBeans 11.0 runs on JDK 8, 9, 10, 11, and 12. +Apache NetBeans 11.0 runs on JDK 8, 11, and 12. (JDK 12 is the current JDK release at the time of this NetBeans release). diff --git a/content/download/nb111/nb111.html b/content/download/nb111/nb111.html index 2b0c06c..0c4b25a 100644 --- a/content/download/nb111/nb111.html +++ b/content/download/nb111/nb111.html @@ -140,7 +140,7 @@ The PGP keys used to sign this release are available https://www.apache Deployment platforms -Apache NetBeans 11.1 runs on JDK 8, 11, and 12. +Apache NetBeans 11.1 runs on JDK 8, 11, and 12. (JDK 12 is the current JDK release at the time of this NetBeans release). - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 923
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new a23da88 Automated site publishing by Jenkins build 923 a23da88 is described below commit a23da88765d4255463aab6ab7b35981686c871fd Author: jenkins AuthorDate: Wed Oct 23 12:37:26 2019 + Automated site publishing by Jenkins build 923 --- content/download/nb111/nb111.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/download/nb111/nb111.html b/content/download/nb111/nb111.html index 155e215..2b0c06c 100644 --- a/content/download/nb111/nb111.html +++ b/content/download/nb111/nb111.html @@ -140,7 +140,7 @@ The PGP keys used to sign this release are available https://www.apache Deployment platforms -Apache NetBeans 11.1 runs on JDK 8, 9, 10, 11, and 12. +Apache NetBeans 11.1 runs on JDK 8, 11, and 12. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update nb110.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 783c186 Update nb110.asciidoc 783c186 is described below commit 783c1868d88f448eac46def29a6b31333fd89f21 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 14:36:34 2019 +0200 Update nb110.asciidoc --- netbeans.apache.org/src/content/download/nb110/nb110.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb110/nb110.asciidoc b/netbeans.apache.org/src/content/download/nb110/nb110.asciidoc index b93116f..1b1c767 100644 --- a/netbeans.apache.org/src/content/download/nb110/nb110.asciidoc +++ b/netbeans.apache.org/src/content/download/nb110/nb110.asciidoc @@ -69,7 +69,7 @@ video::vCN_XvXQzzo[youtube, title="The Rough Guide to Apache NetBeans 11.0"] == Deployment platforms -Apache NetBeans 11.0 runs on JDK 8, 9, 10, 11, and 12. +Apache NetBeans 11.0 runs on JDK 8, 11, and 12. (JDK 12 is the current JDK release at the time of this NetBeans release). == Building from source - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update nb111.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 313a5b3 Update nb111.asciidoc 313a5b3 is described below commit 313a5b35a80ce9664ae7980a5b8740154727684a Author: Geertjan Wielenga AuthorDate: Wed Oct 23 14:37:02 2019 +0200 Update nb111.asciidoc --- netbeans.apache.org/src/content/download/nb111/nb111.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc b/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc index 496a139..4f7ff3b 100644 --- a/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc +++ b/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc @@ -77,7 +77,7 @@ Apache NetBeans can also be installed as a self-contained link:https://snapcraft == Deployment platforms -Apache NetBeans 11.1 runs on JDK 8, 11, and 12. +Apache NetBeans 11.1 runs on JDK 8, 11, and 12. (JDK 12 is the current JDK release at the time of this NetBeans release). == Building from source - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Update nb111.asciidoc
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new ab8fa7c Update nb111.asciidoc ab8fa7c is described below commit ab8fa7c0012cd5997c887f6229f9e4540965d33b Author: Geertjan Wielenga AuthorDate: Wed Oct 23 14:34:40 2019 +0200 Update nb111.asciidoc --- netbeans.apache.org/src/content/download/nb111/nb111.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc b/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc index 5f1f76f..496a139 100644 --- a/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc +++ b/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc @@ -77,7 +77,7 @@ Apache NetBeans can also be installed as a self-contained link:https://snapcraft == Deployment platforms -Apache NetBeans 11.1 runs on JDK 8, 9, 10, 11, and 12. +Apache NetBeans 11.1 runs on JDK 8, 11, and 12. == Building from source - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3280) finding feature does not terminate
[ https://issues.apache.org/jira/browse/NETBEANS-3280?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957782#comment-16957782 ] Anton Epple commented on NETBEANS-3280: --- Wasn't able to reproduce this with daily build (Apache NetBeans IDE DEV (Build dev-9fd8d81392e6012e60dcc8bd2c08f2aff537d0e2)) on mac so far. Did a clean userdir solve it? > finding feature does not terminate > > > Key: NETBEANS-3280 > URL: https://issues.apache.org/jira/browse/NETBEANS-3280 > Project: NetBeans > Issue Type: Improvement > Components: DukeScript >Affects Versions: 11.2 > Environment: ubunto 18.04 openjdk 11 >Reporter: Pieter van den Hombergh >Priority: Minor > > When I want to create a new maven project of type Java Fronten Application, > the > wizard tells me to press next to activate the feature. When I do, nothing > happens, at least not > while my patience lasts (which is two coffee). > What feature needs activation, so I might be able to do that by hand. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Comment Edited] (NETBEANS-3282) JsIndexer.postScanTask can be called only from scanner thread
[ https://issues.apache.org/jira/browse/NETBEANS-3282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957766#comment-16957766 ] jose luis romero edited comment on NETBEANS-3282 at 10/23/19 11:22 AM: --- it used to be a way to link to other issues as duplicates, I can't find it anymore so https://issues.apache.org/jira/browse/NETBEANS-2752 https://issues.apache.org/jira/browse/NETBEANS-2459 was (Author: firuzzz): duplicates: https://issues.apache.org/jira/browse/NETBEANS-2752 and https://issues.apache.org/jira/browse/NETBEANS-2459 > JsIndexer.postScanTask can be called only from scanner thread > - > > Key: NETBEANS-3282 > URL: https://issues.apache.org/jira/browse/NETBEANS-3282 > Project: NetBeans > Issue Type: Bug > Components: ide - Code >Affects Versions: 11.3 >Reporter: jose luis romero >Priority: Major > Attachments: nb-log.txt > > > I installed the newest, imported config, while I was waiting for projects > scanning to finish, maven index repo started, so I decided to jump to a file > (ctrl+o, typed the class name, selected and changed an attribute name and > save the file) -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3282) JsIndexer.postScanTask can be called only from scanner thread
[ https://issues.apache.org/jira/browse/NETBEANS-3282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957766#comment-16957766 ] jose luis romero commented on NETBEANS-3282: duplicates: https://issues.apache.org/jira/browse/NETBEANS-2752 and https://issues.apache.org/jira/browse/NETBEANS-2459 > JsIndexer.postScanTask can be called only from scanner thread > - > > Key: NETBEANS-3282 > URL: https://issues.apache.org/jira/browse/NETBEANS-3282 > Project: NetBeans > Issue Type: Bug > Components: ide - Code >Affects Versions: 11.3 >Reporter: jose luis romero >Priority: Major > Attachments: nb-log.txt > > > I installed the newest, imported config, while I was waiting for projects > scanning to finish, maven index repo started, so I decided to jump to a file > (ctrl+o, typed the class name, selected and changed an attribute name and > save the file) -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Created] (NETBEANS-3282) JsIndexer.postScanTask can be called only from scanner thread
jose luis romero created NETBEANS-3282: -- Summary: JsIndexer.postScanTask can be called only from scanner thread Key: NETBEANS-3282 URL: https://issues.apache.org/jira/browse/NETBEANS-3282 Project: NetBeans Issue Type: Bug Components: ide - Code Affects Versions: 11.3 Reporter: jose luis romero Attachments: nb-log.txt I installed the newest, imported config, while I was waiting for projects scanning to finish, maven index repo started, so I decided to jump to a file (ctrl+o, typed the class name, selected and changed an attribute name and save the file) -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 921
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new d3b0ce6 Automated site publishing by Jenkins build 921 d3b0ce6 is described below commit d3b0ce6219da77f8906554151bfd08731ec06730 Author: jenkins AuthorDate: Wed Oct 23 10:01:29 2019 + Automated site publishing by Jenkins build 921 --- content/download/nb112/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index cb9674c..6ab4b7a 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -219,7 +219,7 @@ PHP RFC: Numeric Literal Separator: https://wiki.php.net/rfc/numeric_li -The donation of the NetBeans C and C_\_ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C\_++\_ features. +The donation of the NetBeans C and C++ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C++ features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C++ features. WildFly integration is supported by means of the http://plugins.netbeans.org/plugin/76472/wildfly-application-server";>WildFly Application Server plugin located in the Plugin Portal. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Trying to escape plus symbols in C++
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 3d70880 Trying to escape plus symbols in C++ 3d70880 is described below commit 3d70880c65d08ec8b53e4b0dab0ff737855eeb1b Author: Geertjan Wielenga AuthorDate: Wed Oct 23 11:58:41 2019 +0200 Trying to escape plus symbols in C++ --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index d38278a..7e4e68d 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -82,7 +82,7 @@ The highlights of the enhancements and fixes are listed below. == Notes -- The donation of the NetBeans C and C\_++\_ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C++ features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C\_++\_ features. +- The donation of the NetBeans C and C++ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C++ features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C++ features. - WildFly integration is supported by means of the link:http://plugins.netbeans.org/plugin/76472/wildfly-application-server[WildFly Application Server] plugin located in the Plugin Portal. - Support for JSF 2.3 is available as a pull request, too late for inclusion in 11.2, scheduled for 11.3: link:https://github.com/apache/netbeans/pull/1576[https://github.com/apache/netbeans/pull/1576] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Comment Edited] (NETBEANS-3281) Unable to connect to docker in Java versions 13+
[ https://issues.apache.org/jira/browse/NETBEANS-3281?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957703#comment-16957703 ] Paul Court edited comment on NETBEANS-3281 at 10/23/19 9:48 AM: -Looks like there is an upstream fix waiting to be merged- [-https://github.com/kohlschutter/junixsocket/pull/71-] Edit - You beat me to it and Jira didn't update the page! :) was (Author: paulcourt101): Looks like there is an upstream fix waiting to be merged [https://github.com/kohlschutter/junixsocket/pull/71] > Unable to connect to docker in Java versions 13+ > > > Key: NETBEANS-3281 > URL: https://issues.apache.org/jira/browse/NETBEANS-3281 > Project: NetBeans > Issue Type: Bug > Components: docker - UI >Affects Versions: 11.1, 11.2 >Reporter: Paul Court >Assignee: Bartosz Tomasik >Priority: Major > Attachments: image-2019-10-23-09-58-39-939.png, > image-2019-10-23-10-20-59-303.png > > > Attempting to add a Docker connection using Java version 13 or 14 fails with > the following error:- > !image-2019-10-23-09-58-39-939.png|width=460,height=316! > Further investigation by [~ihsiak] in NETBEANS-2509 revealed the underlying > problem to be: > {code:java} > java.net.SocketException: Cannot find method "setCreated" in java.net.Socket. > Unsupported JVM?{code} > I have recreated this on both Netbeans 11.1 and 11.2-beta3 using Java 13: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > With the full exception from messages.log being: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > > By switching to Java 12.0.2:- > {code:java} > ⚡ java -version > openjdk version "12.0.2" 2019-07-16 > OpenJDK Runtime Environment (build 12.0.2+10) > OpenJDK 64-Bit Server VM (build 12.0.2+10, mixed mode, sharing) > {code} > The error goes away and local Docker can be interacted with successfully: > !image-2019-10-23-10-20-59-303.png|width=281,height=181! -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Comment Edited] (NETBEANS-3281) Unable to connect to docker in Java versions 13+
[ https://issues.apache.org/jira/browse/NETBEANS-3281?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957703#comment-16957703 ] Paul Court edited comment on NETBEANS-3281 at 10/23/19 9:48 AM: -Looks like there is an upstream fix waiting to be merged- Edit - You beat me to it and Jira didn't update the page! :) was (Author: paulcourt101): -Looks like there is an upstream fix waiting to be merged- [-https://github.com/kohlschutter/junixsocket/pull/71-] Edit - You beat me to it and Jira didn't update the page! :) > Unable to connect to docker in Java versions 13+ > > > Key: NETBEANS-3281 > URL: https://issues.apache.org/jira/browse/NETBEANS-3281 > Project: NetBeans > Issue Type: Bug > Components: docker - UI >Affects Versions: 11.1, 11.2 >Reporter: Paul Court >Assignee: Bartosz Tomasik >Priority: Major > Attachments: image-2019-10-23-09-58-39-939.png, > image-2019-10-23-10-20-59-303.png > > > Attempting to add a Docker connection using Java version 13 or 14 fails with > the following error:- > !image-2019-10-23-09-58-39-939.png|width=460,height=316! > Further investigation by [~ihsiak] in NETBEANS-2509 revealed the underlying > problem to be: > {code:java} > java.net.SocketException: Cannot find method "setCreated" in java.net.Socket. > Unsupported JVM?{code} > I have recreated this on both Netbeans 11.1 and 11.2-beta3 using Java 13: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > With the full exception from messages.log being: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > > By switching to Java 12.0.2:- > {code:java} > ⚡ java -version > openjdk version "12.0.2" 2019-07-16 > OpenJDK Runtime Environment (build 12.0.2+10) > OpenJDK 64-Bit Server VM (build 12.0.2+10, mixed mode, sharing) > {code} > The error goes away and local Docker can be interacted with successfully: > !image-2019-10-23-10-20-59-303.png|width=281,height=181! -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3281) Unable to connect to docker in Java versions 13+
[ https://issues.apache.org/jira/browse/NETBEANS-3281?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957703#comment-16957703 ] Paul Court commented on NETBEANS-3281: -- Looks like there is an upstream fix waiting to be merged [https://github.com/kohlschutter/junixsocket/pull/71] > Unable to connect to docker in Java versions 13+ > > > Key: NETBEANS-3281 > URL: https://issues.apache.org/jira/browse/NETBEANS-3281 > Project: NetBeans > Issue Type: Bug > Components: docker - UI >Affects Versions: 11.1, 11.2 >Reporter: Paul Court >Assignee: Bartosz Tomasik >Priority: Major > Attachments: image-2019-10-23-09-58-39-939.png, > image-2019-10-23-10-20-59-303.png > > > Attempting to add a Docker connection using Java version 13 or 14 fails with > the following error:- > !image-2019-10-23-09-58-39-939.png|width=460,height=316! > Further investigation by [~ihsiak] in NETBEANS-2509 revealed the underlying > problem to be: > {code:java} > java.net.SocketException: Cannot find method "setCreated" in java.net.Socket. > Unsupported JVM?{code} > I have recreated this on both Netbeans 11.1 and 11.2-beta3 using Java 13: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > With the full exception from messages.log being: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > > By switching to Java 12.0.2:- > {code:java} > ⚡ java -version > openjdk version "12.0.2" 2019-07-16 > OpenJDK Runtime Environment (build 12.0.2+10) > OpenJDK 64-Bit Server VM (build 12.0.2+10, mixed mode, sharing) > {code} > The error goes away and local Docker can be interacted with successfully: > !image-2019-10-23-10-20-59-303.png|width=281,height=181! -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-2552) Fail to install nb-javac Library on NetBeans 11
[ https://issues.apache.org/jira/browse/NETBEANS-2552?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957697#comment-16957697 ] Geertjan Wielenga commented on NETBEANS-2552: - Awesome, yes, we changed the mechanism in 11.2 from betas onwards. > Fail to install nb-javac Library on NetBeans 11 > --- > > Key: NETBEANS-2552 > URL: https://issues.apache.org/jira/browse/NETBEANS-2552 > Project: NetBeans > Issue Type: Bug >Affects Versions: 11.0 > Environment: Product Version : Apache NetBeans IDE 11.0 (Build > incubator-netbeans-release-404-on-20190319) > Operating System : Windows 10 version 10.0 running on amd64 > Java; VM; Vendor : 12.0.1; Java HotSpot(TM) 64-Bit Server VM 12.0.1+12; > Oracle Corporation > Runtime : Java(TM) SE Runtime Environment 12.0.1+12 > System Locale; Encoding = fr_FR (nb); Cp1252 >Reporter: Jimmy Jeunemaître >Priority: Minor > Labels: nbjavac, reporting > > Got a notification titled "Install nb-javac Library" in the "Notifications" > window. > > Priority : SILENT Category : Info > There is a blue link that tell something like : _It is recommended to install > nb-javac Library to improve Java editing experience and enable compile on > save._ > I clicked on it, it tried to do something but then send the following > exception : > {code:java} > java.lang.IllegalStateException: Host module > StandardModule:org.netbeans.libs.javacimpl jarFile: C:\NetBeans > 11\netbeans\java\modules\org-netbeans-libs-javacimpl.jar was enabled before, > will not accept fragment StandardModule:org.netbeans.modules.nbjavac.impl > jarFile: > C:\Users\Username\AppData\Roaming\NetBeans\11.0\modules\org-netbeans-modules-nbjavac-impl.jar > at > org.netbeans.ModuleManager.attachModuleFragment(ModuleManager.java:1104) > at > org.netbeans.ModuleManager.maybeAddToEnableList(ModuleManager.java:1708) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1632) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1605) > at org.netbeans.core.startup.ModuleList.installNew(ModuleList.java:289) > at org.netbeans.core.startup.ModuleList.access$2400(ModuleList.java:93) > at > org.netbeans.core.startup.ModuleList$Listener.stepEnable(ModuleList.java:1384) > at > org.netbeans.core.startup.ModuleList$Listener.access$1400(ModuleList.java:982) > at > org.netbeans.core.startup.ModuleList$Listener$1.run(ModuleList.java:1206) > at > org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:102) > at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:494) > at org.netbeans.core.startup.ModuleList$Listener.run(ModuleList.java:1182) > at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) > at > org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) > at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278) > [catch] at > org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033) > {code} > I closed the window and tried again and got this one (slightly different I > guess) : > {code:java} > java.lang.IllegalStateException: Host module > StandardModule:org.netbeans.libs.javacimpl jarFile: C:\NetBeans > 11\netbeans\java\modules\org-netbeans-libs-javacimpl.jar was enabled before, > will not accept fragment StandardModule:org.netbeans.modules.nbjavac.impl > jarFile: > C:\Users\Username\AppData\Roaming\NetBeans\11.0\modules\org-netbeans-modules-nbjavac-impl.jar > at > org.netbeans.ModuleManager.attachModuleFragment(ModuleManager.java:1104) > at > org.netbeans.ModuleManager.maybeAddToEnableList(ModuleManager.java:1708) > at > org.netbeans.ModuleManager.maybeAddToEnableList(ModuleManager.java:1721) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1632) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1605) > at > org.netbeans.modules.autoupdate.services.OperationValidator$EnableValidator.getModulesToEnable(OperationValidator.java:340) > at > org.netbeans.modules.autoupdate.services.OperationValidator$EnableValidator.getRequiredElementsImpl(OperationValidator.java:376) > at > org.netbeans.modules.autoupdate.services.OperationValidator.getRequiredElements(OperationValidator.java:108) > at > org.netbeans.modules.autoupdate.services.OperationContainerImpl$OperationInfoImpl.getRequiredElements(OperationContainerImpl.java:441) > at > org.netbeans.api.autoupdate.OperationContainer$OperationInfo.getRequiredElements(OperationContainer.java:371) > at > org.netbeans.modules.autoupdate.ui.ModuleInstallerSupport.installPlugins(ModuleInstallerSupport.java:201) > at > org.netbeans.modules.autoupdate.ui.api.PluginManager.ins
[jira] [Commented] (NETBEANS-3281) Unable to connect to docker in Java versions 13+
[ https://issues.apache.org/jira/browse/NETBEANS-3281?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957685#comment-16957685 ] Bartosz Tomasik commented on NETBEANS-3281: --- This is issue with [https://github.com/kohlschutter/junixsocket] (which we use for that functionality) not supporting Java 13 (there's PR pending with a fix [https://github.com/kohlschutter/junixsocket/pull/71,] as soon as they merge & release we'll upgrade). > Unable to connect to docker in Java versions 13+ > > > Key: NETBEANS-3281 > URL: https://issues.apache.org/jira/browse/NETBEANS-3281 > Project: NetBeans > Issue Type: Bug > Components: docker - UI >Affects Versions: 11.1, 11.2 >Reporter: Paul Court >Assignee: Bartosz Tomasik >Priority: Major > Attachments: image-2019-10-23-09-58-39-939.png, > image-2019-10-23-10-20-59-303.png > > > Attempting to add a Docker connection using Java version 13 or 14 fails with > the following error:- > !image-2019-10-23-09-58-39-939.png|width=460,height=316! > Further investigation by [~ihsiak] in NETBEANS-2509 revealed the underlying > problem to be: > {code:java} > java.net.SocketException: Cannot find method "setCreated" in java.net.Socket. > Unsupported JVM?{code} > I have recreated this on both Netbeans 11.1 and 11.2-beta3 using Java 13: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > With the full exception from messages.log being: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > > By switching to Java 12.0.2:- > {code:java} > ⚡ java -version > openjdk version "12.0.2" 2019-07-16 > OpenJDK Runtime Environment (build 12.0.2+10) > OpenJDK 64-Bit Server VM (build 12.0.2+10, mixed mode, sharing) > {code} > The error goes away and local Docker can be interacted with successfully: > !image-2019-10-23-10-20-59-303.png|width=281,height=181! -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Assigned] (NETBEANS-3281) Unable to connect to docker in Java versions 13+
[ https://issues.apache.org/jira/browse/NETBEANS-3281?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bartosz Tomasik reassigned NETBEANS-3281: - Assignee: Bartosz Tomasik > Unable to connect to docker in Java versions 13+ > > > Key: NETBEANS-3281 > URL: https://issues.apache.org/jira/browse/NETBEANS-3281 > Project: NetBeans > Issue Type: Bug > Components: docker - UI >Affects Versions: 11.1, 11.2 >Reporter: Paul Court >Assignee: Bartosz Tomasik >Priority: Major > Attachments: image-2019-10-23-09-58-39-939.png, > image-2019-10-23-10-20-59-303.png > > > Attempting to add a Docker connection using Java version 13 or 14 fails with > the following error:- > !image-2019-10-23-09-58-39-939.png|width=460,height=316! > Further investigation by [~ihsiak] in NETBEANS-2509 revealed the underlying > problem to be: > {code:java} > java.net.SocketException: Cannot find method "setCreated" in java.net.Socket. > Unsupported JVM?{code} > I have recreated this on both Netbeans 11.1 and 11.2-beta3 using Java 13: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > With the full exception from messages.log being: > {code:java} > openjdk version "13" 2019-09-17 > OpenJDK Runtime Environment (build 13+33) > OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} > > By switching to Java 12.0.2:- > {code:java} > ⚡ java -version > openjdk version "12.0.2" 2019-07-16 > OpenJDK Runtime Environment (build 12.0.2+10) > OpenJDK 64-Bit Server VM (build 12.0.2+10, mixed mode, sharing) > {code} > The error goes away and local Docker can be interacted with successfully: > !image-2019-10-23-10-20-59-303.png|width=281,height=181! -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-2509) Unable to connect to docker via socket
[ https://issues.apache.org/jira/browse/NETBEANS-2509?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957682#comment-16957682 ] Paul Court commented on NETBEANS-2509: -- Done! (NETBEANS-3281) > Unable to connect to docker via socket > -- > > Key: NETBEANS-2509 > URL: https://issues.apache.org/jira/browse/NETBEANS-2509 > Project: NetBeans > Issue Type: Bug > Components: docker - UI >Affects Versions: 11.0 >Reporter: Bartosz Tomasik >Assignee: Bartosz Tomasik >Priority: Minor > Labels: pull-request-available > Fix For: Next > > Attachments: image-2019-10-18-10-56-48-182.png, messages.log > > Time Spent: 7h 40m > Remaining Estimate: 0h > > "Add Docker instance" dialog ismissing option to connect via unix socket. > This is probably due to following lines commented out: > [https://github.com/apache/netbeans/blame/master/ide/docker.api/src/org/netbeans/modules/docker/api/DockerSupport.java#L133-L137] -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Created] (NETBEANS-3281) Unable to connect to docker in Java versions 13+
Paul Court created NETBEANS-3281: Summary: Unable to connect to docker in Java versions 13+ Key: NETBEANS-3281 URL: https://issues.apache.org/jira/browse/NETBEANS-3281 Project: NetBeans Issue Type: Bug Components: docker - UI Affects Versions: 11.1, 11.2 Reporter: Paul Court Attachments: image-2019-10-23-09-58-39-939.png, image-2019-10-23-10-20-59-303.png Attempting to add a Docker connection using Java version 13 or 14 fails with the following error:- !image-2019-10-23-09-58-39-939.png|width=460,height=316! Further investigation by [~ihsiak] in NETBEANS-2509 revealed the underlying problem to be: {code:java} java.net.SocketException: Cannot find method "setCreated" in java.net.Socket. Unsupported JVM?{code} I have recreated this on both Netbeans 11.1 and 11.2-beta3 using Java 13: {code:java} openjdk version "13" 2019-09-17 OpenJDK Runtime Environment (build 13+33) OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} With the full exception from messages.log being: {code:java} openjdk version "13" 2019-09-17 OpenJDK Runtime Environment (build 13+33) OpenJDK 64-Bit Server VM (build 13+33, mixed mode, sharing) {code} By switching to Java 12.0.2:- {code:java} ⚡ java -version openjdk version "12.0.2" 2019-07-16 OpenJDK Runtime Environment (build 12.0.2+10) OpenJDK 64-Bit Server VM (build 12.0.2+10, mixed mode, sharing) {code} The error goes away and local Docker can be interacted with successfully: !image-2019-10-23-10-20-59-303.png|width=281,height=181! -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Comment Edited] (NETBEANS-3254) Remove requirement for allowAmbiguousCommands in Maven support
[ https://issues.apache.org/jira/browse/NETBEANS-3254?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957663#comment-16957663 ] Eric Barboni edited comment on NETBEANS-3254 at 10/23/19 8:45 AM: -- Hi, may it be related to NETBEANS-2443 and NETBEANS-245. That produce syntax error with cli for profiler. Maybe a good rewrite of cli for windows needed here. I see from dev that [~lhochet] looks at the issue, would be good to assign to him if it's confirmed. was (Author: skygo): Hi, may it be related to NETBEANS-2443 and NETBEANS-245. That produce syntax error with cli for profiler. Maybe a good rewrite of cli for windows needed here. I see from dev that [~lhochet] looks at the issue. > Remove requirement for allowAmbiguousCommands in Maven support > -- > > Key: NETBEANS-3254 > URL: https://issues.apache.org/jira/browse/NETBEANS-3254 > Project: NetBeans > Issue Type: Bug > Components: projects - Maven >Affects Versions: 11.2 >Reporter: Neil C Smith >Priority: Critical > Fix For: 11.3 > > > The system property {{-J-DallowAmbiguousCommands=true }}was added to > netbeans.conf late in the 11.2 release process due to changes in recent JDKs > regarding process argument causing Maven builds to fail. The requirement for > this property to be set should be evaluated, and if at all possible, removed > in the 11.3 timeframe. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3254) Remove requirement for allowAmbiguousCommands in Maven support
[ https://issues.apache.org/jira/browse/NETBEANS-3254?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957663#comment-16957663 ] Eric Barboni commented on NETBEANS-3254: Hi, may it be related to NETBEANS-2443 and NETBEANS-245. That produce syntax error with cli for profiler. Maybe a good rewrite of cli for windows needed here. I see from dev that [~lhochet] looks at the issue. > Remove requirement for allowAmbiguousCommands in Maven support > -- > > Key: NETBEANS-3254 > URL: https://issues.apache.org/jira/browse/NETBEANS-3254 > Project: NetBeans > Issue Type: Bug > Components: projects - Maven >Affects Versions: 11.2 >Reporter: Neil C Smith >Priority: Critical > Fix For: 11.3 > > > The system property {{-J-DallowAmbiguousCommands=true }}was added to > netbeans.conf late in the 11.2 release process due to changes in recent JDKs > regarding process argument causing Maven builds to fail. The requirement for > this property to be set should be evaluated, and if at all possible, removed > in the 11.3 timeframe. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-2552) Fail to install nb-javac Library on NetBeans 11
[ https://issues.apache.org/jira/browse/NETBEANS-2552?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957652#comment-16957652 ] Rick Hegarty commented on NETBEANS-2552: I was seeing this problem with version 11.1 as well. However, the problem is resolved in 11.2 beta 3; installation of the *nb-javac* library worked flawlessly. > Fail to install nb-javac Library on NetBeans 11 > --- > > Key: NETBEANS-2552 > URL: https://issues.apache.org/jira/browse/NETBEANS-2552 > Project: NetBeans > Issue Type: Bug >Affects Versions: 11.0 > Environment: Product Version : Apache NetBeans IDE 11.0 (Build > incubator-netbeans-release-404-on-20190319) > Operating System : Windows 10 version 10.0 running on amd64 > Java; VM; Vendor : 12.0.1; Java HotSpot(TM) 64-Bit Server VM 12.0.1+12; > Oracle Corporation > Runtime : Java(TM) SE Runtime Environment 12.0.1+12 > System Locale; Encoding = fr_FR (nb); Cp1252 >Reporter: Jimmy Jeunemaître >Priority: Minor > Labels: nbjavac, reporting > > Got a notification titled "Install nb-javac Library" in the "Notifications" > window. > > Priority : SILENT Category : Info > There is a blue link that tell something like : _It is recommended to install > nb-javac Library to improve Java editing experience and enable compile on > save._ > I clicked on it, it tried to do something but then send the following > exception : > {code:java} > java.lang.IllegalStateException: Host module > StandardModule:org.netbeans.libs.javacimpl jarFile: C:\NetBeans > 11\netbeans\java\modules\org-netbeans-libs-javacimpl.jar was enabled before, > will not accept fragment StandardModule:org.netbeans.modules.nbjavac.impl > jarFile: > C:\Users\Username\AppData\Roaming\NetBeans\11.0\modules\org-netbeans-modules-nbjavac-impl.jar > at > org.netbeans.ModuleManager.attachModuleFragment(ModuleManager.java:1104) > at > org.netbeans.ModuleManager.maybeAddToEnableList(ModuleManager.java:1708) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1632) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1605) > at org.netbeans.core.startup.ModuleList.installNew(ModuleList.java:289) > at org.netbeans.core.startup.ModuleList.access$2400(ModuleList.java:93) > at > org.netbeans.core.startup.ModuleList$Listener.stepEnable(ModuleList.java:1384) > at > org.netbeans.core.startup.ModuleList$Listener.access$1400(ModuleList.java:982) > at > org.netbeans.core.startup.ModuleList$Listener$1.run(ModuleList.java:1206) > at > org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:102) > at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:494) > at org.netbeans.core.startup.ModuleList$Listener.run(ModuleList.java:1182) > at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) > at > org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) > at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278) > [catch] at > org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033) > {code} > I closed the window and tried again and got this one (slightly different I > guess) : > {code:java} > java.lang.IllegalStateException: Host module > StandardModule:org.netbeans.libs.javacimpl jarFile: C:\NetBeans > 11\netbeans\java\modules\org-netbeans-libs-javacimpl.jar was enabled before, > will not accept fragment StandardModule:org.netbeans.modules.nbjavac.impl > jarFile: > C:\Users\Username\AppData\Roaming\NetBeans\11.0\modules\org-netbeans-modules-nbjavac-impl.jar > at > org.netbeans.ModuleManager.attachModuleFragment(ModuleManager.java:1104) > at > org.netbeans.ModuleManager.maybeAddToEnableList(ModuleManager.java:1708) > at > org.netbeans.ModuleManager.maybeAddToEnableList(ModuleManager.java:1721) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1632) > at org.netbeans.ModuleManager.simulateEnable(ModuleManager.java:1605) > at > org.netbeans.modules.autoupdate.services.OperationValidator$EnableValidator.getModulesToEnable(OperationValidator.java:340) > at > org.netbeans.modules.autoupdate.services.OperationValidator$EnableValidator.getRequiredElementsImpl(OperationValidator.java:376) > at > org.netbeans.modules.autoupdate.services.OperationValidator.getRequiredElements(OperationValidator.java:108) > at > org.netbeans.modules.autoupdate.services.OperationContainerImpl$OperationInfoImpl.getRequiredElements(OperationContainerImpl.java:441) > at > org.netbeans.api.autoupdate.OperationContainer$OperationInfo.getRequiredElements(OperationContainer.java:371) > at > org.netbeans.modules.autoupdate.ui.ModuleInstallerSupport.installPlugins(ModuleInstallerS
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 919
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 7d4f39e Automated site publishing by Jenkins build 919 7d4f39e is described below commit 7d4f39e6f488e6a658254bb5fabca69b259879b2 Author: jenkins AuthorDate: Wed Oct 23 08:20:16 2019 + Automated site publishing by Jenkins build 919 --- content/download/nb112/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 6c25051..cb9674c 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -219,7 +219,7 @@ PHP RFC: Numeric Literal Separator: https://wiki.php.net/rfc/numeric_li -The donation of the NetBeans C and C features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C++ features. +The donation of the NetBeans C and C_\_ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C\_++\_ features. WildFly integration is supported by means of the http://plugins.netbeans.org/plugin/76472/wildfly-application-server";>WildFly Application Server plugin located in the Plugin Portal. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Escaping entities
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 195fab3 Escaping entities 195fab3 is described below commit 195fab326b873da6b7ee51e3c047eaa706a29ea9 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 10:17:47 2019 +0200 Escaping entities --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 2a81c32..d38278a 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -82,7 +82,7 @@ The highlights of the enhancements and fixes are listed below. == Notes -- The donation of the NetBeans C and C++ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C++ features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C++ features. +- The donation of the NetBeans C and C\_++\_ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C++ features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C\_++\_ features. - WildFly integration is supported by means of the link:http://plugins.netbeans.org/plugin/76472/wildfly-application-server[WildFly Application Server] plugin located in the Plugin Portal. - Support for JSF 2.3 is available as a pull request, too late for inclusion in 11.2, scheduled for 11.3: link:https://github.com/apache/netbeans/pull/1576[https://github.com/apache/netbeans/pull/1576] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 917
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 5c5102d Automated site publishing by Jenkins build 917 5c5102d is described below commit 5c5102d4ad5fc14c065299002734426b1a499c53 Author: jenkins AuthorDate: Wed Oct 23 08:13:26 2019 + Automated site publishing by Jenkins build 917 --- content/download/nb112/index.html | 34 -- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index f470a5b..6c25051 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -111,13 +111,43 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. Java -The highlights of enhancements in the Java area are… +The highlights of enhancements in the Java area are focused on support for JDK 13. + + + + +JEP 354: Switch Expressions (Preview Feature): https://openjdk.java.net/jeps/354";>https://openjdk.java.net/jeps/354 + + +JEP 355: Text Blocks (Preview Feature): https://openjdk.java.net/jeps/355";>https://openjdk.java.net/jeps/355 + + PHP -The highlights of enhancements in the PHP area are… +The highlights of enhancements in the PHP area are focused on support for PHP 7.4. + + + + +PHP RFC: Typed Properties 2.0: https://wiki.php.net/rfc/typed_properties_v2";>https://wiki.php.net/rfc/typed_properties_v2 + + +PHP RFC: Null Coalescing Assignment Operator: https://wiki.php.net/rfc/null_coalesce_equal_operator";>https://wiki.php.net/rfc/null_coalesce_equal_operator + + +PHP RFC: Spread Operator in Array Expression: https://wiki.php.net/rfc/spread_operator_for_array";>https://wiki.php.net/rfc/spread_operator_for_array + + +PHP RFC: Arrow Functions 2.0: https://wiki.php.net/rfc/arrow_functions_v2";>https://wiki.php.net/rfc/arrow_functions_v2 +PHP RFC: Numeric Literal Separator: https://wiki.php.net/rfc/numeric_literal_separator";>https://wiki.php.net/rfc/numeric_literal_separator + + +PHP RFC: New custom object serialization mechanism: https://wiki.php.net/rfc/custom_object_serialization";>https://wiki.php.net/rfc/custom_object_serialization + + - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: java and php content
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new b8a050e java and php content b8a050e is described below commit b8a050e150dad89e99c7e1f4015083b1e62a3723 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 10:10:20 2019 +0200 java and php content --- .../src/content/download/nb112/index.asciidoc | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index e2ac3e7..2a81c32 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -40,11 +40,21 @@ TIP: The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. Th === Java -The highlights of enhancements in the Java area are... +The highlights of enhancements in the Java area are focused on support for JDK 13. + +- JEP 354: Switch Expressions (Preview Feature): link:https://openjdk.java.net/jeps/354[https://openjdk.java.net/jeps/354] +- JEP 355: Text Blocks (Preview Feature): link:https://openjdk.java.net/jeps/355[https://openjdk.java.net/jeps/355] === PHP -The highlights of enhancements in the PHP area are... +The highlights of enhancements in the PHP area are focused on support for PHP 7.4. + +- PHP RFC: Typed Properties 2.0: link:https://wiki.php.net/rfc/typed_properties_v2[https://wiki.php.net/rfc/typed_properties_v2] +- PHP RFC: Null Coalescing Assignment Operator: link:https://wiki.php.net/rfc/null_coalesce_equal_operator[https://wiki.php.net/rfc/null_coalesce_equal_operator] +- PHP RFC: Spread Operator in Array Expression: link:https://wiki.php.net/rfc/spread_operator_for_array[https://wiki.php.net/rfc/spread_operator_for_array] +- PHP RFC: Arrow Functions 2.0: link:https://wiki.php.net/rfc/arrow_functions_v2[https://wiki.php.net/rfc/arrow_functions_v2] +PHP RFC: Numeric Literal Separator: link:https://wiki.php.net/rfc/numeric_literal_separator[https://wiki.php.net/rfc/numeric_literal_separator] +- PHP RFC: New custom object serialization mechanism: link:https://wiki.php.net/rfc/custom_object_serialization[https://wiki.php.net/rfc/custom_object_serialization] == Enhancements and Fixes - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 915
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 1695606 Automated site publishing by Jenkins build 915 1695606 is described below commit 169560635e696624ef5cb0ce02201a2d8bc7cafa Author: jenkins AuthorDate: Wed Oct 23 07:56:17 2019 + Automated site publishing by Jenkins build 915 --- content/download/nb112/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index daf19e4..f470a5b 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -189,7 +189,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. -The donation of the NetBeans C/C features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C/C features, once they land in the Apache NetBeans GitHub. +The donation of the NetBeans C and C features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C++ features. WildFly integration is supported by means of the http://plugins.netbeans.org/plugin/76472/wildfly-application-server";>WildFly Application Server plugin located in the Plugin Portal. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3280) finding feature does not terminate
[ https://issues.apache.org/jira/browse/NETBEANS-3280?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957637#comment-16957637 ] Geertjan Wielenga commented on NETBEANS-3280: - Make sure to be using 11.2 vc1 at this stage, which will most likely be the final 11.2 release. > finding feature does not terminate > > > Key: NETBEANS-3280 > URL: https://issues.apache.org/jira/browse/NETBEANS-3280 > Project: NetBeans > Issue Type: Improvement > Components: DukeScript >Affects Versions: 11.2 > Environment: ubunto 18.04 openjdk 11 >Reporter: Pieter van den Hombergh >Priority: Minor > > When I want to create a new maven project of type Java Fronten Application, > the > wizard tells me to press next to activate the feature. When I do, nothing > happens, at least not > while my patience lasts (which is two coffee). > What feature needs activation, so I might be able to do that by hand. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Commented] (NETBEANS-3280) finding feature does not terminate
[ https://issues.apache.org/jira/browse/NETBEANS-3280?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16957636#comment-16957636 ] Geertjan Wielenga commented on NETBEANS-3280: - Best to restart from scratch, with fresh userdir, and then try to reproduce again. Also try the Gradle-based approach. > finding feature does not terminate > > > Key: NETBEANS-3280 > URL: https://issues.apache.org/jira/browse/NETBEANS-3280 > Project: NetBeans > Issue Type: Improvement > Components: DukeScript >Affects Versions: 11.2 > Environment: ubunto 18.04 openjdk 11 >Reporter: Pieter van den Hombergh >Priority: Minor > > When I want to create a new maven project of type Java Fronten Application, > the > wizard tells me to press next to activate the feature. When I do, nothing > happens, at least not > while my patience lasts (which is two coffee). > What feature needs activation, so I might be able to do that by hand. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-3280) finding feature does not terminate
[ https://issues.apache.org/jira/browse/NETBEANS-3280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Geertjan Wielenga updated NETBEANS-3280: Component/s: DukeScript > finding feature does not terminate > > > Key: NETBEANS-3280 > URL: https://issues.apache.org/jira/browse/NETBEANS-3280 > Project: NetBeans > Issue Type: Improvement > Components: DukeScript >Affects Versions: 11.2 > Environment: ubunto 18.04 openjdk 11 >Reporter: Pieter van den Hombergh >Priority: Minor > > When I want to create a new maven project of type Java Fronten Application, > the > wizard tells me to press next to activate the feature. When I do, nothing > happens, at least not > while my patience lasts (which is two coffee). > What feature needs activation, so I might be able to do that by hand. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-3280) finding feature does not terminate
[ https://issues.apache.org/jira/browse/NETBEANS-3280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Geertjan Wielenga updated NETBEANS-3280: Component/s: (was: apisupport - Maven) > finding feature does not terminate > > > Key: NETBEANS-3280 > URL: https://issues.apache.org/jira/browse/NETBEANS-3280 > Project: NetBeans > Issue Type: Improvement >Affects Versions: 11.2 > Environment: ubunto 18.04 openjdk 11 >Reporter: Pieter van den Hombergh >Priority: Minor > > When I want to create a new maven project of type Java Fronten Application, > the > wizard tells me to press next to activate the feature. When I do, nothing > happens, at least not > while my patience lasts (which is two coffee). > What feature needs activation, so I might be able to do that by hand. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: C/C++ notes
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 03b97aa C/C++ notes 03b97aa is described below commit 03b97aadf7dd8bf9bb10652a855833de97bbde88 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 09:51:37 2019 +0200 C/C++ notes --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 0be2d12..e2ac3e7 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -72,7 +72,7 @@ The highlights of the enhancements and fixes are listed below. == Notes -- The donation of the NetBeans C/C++ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C/C++ features, once they land in the Apache NetBeans GitHub. +- The donation of the NetBeans C and C++ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C and C++ features, once they land in the Apache NetBeans GitHub. Until then, go to the Plugin Manager, enable the NetBeans IDE 8.2 Update Center, which lets you install the NetBeans IDE 8.2 modules providing C and C++ features. - WildFly integration is supported by means of the link:http://plugins.netbeans.org/plugin/76472/wildfly-application-server[WildFly Application Server] plugin located in the Plugin Portal. - Support for JSF 2.3 is available as a pull request, too late for inclusion in 11.2, scheduled for 11.3: link:https://github.com/apache/netbeans/pull/1576[https://github.com/apache/netbeans/pull/1576] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Updated] (NETBEANS-3280) finding feature does not terminate
[ https://issues.apache.org/jira/browse/NETBEANS-3280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pieter van den Hombergh updated NETBEANS-3280: -- Summary: finding feature does not terminate (was: finding feauture does not terminate ) > finding feature does not terminate > > > Key: NETBEANS-3280 > URL: https://issues.apache.org/jira/browse/NETBEANS-3280 > Project: NetBeans > Issue Type: Improvement > Components: apisupport - Maven >Affects Versions: 11.2 > Environment: ubunto 18.04 openjdk 11 >Reporter: Pieter van den Hombergh >Priority: Minor > > When I want to create a new maven project of type Java Fronten Application, > the > wizard tells me to press next to activate the feature. When I do, nothing > happens, at least not > while my patience lasts (which is two coffee). > What feature needs activation, so I might be able to do that by hand. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[jira] [Created] (NETBEANS-3280) finding feauture does not terminate
Pieter van den Hombergh created NETBEANS-3280: - Summary: finding feauture does not terminate Key: NETBEANS-3280 URL: https://issues.apache.org/jira/browse/NETBEANS-3280 Project: NetBeans Issue Type: Improvement Components: apisupport - Maven Affects Versions: 11.2 Environment: ubunto 18.04 openjdk 11 Reporter: Pieter van den Hombergh When I want to create a new maven project of type Java Fronten Application, the wizard tells me to press next to activate the feature. When I do, nothing happens, at least not while my patience lasts (which is two coffee). What feature needs activation, so I might be able to do that by hand. -- This message was sent by Atlassian Jira (v8.3.4#803005) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 913
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 2ebf9e8 Automated site publishing by Jenkins build 913 2ebf9e8 is described below commit 2ebf9e8031194c646f2def5d932918ffa4f7cf8a Author: jenkins AuthorDate: Wed Oct 23 07:48:56 2019 + Automated site publishing by Jenkins build 913 --- content/download/nb112/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 83ee1be..daf19e4 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -189,7 +189,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. -The donation of the C/Cplusplus-related features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C/C++ features, once they land in the Apache NetBeans GitHub. +The donation of the NetBeans C/C features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C/C features, once they land in the Apache NetBeans GitHub. WildFly integration is supported by means of the http://plugins.netbeans.org/plugin/76472/wildfly-application-server";>WildFly Application Server plugin located in the Plugin Portal. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 912
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new dbf70c4 Automated site publishing by Jenkins build 912 dbf70c4 is described below commit dbf70c4a0d5f76d8b5295e7e61162c5f8c24017b Author: jenkins AuthorDate: Wed Oct 23 07:46:26 2019 + Automated site publishing by Jenkins build 912 --- content/download/nb112/index.html | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 6c2c230..83ee1be 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -148,7 +148,7 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. Upgraded Payara support to Payara Platform 5.193: https://github.com/apache/netbeans/pull/1470";>https://github.com/apache/netbeans/pull/1470 -Gradle enhancements include being able to read the JDK’s "--enable-preview": https://github.com/apache/netbeans/pull/1494";>https://github.com/apache/netbeans/pull/1494 +Various Gradle enhancements, include being able to read JVM arguments, such as the JDK’s "--enable-preview": https://github.com/apache/netbeans/pulls?q=is%3Apr+label%3AGradle+is%3Aclosed";>https://github.com/apache/netbeans/pulls?q=is%3Apr+label%3AGradle+is%3Aclosed Amazon-related updates: https://github.com/apache/netbeans/pull/1312";>https://github.com/apache/netbeans/pull/1312 @@ -194,6 +194,9 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. WildFly integration is supported by means of the http://plugins.netbeans.org/plugin/76472/wildfly-application-server";>WildFly Application Server plugin located in the Plugin Portal. + +Support for JSF 2.3 is available as a pull request, too late for inclusion in 11.2, scheduled for 11.3: https://github.com/apache/netbeans/pull/1576";>https://github.com/apache/netbeans/pull/1576 + - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: c/c++ info
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 3aa6f44 c/c++ info 3aa6f44 is described below commit 3aa6f44e630ab4e10475f7b52af5283dc83bb147 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 09:44:17 2019 +0200 c/c++ info --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 8711244..0be2d12 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -72,7 +72,7 @@ The highlights of the enhancements and fixes are listed below. == Notes -- The donation of the C/Cplusplus-related features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C/C++ features, once they land in the Apache NetBeans GitHub. +- The donation of the NetBeans C/C++ features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C/C++ features, once they land in the Apache NetBeans GitHub. - WildFly integration is supported by means of the link:http://plugins.netbeans.org/plugin/76472/wildfly-application-server[WildFly Application Server] plugin located in the Plugin Portal. - Support for JSF 2.3 is available as a pull request, too late for inclusion in 11.2, scheduled for 11.3: link:https://github.com/apache/netbeans/pull/1576[https://github.com/apache/netbeans/pull/1576] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: jsf 2.3 info
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new b246349 jsf 2.3 info b246349 is described below commit b246349a042961cd4b0154ba7daad2e438deaa7d Author: Geertjan Wielenga AuthorDate: Wed Oct 23 09:43:08 2019 +0200 jsf 2.3 info --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 0e9a37a..8711244 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -58,7 +58,7 @@ The highlights of the enhancements and fixes are listed below. - Enhancement to the installer enables subsets of Apache NetBeans to be installed: https://github.com/apache/netbeans/pull/1505 - Performance enhancement: link:https://github.com/apache/netbeans/pull/1430[https://github.com/apache/netbeans/pull/1430] - Upgraded Payara support to Payara Platform 5.193: link:https://github.com/apache/netbeans/pull/1470[https://github.com/apache/netbeans/pull/1470] -- Gradle enhancements include being able to read the JDK's "--enable-preview": link:https://github.com/apache/netbeans/pull/1494[https://github.com/apache/netbeans/pull/1494] +- Various Gradle enhancements, include being able to read JVM arguments, such as the JDK's "--enable-preview": link:https://github.com/apache/netbeans/pulls?q=is%3Apr+label%3AGradle+is%3Aclosed[https://github.com/apache/netbeans/pulls?q=is%3Apr+label%3AGradle+is%3Aclosed] - Amazon-related updates: link:https://github.com/apache/netbeans/pull/1312[https://github.com/apache/netbeans/pull/1312] - LSP server for Java: link:https://github.com/apache/netbeans/pull/926[https://github.com/apache/netbeans/pull/926] - HTML5 attribute syntax support: link:https://github.com/apache/netbeans/pull/1380[https://github.com/apache/netbeans/pull/1380] @@ -74,4 +74,5 @@ The highlights of the enhancements and fixes are listed below. - The donation of the C/Cplusplus-related features from Oracle to Apache was not complete at the time of the 11.2 release, though it is not far off, and the 11.3 release (January 2020) is scheduled to focus primarily on the integration of the C/C++ features, once they land in the Apache NetBeans GitHub. - WildFly integration is supported by means of the link:http://plugins.netbeans.org/plugin/76472/wildfly-application-server[WildFly Application Server] plugin located in the Plugin Portal. +- Support for JSF 2.3 is available as a pull request, too late for inclusion in 11.2, scheduled for 11.3: link:https://github.com/apache/netbeans/pull/1576[https://github.com/apache/netbeans/pull/1576] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 910
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 5ba51e2 Automated site publishing by Jenkins build 910 5ba51e2 is described below commit 5ba51e270601985076ad0bac935d34b27d096945 Author: jenkins AuthorDate: Wed Oct 23 07:36:52 2019 + Automated site publishing by Jenkins build 910 --- content/download/nb112/index.html | 34 -- 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/content/download/nb112/index.html b/content/download/nb112/index.html index 9ed1153..6c2c230 100644 --- a/content/download/nb112/index.html +++ b/content/download/nb112/index.html @@ -71,7 +71,6 @@ -Release Highlights Release Drivers Java @@ -107,27 +106,6 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. -Release Highlights - - - - -JDK 13 support - - -PHP 7.4 support - - -JavaScript parser is now correctly licensed and no longer needs to be installed separately: https://github.com/apache/netbeans/pull/1407";>https://github.com/apache/netbeans/pull/1407 - - -Enhancement to the installer enables subsets of Apache NetBeans to be installed: https://github.com/apache/netbeans/pull/1505"; class="bare">https://github.com/apache/netbeans/pull/1505 - - - - - - Release Drivers @@ -158,6 +136,18 @@ The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11. +JavaScript parser is now correctly licensed and no longer needs to be installed separately: https://github.com/apache/netbeans/pull/1407";>https://github.com/apache/netbeans/pull/1407 + + +Enhancement to the installer enables subsets of Apache NetBeans to be installed: https://github.com/apache/netbeans/pull/1505"; class="bare">https://github.com/apache/netbeans/pull/1505 + + +Performance enhancement: https://github.com/apache/netbeans/pull/1430";>https://github.com/apache/netbeans/pull/1430 + + +Upgraded Payara support to Payara Platform 5.193: https://github.com/apache/netbeans/pull/1470";>https://github.com/apache/netbeans/pull/1470 + + Gradle enhancements include being able to read the JDK’s "--enable-preview": https://github.com/apache/netbeans/pull/1494";>https://github.com/apache/netbeans/pull/1494 - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated: Various updates
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/master by this push: new 695ef73 Various updates 695ef73 is described below commit 695ef734fc330c46d98ea8ca9a8de4177709c244 Author: Geertjan Wielenga AuthorDate: Wed Oct 23 09:34:11 2019 +0200 Various updates --- netbeans.apache.org/src/content/download/nb112/index.asciidoc | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/netbeans.apache.org/src/content/download/nb112/index.asciidoc b/netbeans.apache.org/src/content/download/nb112/index.asciidoc index 5446aa3..0e9a37a 100644 --- a/netbeans.apache.org/src/content/download/nb112/index.asciidoc +++ b/netbeans.apache.org/src/content/download/nb112/index.asciidoc @@ -36,13 +36,6 @@ Apache NetBeans 11.2 is the second Apache NetBeans release outside the Apache In TIP: The LTS release of the Apache NetBeans 11 cycle is Apache NetBeans 11.0. The 11.1 and 11.2 releases have not been tested as heavily as the LTS release and may therefore be less stable. Use 11.2 to use the latest features and to provide feedback for the next LTS release, scheduled for April 2020. Go here to download link:/download/nb110/nb110.html[Apache NetBeans 11.0], the current LTS release. -== Release Highlights - -- JDK 13 support -- PHP 7.4 support -- JavaScript parser is now correctly licensed and no longer needs to be installed separately: link:https://github.com/apache/netbeans/pull/1407[https://github.com/apache/netbeans/pull/1407] -- Enhancement to the installer enables subsets of Apache NetBeans to be installed: https://github.com/apache/netbeans/pull/1505 - == Release Drivers === Java @@ -61,6 +54,10 @@ The highlights of the enhancements and fixes are listed below. === Enhancements +- JavaScript parser is now correctly licensed and no longer needs to be installed separately: link:https://github.com/apache/netbeans/pull/1407[https://github.com/apache/netbeans/pull/1407] +- Enhancement to the installer enables subsets of Apache NetBeans to be installed: https://github.com/apache/netbeans/pull/1505 +- Performance enhancement: link:https://github.com/apache/netbeans/pull/1430[https://github.com/apache/netbeans/pull/1430] +- Upgraded Payara support to Payara Platform 5.193: link:https://github.com/apache/netbeans/pull/1470[https://github.com/apache/netbeans/pull/1470] - Gradle enhancements include being able to read the JDK's "--enable-preview": link:https://github.com/apache/netbeans/pull/1494[https://github.com/apache/netbeans/pull/1494] - Amazon-related updates: link:https://github.com/apache/netbeans/pull/1312[https://github.com/apache/netbeans/pull/1312] - LSP server for Java: link:https://github.com/apache/netbeans/pull/926[https://github.com/apache/netbeans/pull/926] - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 908
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/netbeans-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 3a3e5e1 Automated site publishing by Jenkins build 908 3a3e5e1 is described below commit 3a3e5e15d18f7e0c63399c60f5a300244830fc84 Author: jenkins AuthorDate: Wed Oct 23 07:24:24 2019 + Automated site publishing by Jenkins build 908 --- content/download/nb110/nb110.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/download/nb110/nb110.html b/content/download/nb110/nb110.html index 19abf72..7745a87 100644 --- a/content/download/nb110/nb110.html +++ b/content/download/nb110/nb110.html @@ -139,7 +139,7 @@ Since releasing 11.0, feature update 1, that is, Apache NetBeans 11.1, has been -Experimental installers for Apache NetBeans 11.0 are available https://github.com/rtaneja1/incubator-netbeans/tree/installer-bin-11vc4/nbbuild/installer/binaries";>here, however note these have not been validated by Apache yet, which is scheduled for the next release, based on work done in https://github.com/apache/incubator-netbeans/pull/1052";>PR-1052. +Installers have been introduced for the first time in the next release, in Apache NetBeans 11.1. Go https://netbeans.apache.org/download/nb111/nb111.html";>here for details. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] 01/01: Merge pull request #421 from apache/geertjanw-patch-20
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git commit 76a1e2e8ba1bcb2c1b7e8d6c48a60aadaefb31e0 Merge: 58f07fa 495347e Author: Geertjan Wielenga AuthorDate: Wed Oct 23 09:21:58 2019 +0200 Merge pull request #421 from apache/geertjanw-patch-20 Changing reference to installers to point to 11.1 netbeans.apache.org/src/content/download/nb110/nb110.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch master updated (58f07fa -> 76a1e2e)
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-website.git. from 58f07fa Update index.asciidoc add 495347e Changing reference to installers to point to 11.1 new 76a1e2e Merge pull request #421 from apache/geertjanw-patch-20 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: netbeans.apache.org/src/content/download/nb110/nb110.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
[netbeans-website] branch geertjanw-patch-20 created (now 495347e)
This is an automated email from the ASF dual-hosted git repository. geertjan pushed a change to branch geertjanw-patch-20 in repository https://gitbox.apache.org/repos/asf/netbeans-website.git. at 495347e Changing reference to installers to point to 11.1 No new revisions were added by this update. - To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists