[incubator-netbeans-html4j] branch master updated: NetBeans 8.2 @ServiceProvider processor is more friendly to post 1.8 JDKs

2018-09-17 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 78c3810  NetBeans 8.2 @ServiceProvider processor is more friendly to 
post 1.8 JDKs
78c3810 is described below

commit 78c3810d47fe0c95ca6bcaf62be92bcb051680ba
Author: Jaroslav Tulach 
AuthorDate: Tue Sep 18 07:08:29 2018 +0200

NetBeans 8.2 @ServiceProvider processor is more friendly to post 1.8 JDKs
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 78502d9..8da5dfb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,7 +33,7 @@
 
   
   UTF-8
-  RELEASE80
+  RELEASE82
   2.3.8
   COPYING
   


-
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



[incubator-netbeans-html4j] branch master updated (85cb22a -> 98b478e)

2018-09-17 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

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


from 85cb22a  Properly construct delegating visitor to make sure all 
annotations are copied
 new 0957c5b  Only ask for the Method addURL when the lib/jfxrt.jar file 
exists
 new 98b478e  Removing unused imports

The 2 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:
 .../src/main/java/org/netbeans/html/boot/fx/FXGCPresenter.java| 4 ++--
 boot-fx/src/main/java/org/netbeans/html/boot/fx/FXPresenter.java  | 4 ++--
 .../src/test/java/org/netbeans/html/context/spi/ContextsTest.java | 8 +---
 3 files changed, 5 insertions(+), 11 deletions(-)


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

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



[incubator-netbeans-html4j] 01/02: Only ask for the Method addURL when the lib/jfxrt.jar file exists

2018-09-17 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

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

commit 0957c5b62cf29dab7c89b3761792078541b761d2
Author: Jaroslav Tulach 
AuthorDate: Tue Sep 18 05:44:03 2018 +0200

Only ask for the Method addURL when the lib/jfxrt.jar file exists
---
 boot-fx/src/main/java/org/netbeans/html/boot/fx/FXGCPresenter.java | 4 ++--
 boot-fx/src/main/java/org/netbeans/html/boot/fx/FXPresenter.java   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXGCPresenter.java 
b/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXGCPresenter.java
index 330b13a..03f1594 100644
--- a/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXGCPresenter.java
+++ b/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXGCPresenter.java
@@ -41,10 +41,10 @@ public final class FXGCPresenter extends 
AbstractFXPresenter {
 Class c = Class.forName("javafx.application.Platform");
 // OK, on classpath
 } catch (ClassNotFoundException classNotFoundException) {
-Method m = URLClassLoader.class.getDeclaredMethod("addURL", 
URL.class);
-m.setAccessible(true);
 File f = new File(System.getProperty("java.home"), 
"lib/jfxrt.jar");
 if (f.exists()) {
+Method m = 
URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
+m.setAccessible(true);
 URL l = f.toURI().toURL();
 m.invoke(ClassLoader.getSystemClassLoader(), l);
 }
diff --git a/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXPresenter.java 
b/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXPresenter.java
index 1554113..4777a86 100644
--- a/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXPresenter.java
+++ b/boot-fx/src/main/java/org/netbeans/html/boot/fx/FXPresenter.java
@@ -41,10 +41,10 @@ public final class FXPresenter extends AbstractFXPresenter {
 Class c = Class.forName("javafx.application.Platform");
 // OK, on classpath
 } catch (ClassNotFoundException classNotFoundException) {
-Method m = URLClassLoader.class.getDeclaredMethod("addURL", 
URL.class);
-m.setAccessible(true);
 File f = new File(System.getProperty("java.home"), 
"lib/jfxrt.jar");
 if (f.exists()) {
+Method m = 
URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
+m.setAccessible(true);
 URL l = f.toURI().toURL();
 m.invoke(ClassLoader.getSystemClassLoader(), l);
 }


-
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



[incubator-netbeans-html4j] 02/02: Removing unused imports

2018-09-17 Thread jtulach
This is an automated email from the ASF dual-hosted git repository.

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

commit 98b478e3998344aa0e469b64d8cc8250683d0ef4
Author: Jaroslav Tulach 
AuthorDate: Tue Sep 18 05:47:59 2018 +0200

Removing unused imports
---
 .../src/test/java/org/netbeans/html/context/spi/ContextsTest.java | 8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git 
a/context/src/test/java/org/netbeans/html/context/spi/ContextsTest.java 
b/context/src/test/java/org/netbeans/html/context/spi/ContextsTest.java
index 59bbb79..36c9c4b 100644
--- a/context/src/test/java/org/netbeans/html/context/spi/ContextsTest.java
+++ b/context/src/test/java/org/netbeans/html/context/spi/ContextsTest.java
@@ -18,14 +18,8 @@
  */
 package org.netbeans.html.context.spi;
 
-import javax.xml.ws.ServiceMode;
-import net.java.html.BrwsrCtx;
 import org.openide.util.lookup.ServiceProvider;
-import static org.testng.Assert.*;
-import org.testng.annotations.AfterClass;
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.BeforeClass;
-import org.testng.annotations.BeforeMethod;
+import static org.testng.Assert.assertEquals;
 import org.testng.annotations.Test;
 
 /**


-
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-1086) Local IDE + remote server with PHP and Xdebug - Error occured during communication with Xdebug.

2018-09-17 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto reassigned NETBEANS-1086:
--

Assignee: (was: Junichi Yamamoto)

> Local IDE + remote server with PHP and Xdebug - Error occured during 
> communication with Xdebug.
> ---
>
> Key: NETBEANS-1086
> URL: https://issues.apache.org/jira/browse/NETBEANS-1086
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Debugger
>Affects Versions: 8.2
> Environment: * On my development machine (Windows 10, NetBeans IDE 
> 8.2, local IP 192.168.0.15) I've created a "PHP Application from Remote 
> Server" project.
> * On my server (debian, armhf, 4.14.18-sunxi, local IP 192.168.0.3) I have 
> (among other things) nginx 1.10.3, php 7.0.30 (with Xdebug enabled) running 
> to host my public web site.
>Reporter: den0x
>Priority: Major
> Attachments: IDE.log
>
>
> Product Version = NetBeans IDE 8.2 (Build 201609300101)
> Operating System = Windows 10 version 10.0 running on amd64
> Java; VM; Vendor = 1.8.0_101
> Runtime = Java HotSpot(TM) 64-Bit Server VM 25.101-b13
> Reproducibility: Happens every time
> STEPS:
>  * On my development machine (Windows 10, NetBeans IDE 8.2, local IP 
> 192.168.0.15) I've created a "PHP Application from Remote Server" project.
>  * On my server (debian, armhf, 4.14.18-sunxi, local IP 192.168.0.3) I have 
> (among other things) nginx 1.10.3, php 7.0.30 (with Xdebug enabled) running 
> to host my public web site.
>  * My xdebug.ini file is configured correctly (port 9000, remote_host set to 
> 192.168.0.15)
>  * My NetBeans IDE debugging settings match this (port 9000), and path has 
> been mapped between development machine and server
>  * My Wndows firewall is configured to allow connections from/to 192.168.0.3
>  * Set a breakpoint (in the code, or through the IDE GUI) and debug the 
> selected file
> ACTUAL:
>  * The public link is launched with the correct parameters, netbeans 
> debugging (with the correct session ID) is running, and I see entries in my 
> xdebug.log
>  * I immediately get several of the same error pop-up messages in NetBeans 
> stating "Error occured during communication with Xdebug."
>  * The entries in xdebug log (see below) indicate that breakpoints are 
> getting set, however, the last command that is sent "run -i " 
> (not sure where this is comming from) causes 
>  * Even though NetBeans says that the debugger is running, the last command 
> that was sent to xdebug indicates that the debug has stopped
>  * No stepping through the code is possible through NetBeans IDE, the 
> connection seems closed from my server point of view
>  * After stopping the debugger in NetBeans IDE a final command "stop -i 
> " is sent, and the response with status "stopped" is returned.
>  * Why do I get this error in NetBeans and why can I not step through the 
> code live?
> EXPECTED:
>  * Able to see the breakpoint in the NetBeans IDE and step through the code
> ADDITIONAL ISSUE (also visible in the IDE.log):
> I'm unable to log any issue from the NetBeans IDE directly, regardless of 
> reloading attributes, restarting NetBeans, etc.
> INFO [org.netbeans.modules.bugtracking.commons.AutoupdateSupport]: Bugzilla 
> repository [https://netbeans.org/bugzilla] has version 4.4.11. 
> INFO 
> [org.netbeans.modules.autoupdate.updateprovider.AutoupdateCatalogParser]: 
> Unpaired license 0008 without any module.
> INFO [org.netbeans.modules.mylyn.util.commands.SubmitTaskCommand]: Command 
> failed with status: Status ERROR: org.eclipse.mylyn.bugzilla code=99 
> MylynStatus null
> ENTRIES IN /etc/php/7.0/fpm/conf.d/99-xdebug.ini
> [xdebug]
> zend_extension="xdebug.so"
> ;xdebug.remote_host=127.0.0.1
> ;zend_extension=/usr/lib/php/20151012/xdebug.so
> xdebug.remote_enable=1
> xdebug.remote_host=192.168.0.15
> xdebug.remote_port=9000
> xdebug.remote_mode=req
> xdebug.remote_autostart=0
> xdebug.remote_connect_back=0
> xdebug.idekey="dbgp"
> output_buffering=off
> xdebug.remote_handler=dbgp
> xdebug.profiler_enable_trigger_value="dbgp"
> xdebug.trace_enable_trigger_value="dbgp"
> xdebug.profiler_enable=0
> xdebug.profiler_enable_trigger=1
> xdebug.trace_enable_trigger=1
> xdebug.profiler_output_dir="/var/log/xdebug"
> xdebug.gc_stats_output_dir="/var/log/xdebug"
> xdebug.trace_output_dir="/var/log/xdebug"
> xdebug.remote_log="/var/log/xdebug/remote.log"
> xdebug.coverage_enable=0
> xdebug.extended_info=0
> xdebug.profiler_append=1
> xdebug.trace_options=1
> xdebug.collect_params=1
> ENTRIES IN XDEBUG.LOG (the paths have been modified for security purposes):
> [19057] Log opened at 2018-07-30 16:43:40
> [19057] I: Connecting to configured address/port: 192.168.0.15:9000.
> [19057] I: Connected to client. 

[jira] [Created] (NETBEANS-1261) Thin grey line under active tab on MacOS retina screens

2018-09-17 Thread Eirik Bakke (JIRA)
Eirik Bakke created NETBEANS-1261:
-

 Summary: Thin grey line under active tab on MacOS retina screens
 Key: NETBEANS-1261
 URL: https://issues.apache.org/jira/browse/NETBEANS-1261
 Project: NetBeans
  Issue Type: Bug
  Components: platform - Window System
Affects Versions: 9.0
 Environment: MacOS with Retina display
Reporter: Eirik Bakke
 Attachments: Thin grey line.png

There is a small rendering artifact, visible on retina screens (e.g. MacBook 
Pro) on the Aqua LAF, under the active TopComponent tab--a thin grey line that 
should not be there. See the attached screenshot. I'll submit a patch fixing 
this after making sure it doesn't cause other problems.



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

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

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



[jira] [Updated] (NETBEANS-49) Please add smooth scrolling

2018-09-17 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot updated NETBEANS-49:
---
Labels: pull-request-available  (was: )

> Please add smooth scrolling 
> 
>
> Key: NETBEANS-49
> URL: https://issues.apache.org/jira/browse/NETBEANS-49
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Window System
>Reporter: Christian Lenz
>Priority: Major
>  Labels: pull-request-available
>
> Inside the editor, when I scroll with my touchpad to the bottom, it jumps 9 
> lines to the next, this is a lot. I don't like such gappings I would like to 
> have a smooth stepless scrolling, like in chrome or other windows native 
> apps. Please add this for horizontal and vertical scrolling, it will be much 
> better. Not only in editors, it should be available everywhere, where we have 
> scrollbars.
> Regards
> Chris



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

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

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



[jira] [Created] (NETBEANS-1260) HiDPI icons in tabcontrol and openide.awt modules for Aqua (MacOS) LAF

2018-09-17 Thread Eirik Bakke (JIRA)
Eirik Bakke created NETBEANS-1260:
-

 Summary: HiDPI icons in tabcontrol and openide.awt modules for 
Aqua (MacOS) LAF
 Key: NETBEANS-1260
 URL: https://issues.apache.org/jira/browse/NETBEANS-1260
 Project: NetBeans
  Issue Type: Bug
  Components: platform - Window System
Affects Versions: 9.0
 Environment: MacOS
Reporter: Eirik Bakke


To look good on MacBook Pro and other Apple computers with Retina screens, the 
various icons that are part of NetBeans' window system must be made available 
in both 100% and 200% sizes. This includes, for instance, the "X" button that 
is used to close tabs, the "_" button that collapses a sidebar, or the ">>" 
button that shows hidden toolbar icons. These icons reside in the tabcontrol 
and openide.awt modules.

I'll soon submit a pull request that fixes this by providing vectorized 
versions of the relevant window system icons. The approach is the same as is 
taken for the Windows LAF, in NETBEANS-1238.



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

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

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



[incubator-netbeans-jackpot30] branch master updated (052839d -> 6458ee4)

2018-09-17 Thread geertjan
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/incubator-netbeans-jackpot30.git.


from 052839d  Cleaning up command line Jackpot, trying to fix build and 
support for JDK 10 and other cleanup.
 add e0596a1  Run RAT, fixing the RAT report.
 add 8505288  Must specify harness when running any target.
 add 89813a8  Improving test stability; adding license and notice files 
into jars.
 add aa60fee  Excluding binary notice file.
 add 92a185e  Including Byte Buddy, updating LICENSE and NOTICE, tweaking 
the start script to work on both JDK 8 and JDK 10+.
 new 6458ee4  Merge pull request #2 from jlahoda/rat

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:
 .travis.yml|   1 +
 NOTICE |   2 +-
 cmdline/ant/build.xml  |   6 +
 cmdline/build.xml  |  44 ++
 cmdline/lib/nbproject/project.properties   |   2 +-
 .../jackpot30/cmdline/lib/CreateStandaloneJar.java |  24 +-
 cmdline/rat-exclusions.txt |  38 +
 cmdline/tool/build.xml |  26 +-
 cmdline/tool/nbproject/project.properties  |   2 +-
 cmdline/tool/scripts/LICENSE-bin-tool.txt  | 806 +
 cmdline/tool/scripts/NOTICE-bin-tool.txt   | 111 +++
 cmdline/tool/scripts/README|   0
 cmdline/tool/scripts/jackpot   |   2 +-
 .../modules/jackpot30/cmdline/cfg_hints.xml|  17 +
 .../modules/jackpot30/cmdline/CreateToolTest.java  |   4 +
 .../modules/jackpot30/cmdline/MainTest.java|   2 +-
 16 files changed, 1057 insertions(+), 30 deletions(-)
 create mode 100644 cmdline/rat-exclusions.txt
 create mode 100644 cmdline/tool/scripts/LICENSE-bin-tool.txt
 create mode 100644 cmdline/tool/scripts/NOTICE-bin-tool.txt
 delete mode 100644 cmdline/tool/scripts/README


-
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



[incubator-netbeans-jackpot30] 01/01: Merge pull request #2 from jlahoda/rat

2018-09-17 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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

commit 6458ee4bffe10ec1e17d8bb978ceb718b456a3ea
Merge: 052839d 92a185e
Author: Geertjan Wielenga 
AuthorDate: Mon Sep 17 21:52:31 2018 +0200

Merge pull request #2 from jlahoda/rat

Run RAT, fixing the RAT report.

 .travis.yml|   1 +
 NOTICE |   2 +-
 cmdline/ant/build.xml  |   6 +
 cmdline/build.xml  |  44 ++
 cmdline/lib/nbproject/project.properties   |   2 +-
 .../jackpot30/cmdline/lib/CreateStandaloneJar.java |  24 +-
 cmdline/rat-exclusions.txt |  38 +
 cmdline/tool/build.xml |  26 +-
 cmdline/tool/nbproject/project.properties  |   2 +-
 cmdline/tool/scripts/LICENSE-bin-tool.txt  | 806 +
 cmdline/tool/scripts/NOTICE-bin-tool.txt   | 111 +++
 cmdline/tool/scripts/README|   0
 cmdline/tool/scripts/jackpot   |   2 +-
 .../modules/jackpot30/cmdline/cfg_hints.xml|  17 +
 .../modules/jackpot30/cmdline/CreateToolTest.java  |   4 +
 .../modules/jackpot30/cmdline/MainTest.java|   2 +-
 16 files changed, 1057 insertions(+), 30 deletions(-)


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

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



[incubator-netbeans] branch master updated (b212f77 -> a31c025)

2018-09-17 Thread geertjan
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/incubator-netbeans.git.


from b212f77  Merge pull request #869 from 
apache/welcome-screen-whatsnewlink
 add f02b08a  Update community.url
 new a31c025  Merge pull request #870 from 
apache/NETBEANS-1243-communitylink

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:
 nb/welcome/src/org/netbeans/modules/welcome/resources/community.url | 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



[incubator-netbeans] 01/01: Merge pull request #870 from apache/NETBEANS-1243-communitylink

2018-09-17 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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

commit a31c025cb0bd9fa309045dd9243470628ccebfc3
Merge: b212f77 f02b08a
Author: Geertjan Wielenga 
AuthorDate: Mon Sep 17 21:02:34 2018 +0200

Merge pull request #870 from apache/NETBEANS-1243-communitylink

[NETBEANS-1243] Community link

 nb/welcome/src/org/netbeans/modules/welcome/resources/community.url | 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



[incubator-netbeans] branch master updated (af05e17 -> b212f77)

2018-09-17 Thread geertjan
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/incubator-netbeans.git.


from af05e17  Merge pull request #849 from arusinha/netbeans-862
 add 8e3fd93  Update whatsnew.url
 new b212f77  Merge pull request #869 from 
apache/welcome-screen-whatsnewlink

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:
 nb/welcome/src/org/netbeans/modules/welcome/resources/whatsnew.url | 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



[incubator-netbeans] 01/01: Merge pull request #869 from apache/welcome-screen-whatsnewlink

2018-09-17 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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

commit b212f77d693b256f2042cb7c0079d2c474dac2a9
Merge: af05e17 8e3fd93
Author: Geertjan Wielenga 
AuthorDate: Mon Sep 17 21:02:17 2018 +0200

Merge pull request #869 from apache/welcome-screen-whatsnewlink

[NETBEANS-1242] What's New link

 nb/welcome/src/org/netbeans/modules/welcome/resources/whatsnew.url | 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



[incubator-netbeans] branch master updated (29e67db -> af05e17)

2018-09-17 Thread rtaneja
This is an automated email from the ASF dual-hosted git repository.

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


from 29e67db  Merge pull request #3 from 
Chris2011/feature/248233-doc-split-actions
 add 891a74d  [NETBEANS-862] Added auto-complete support for var keyword in 
JDK-11 Lambda Parameters
 new af05e17  Merge pull request #849 from arusinha/netbeans-862

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:
 .../java/completion/JavaCompletionTask.java|  71 -
 .../1.8/lambdaParameterTypesExcludingVar.pass  | 110 +++
 .../1.8/lambdaParameterTypesIncludingVar.pass  | 117 
 .../1.8/lambdaParameterTypesIncludingVar1.pass | 110 +++
 .../completion/JavaCompletionTaskTest/1.8/var.pass |   1 +
 .../JavaCompletionTaskTest/10/empty.pass   |   0
 .../10/lambdaParameterTypesExcludingVar.pass   | 110 +++
 .../10/lambdaParameterTypesIncludingVar.pass   | 117 
 .../10/lambdaParameterTypesIncludingVar1.pass  | 110 +++
 .../{1.8 => 10}/stringVarName.pass |   0
 .../completion/JavaCompletionTaskTest/10/var.pass  |   1 +
 .../JavaCompletionTaskTest/11/empty.pass   |   0
 .../11/lambdaParameterTypesExcludingVar.pass   | 110 +++
 .../11/lambdaParameterTypesIncludingVar.pass   | 117 
 .../11/lambdaParameterTypesIncludingVar1.pass  | 110 +++
 .../{1.8 => 11}/stringVarName.pass |   0
 .../completion/JavaCompletionTaskTest/11/var.pass  |   1 +
 .../data/SimpleLambdaExpression2Start.java |  36 +++
 .../JavaCompletionTask111FeaturesTest.java | 118 +
 19 files changed, 1238 insertions(+), 1 deletion(-)
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/1.8/lambdaParameterTypesExcludingVar.pass
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/1.8/lambdaParameterTypesIncludingVar.pass
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/1.8/lambdaParameterTypesIncludingVar1.pass
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/1.8/var.pass
 copy 
webcommon/web.clientproject/test/qa-functional/data/simpleProject/public_html/refresh.js
 => 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/10/empty.pass
 (100%)
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/10/lambdaParameterTypesExcludingVar.pass
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/10/lambdaParameterTypesIncludingVar.pass
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/10/lambdaParameterTypesIncludingVar1.pass
 copy 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/{1.8
 => 10}/stringVarName.pass (100%)
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/10/var.pass
 copy 
webcommon/web.clientproject/test/qa-functional/data/simpleProject/public_html/refresh.js
 => 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/11/empty.pass
 (100%)
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/11/lambdaParameterTypesExcludingVar.pass
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/11/lambdaParameterTypesIncludingVar.pass
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/11/lambdaParameterTypesIncludingVar1.pass
 copy 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/{1.8
 => 11}/stringVarName.pass (100%)
 create mode 100644 
java/java.completion/test/unit/data/goldenfiles/org/netbeans/modules/java/completion/JavaCompletionTaskTest/11/var.pass
 create mode 100644 
java/java.completion/test/unit/data/org/netbeans/modules/java/completion/data/SimpleLambdaExpression2Start.java
 create mode 100644 

[incubator-netbeans] 01/01: Merge pull request #849 from arusinha/netbeans-862

2018-09-17 Thread rtaneja
This is an automated email from the ASF dual-hosted git repository.

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

commit af05e171280972ec694027b526a3b6ad58e7c988
Merge: 29e67db 891a74d
Author: Reema Taneja <32299405+rtane...@users.noreply.github.com>
AuthorDate: Mon Sep 17 17:23:22 2018 +0530

Merge pull request #849 from arusinha/netbeans-862

[NETBEANS-862] Added auto-complete support for var keyword in JDK-11 …

 .../java/completion/JavaCompletionTask.java|  71 -
 .../1.8/lambdaParameterTypesExcludingVar.pass  | 110 +++
 .../1.8/lambdaParameterTypesIncludingVar.pass  | 117 
 .../1.8/lambdaParameterTypesIncludingVar1.pass | 110 +++
 .../completion/JavaCompletionTaskTest/1.8/var.pass |   1 +
 .../JavaCompletionTaskTest/10/empty.pass   |   0
 .../10/lambdaParameterTypesExcludingVar.pass   | 110 +++
 .../10/lambdaParameterTypesIncludingVar.pass   | 117 
 .../10/lambdaParameterTypesIncludingVar1.pass  | 110 +++
 .../JavaCompletionTaskTest/10/stringVarName.pass   |   2 +
 .../completion/JavaCompletionTaskTest/10/var.pass  |   1 +
 .../JavaCompletionTaskTest/11/empty.pass   |   0
 .../11/lambdaParameterTypesExcludingVar.pass   | 110 +++
 .../11/lambdaParameterTypesIncludingVar.pass   | 117 
 .../11/lambdaParameterTypesIncludingVar1.pass  | 110 +++
 .../JavaCompletionTaskTest/11/stringVarName.pass   |   2 +
 .../completion/JavaCompletionTaskTest/11/var.pass  |   1 +
 .../data/SimpleLambdaExpression2Start.java |  36 +++
 .../JavaCompletionTask111FeaturesTest.java | 118 +
 19 files changed, 1242 insertions(+), 1 deletion(-)


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

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



[jira] [Assigned] (NETBEANS-1259) Var hint not showing up when using iterator in for loop

2018-09-17 Thread Sarvesh Kesharwani (JIRA)


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

Sarvesh Kesharwani reassigned NETBEANS-1259:


Assignee: Sarvesh Kesharwani

> Var hint not showing up when using iterator in for loop
> ---
>
> Key: NETBEANS-1259
> URL: https://issues.apache.org/jira/browse/NETBEANS-1259
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Hints  Annotations
>Reporter: Sarvesh Kesharwani
>Assignee: Sarvesh Kesharwani
>Priority: Minor
>
> Var hint is not showing up for the following scenario : 
> {code:java}
> // code placeholder
> for (Iterator> 
> iterator =
> map.entrySet().iterator(); iterator.hasNext();) {
>   Map.Entry entry = iterator.next();
>   if (max > 0) {
> iterator.remove();
> max--;
>   }
> }
> {code}
> Hint should come up to change the type of iterator to var.



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

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

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



[jira] [Assigned] (NETBEANS-1258) Var hint changes variable type for List.of()

2018-09-17 Thread Sarvesh Kesharwani (JIRA)


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

Sarvesh Kesharwani reassigned NETBEANS-1258:


Assignee: Sarvesh Kesharwani

> Var hint changes variable type for List.of()
> 
>
> Key: NETBEANS-1258
> URL: https://issues.apache.org/jira/browse/NETBEANS-1258
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Hints  Annotations
>Reporter: Sarvesh Kesharwani
>Assignee: Sarvesh Kesharwani
>Priority: Minor
>
> Var Hint is visible for the following scenario : 
> {code:java}
> // code placeholder
> List x = List.of();
> {code}
> and applying the var hint changes the variable type of x to List



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

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

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



[jira] [Updated] (NETBEANS-1258) Var hint changes variable type for List.of()

2018-09-17 Thread Sarvesh Kesharwani (JIRA)


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

Sarvesh Kesharwani updated NETBEANS-1258:
-
Description: 
Var Hint is visible for the following scenario : 
{code:java}
// code placeholder
List x = List.of();
{code}
and applying the var hint changes the variable type of x to List

  was:
Var Hint is visible for the following scenario : 

List x = List.of();

and applying the var hint changes the variable type of x to List


> Var hint changes variable type for List.of()
> 
>
> Key: NETBEANS-1258
> URL: https://issues.apache.org/jira/browse/NETBEANS-1258
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Hints  Annotations
>Reporter: Sarvesh Kesharwani
>Priority: Minor
>
> Var Hint is visible for the following scenario : 
> {code:java}
> // code placeholder
> List x = List.of();
> {code}
> and applying the var hint changes the variable type of x to List



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

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

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



[jira] [Commented] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Geertjan Wielenga (JIRA)


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

Geertjan Wielenga commented on NETBEANS-928:


Yes, use 1.18.2.

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Created] (NETBEANS-1259) Var hint not showing up when using iterator in for loop

2018-09-17 Thread Sarvesh Kesharwani (JIRA)
Sarvesh Kesharwani created NETBEANS-1259:


 Summary: Var hint not showing up when using iterator in for loop
 Key: NETBEANS-1259
 URL: https://issues.apache.org/jira/browse/NETBEANS-1259
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Hints  Annotations
Reporter: Sarvesh Kesharwani


Var hint is not showing up for the following scenario : 
{code:java}
// code placeholder
for (Iterator> iterator 
=
map.entrySet().iterator(); iterator.hasNext();) {
  Map.Entry entry = iterator.next();
  if (max > 0) {
iterator.remove();
max--;
  }
}
{code}
Hint should come up to change the type of iterator to var.



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

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

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



[jira] [Created] (NETBEANS-1258) Var hint changes variable type for List.of()

2018-09-17 Thread Sarvesh Kesharwani (JIRA)
Sarvesh Kesharwani created NETBEANS-1258:


 Summary: Var hint changes variable type for List.of()
 Key: NETBEANS-1258
 URL: https://issues.apache.org/jira/browse/NETBEANS-1258
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Hints  Annotations
Reporter: Sarvesh Kesharwani


Var Hint is visible for the following scenario : 

List x = List.of();

and applying the var hint changes the variable type of x to List



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

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

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



[jira] [Commented] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen commented on NETBEANS-928:
--

Version 1.18.2 seems to work fine. The editor and the tree doesn't show errors. 
1.18.0 the tree shows errors but not the editor. So the workaround must be, 
upgrade to 1.18.2.

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Comment Edited] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen edited comment on NETBEANS-928 at 9/17/18 6:21 AM:
---

{{lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not 
run during this compilation: java.lang.IllegalArgumentException: 
org.netbeans.modules.java.source.parsing.ProxyFileManager extends 
java.lang.Object implements javax.tools.JavaFileManager}}
{{ at 
lombok.javac.apt.LombokFileObjects.getCompiler(LombokFileObjects.java:130)}}
{{ at 
lombok.javac.apt.InterceptingJavaFileManager.(InterceptingJavaFileManager.java:40)}}
{{ at 
lombok.javac.apt.LombokProcessor.placePostCompileAndDontMakeForceRoundDummiesHook(LombokProcessor.java:164)}}
{{ at lombok.javac.apt.LombokProcessor.init(LombokProcessor.java:85)}}
{{ at 
lombok.core.AnnotationProcessor$JavacDescriptor.want(AnnotationProcessor.java:87)}}
{{ at lombok.core.AnnotationProcessor.init(AnnotationProcessor.java:140)}}
{{ at 
lombok.launch.AnnotationProcessorHider$AnnotationProcessor.init(AnnotationProcessor.java:69)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$ProcessorState.(JavacProcessingEnvironment.java:683)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator.next(JavacProcessingEnvironment.java:78...}}


was (Author: xylifyx):
I managed to get this stack trace

{{lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not 
run during this compilation: java.lang.IllegalArgumentException: 
org.netbeans.modules.java.source.parsing.ProxyFileManager extends 
java.lang.Object implements javax.tools.JavaFileManager}}
{{ at 
lombok.javac.apt.LombokFileObjects.getCompiler(LombokFileObjects.java:130)}}
{{ at 
lombok.javac.apt.InterceptingJavaFileManager.(InterceptingJavaFileManager.java:40)}}
{{ at 
lombok.javac.apt.LombokProcessor.placePostCompileAndDontMakeForceRoundDummiesHook(LombokProcessor.java:164)}}
{{ at lombok.javac.apt.LombokProcessor.init(LombokProcessor.java:85)}}
{{ at 
lombok.core.AnnotationProcessor$JavacDescriptor.want(AnnotationProcessor.java:87)}}
{{ at lombok.core.AnnotationProcessor.init(AnnotationProcessor.java:140)}}
{{ at 
lombok.launch.AnnotationProcessorHider$AnnotationProcessor.init(AnnotationProcessor.java:69)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$ProcessorState.(JavacProcessingEnvironment.java:683)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator.next(JavacProcessingEnvironment.java:78...}}

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Comment Edited] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen edited comment on NETBEANS-928 at 9/17/18 6:21 AM:
---

{noformat}
lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not run 
during this compilation: java.lang.IllegalArgumentException: 
org.netbeans.modules.java.source.parsing.ProxyFileManager extends 
java.lang.Object implements javax.tools.JavaFileManager
at lombok.javac.apt.LombokFileObjects.getCompiler(LombokFileObjects.java:130)
at 
lombok.javac.apt.InterceptingJavaFileManager.(InterceptingJavaFileManager.java:40)
at 
lombok.javac.apt.LombokProcessor.placePostCompileAndDontMakeForceRoundDummiesHook(LombokProcessor.java:164)
at lombok.javac.apt.LombokProcessor.init(LombokProcessor.java:85)
at 
lombok.core.AnnotationProcessor$JavacDescriptor.want(AnnotationProcessor.java:87)
at lombok.core.AnnotationProcessor.init(AnnotationProcessor.java:140)
at 
lombok.launch.AnnotationProcessorHider$AnnotationProcessor.init(AnnotationProcessor.java:69)
at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$ProcessorState.(JavacProcessingEnvironment.java:683)
at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator.next(JavacProcessingEnvironment.java:78...{noformat}


was (Author: xylifyx):
{{lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not 
run during this compilation: java.lang.IllegalArgumentException: 
org.netbeans.modules.java.source.parsing.ProxyFileManager extends 
java.lang.Object implements javax.tools.JavaFileManager}}
{{ at 
lombok.javac.apt.LombokFileObjects.getCompiler(LombokFileObjects.java:130)}}
{{ at 
lombok.javac.apt.InterceptingJavaFileManager.(InterceptingJavaFileManager.java:40)}}
{{ at 
lombok.javac.apt.LombokProcessor.placePostCompileAndDontMakeForceRoundDummiesHook(LombokProcessor.java:164)}}
{{ at lombok.javac.apt.LombokProcessor.init(LombokProcessor.java:85)}}
{{ at 
lombok.core.AnnotationProcessor$JavacDescriptor.want(AnnotationProcessor.java:87)}}
{{ at lombok.core.AnnotationProcessor.init(AnnotationProcessor.java:140)}}
{{ at 
lombok.launch.AnnotationProcessorHider$AnnotationProcessor.init(AnnotationProcessor.java:69)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$ProcessorState.(JavacProcessingEnvironment.java:683)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator.next(JavacProcessingEnvironment.java:78...}}

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Comment Edited] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen edited comment on NETBEANS-928 at 9/17/18 6:20 AM:
---

I managed to get this stack trace

{{lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not 
run during this compilation: java.lang.IllegalArgumentException: 
org.netbeans.modules.java.source.parsing.ProxyFileManager extends 
java.lang.Object implements javax.tools.JavaFileManager}}
{{ at 
lombok.javac.apt.LombokFileObjects.getCompiler(LombokFileObjects.java:130)}}
{{ at 
lombok.javac.apt.InterceptingJavaFileManager.(InterceptingJavaFileManager.java:40)}}
{{ at 
lombok.javac.apt.LombokProcessor.placePostCompileAndDontMakeForceRoundDummiesHook(LombokProcessor.java:164)}}
{{ at lombok.javac.apt.LombokProcessor.init(LombokProcessor.java:85)}}
{{ at 
lombok.core.AnnotationProcessor$JavacDescriptor.want(AnnotationProcessor.java:87)}}
{{ at lombok.core.AnnotationProcessor.init(AnnotationProcessor.java:140)}}
{{ at 
lombok.launch.AnnotationProcessorHider$AnnotationProcessor.init(AnnotationProcessor.java:69)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$ProcessorState.(JavacProcessingEnvironment.java:683)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator.next(JavacProcessingEnvironment.java:78...}}


was (Author: xylifyx):
I managed to get this stack trace

{{```}}
{{lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not 
run during this compilation: java.lang.IllegalArgumentException: 
org.netbeans.modules.java.source.parsing.ProxyFileManager extends 
java.lang.Object implements javax.tools.JavaFileManager}}
{{ at 
lombok.javac.apt.LombokFileObjects.getCompiler(LombokFileObjects.java:130)}}
{{ at 
lombok.javac.apt.InterceptingJavaFileManager.(InterceptingJavaFileManager.java:40)}}
{{ at 
lombok.javac.apt.LombokProcessor.placePostCompileAndDontMakeForceRoundDummiesHook(LombokProcessor.java:164)}}
{{ at lombok.javac.apt.LombokProcessor.init(LombokProcessor.java:85)}}
{{ at 
lombok.core.AnnotationProcessor$JavacDescriptor.want(AnnotationProcessor.java:87)}}
{{ at lombok.core.AnnotationProcessor.init(AnnotationProcessor.java:140)}}
{{ at 
lombok.launch.AnnotationProcessorHider$AnnotationProcessor.init(AnnotationProcessor.java:69)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$ProcessorState.(JavacProcessingEnvironment.java:683)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator.next(JavacProcessingEnvironment.java:78...}}
{{```}}

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Commented] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen commented on NETBEANS-928:
--

I managed to get this stack trace

{{```}}
{{lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not 
run during this compilation: java.lang.IllegalArgumentException: 
org.netbeans.modules.java.source.parsing.ProxyFileManager extends 
java.lang.Object implements javax.tools.JavaFileManager}}
{{ at 
lombok.javac.apt.LombokFileObjects.getCompiler(LombokFileObjects.java:130)}}
{{ at 
lombok.javac.apt.InterceptingJavaFileManager.(InterceptingJavaFileManager.java:40)}}
{{ at 
lombok.javac.apt.LombokProcessor.placePostCompileAndDontMakeForceRoundDummiesHook(LombokProcessor.java:164)}}
{{ at lombok.javac.apt.LombokProcessor.init(LombokProcessor.java:85)}}
{{ at 
lombok.core.AnnotationProcessor$JavacDescriptor.want(AnnotationProcessor.java:87)}}
{{ at lombok.core.AnnotationProcessor.init(AnnotationProcessor.java:140)}}
{{ at 
lombok.launch.AnnotationProcessorHider$AnnotationProcessor.init(AnnotationProcessor.java:69)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$ProcessorState.(JavacProcessingEnvironment.java:683)}}
{{ at 
com.sun.tools.javac.processing.JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator.next(JavacProcessingEnvironment.java:78...}}
{{```}}

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Comment Edited] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen edited comment on NETBEANS-928 at 9/17/18 6:15 AM:
---

I can confirm the bug on 
 Apache NetBeans IDE 9.0 (Build incubator-netbeans-release-334-on-20180708)

Here is a small Maven projejct that that works perfectly well in Netbeans 8.2 
bug not on 9.0.

[https://github.com/erikmartino/lombokbug]

A `@Value` object with a final field is flagged red in Netbeans 9 bug not in 
Netbeans 8.2. Compile on save is enabled.


was (Author: xylifyx):
I can confirm the bug on 
 Apache NetBeans IDE 9.0 (Build incubator-netbeans-release-334-on-20180708)

Here is a demonstration that works perfectly well in Netbeans 8.2 bug not on 
9.0.

[https://github.com/erikmartino/lombokbug]

A `@Value` object with a final field is flagged red in Netbeans 9 bug not in 
Netbeans 8.2. Compile on save is enabled.

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Comment Edited] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen edited comment on NETBEANS-928 at 9/17/18 6:14 AM:
---

I can confirm the bug on 
 Apache NetBeans IDE 9.0 (Build incubator-netbeans-release-334-on-20180708)

Here is a demonstration that works perfectly well in Netbeans 8.2 bug not on 
9.0.

[https://github.com/erikmartino/lombokbug]

A `@Value` object with a final field is flagged red in Netbeans 9 bug not in 
Netbeans 8.2. Compile on save is enabled.


was (Author: xylifyx):
I can confirm the bug on 
Apache NetBeans IDE 9.0 (Build incubator-netbeans-release-334-on-20180708)

Here is a demonstration that works perfectly well in Netbeans 8.2 bug not on 
9.0.

A `@Value` object with a final field is flagged red in Netbeans 9 bug not in 
Netbeans 8.2. Compile on save is enabled.

https://github.com/erikmartino/lombokbug

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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



[jira] [Commented] (NETBEANS-928) Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)

2018-09-17 Thread Erik Martino Hansen (JIRA)


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

Erik Martino Hansen commented on NETBEANS-928:
--

I can confirm the bug on 
Apache NetBeans IDE 9.0 (Build incubator-netbeans-release-334-on-20180708)

Here is a demonstration that works perfectly well in Netbeans 8.2 bug not on 
9.0.

A `@Value` object with a final field is flagged red in Netbeans 9 bug not in 
Netbeans 8.2. Compile on save is enabled.

https://github.com/erikmartino/lombokbug

> Lombok <1.6.22 does not work in Netbeans 9 RC1 (with JDK8)
> --
>
> Key: NETBEANS-928
> URL: https://issues.apache.org/jira/browse/NETBEANS-928
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Nicolai Ehemann
>Priority: Minor
>
> I recently installed Netbeans 9 RC1 on my Windows 10 PC with JDK 1.8.172. 
> When creating a minimal maven project with Lombok dependency <1.16.22, and 
> adding a simple class with lombok annotations, the generated methods are not 
> picked up by netbeans (they do not show up in navigator and are not 
> recognised in editor). For example, when I add a final field and 
> @RequiredArgsConstructor, the field is marked as "not initialized in default 
> constructor". As soon as I change the lombok version to 1.16.22 or 1.18.0, it 
> works as expected.
>  
> I'm not 100% sure this is a netbeans issue, as I already found similar issued 
> for lombok (for example 
> [https://github.com/rzwitserloot/lombok/issues/1435),|https://github.com/rzwitserloot/lombok/issues/1435]),]
>  but those all mentioned JDK9, where I am using JDK8...



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

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

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