[incubator-netbeans] branch release90 updated: NETBEANS-896 Added missing nullcheck on JCTree.ErrornousTree

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/release90 by this push:
 new fe49b14  NETBEANS-896 Added missing nullcheck on JCTree.ErrornousTree
fe49b14 is described below

commit fe49b140966a8111f9286c213a7465d32f2fdf6e
Author: Laszlo Kishalmi 
AuthorDate: Sun Jun 3 12:51:52 2018 -0700

NETBEANS-896 Added missing nullcheck on JCTree.ErrornousTree
---
 .../netbeans/modules/java/source/usages/SourceAnalyzerFactory.java  | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 
a/java.source.base/src/org/netbeans/modules/java/source/usages/SourceAnalyzerFactory.java
 
b/java.source.base/src/org/netbeans/modules/java/source/usages/SourceAnalyzerFactory.java
index aad480c..73abd23 100644
--- 
a/java.source.base/src/org/netbeans/modules/java/source/usages/SourceAnalyzerFactory.java
+++ 
b/java.source.base/src/org/netbeans/modules/java/source/usages/SourceAnalyzerFactory.java
@@ -749,8 +749,10 @@ public final class SourceAnalyzerFactory {
 @CheckForNull
 public Void visitErroneous(@NonNull final ErroneousTree tree, @NonNull 
final Map, UsagesData> p) {
 List trees = tree.getErrorTrees();
-for (Tree t : trees) {
-this.scan(t,p);
+if (trees != null) {
+for (Tree t : trees) {
+this.scan(t,p);
+}
 }
 return null;
 }

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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 #575 from lkishalmi/NETBEANS-896

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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

commit 8ec246ec26f1c3324f4d144acba4180234ebf8f6
Merge: 720f126 63a8697
Author: Matthias Bläsing 
AuthorDate: Tue Jun 12 21:08:45 2018 +0200

Merge pull request #575 from lkishalmi/NETBEANS-896

NETBEANS-896 Added missing nullcheck on JCTree.ErrorneousTree

 .../netbeans/modules/java/source/usages/SourceAnalyzerFactory.java  | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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 (720f126 -> 8ec246e)

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


from 720f126  Merge pull request #585 from matthiasblaesing/licenses
 add 63a8697  NETBEANS-896 Added missing nullcheck on JCTree.ErrornousTree
 new 8ec246e  Merge pull request #575 from lkishalmi/NETBEANS-896

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/modules/java/source/usages/SourceAnalyzerFactory.java  | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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-847) org.apache.felix.main-4.2.1.jar license/notice

2018-06-12 Thread JIRA


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

Matthias Bläsing resolved NETBEANS-847.
---
   Resolution: Fixed
Fix Version/s: 9.0

Only parts of the felix NOTICE file were present. The file was updated via

https://github.com/apache/incubator-netbeans/commit/66d644429ce91488043cb27bea33adbcc3f1b6c1

> org.apache.felix.main-4.2.1.jar license/notice
> --
>
> Key: NETBEANS-847
> URL: https://issues.apache.org/jira/browse/NETBEANS-847
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Emilian Bold
>Assignee: Matthias Bläsing
>Priority: Major
> Fix For: 9.0
>
>
> ./platform/modules/ext/org.apache.felix.main-4.2.1.jar
> - has a NOTICE file that would effect the NOTICE file
> Additional notes on LICENSE and NOTICE: 
> http://mail-archives.apache.org/mod_mbox/incubator-general/201801.mbox/%3cc4c5d5c4-ab44-4afe-ade2-9e91f593a...@classsoftware.com%3e



--
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] [Resolved] (NETBEANS-842) stax2-api.jar license/notice

2018-06-12 Thread JIRA


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

Matthias Bläsing resolved NETBEANS-842.
---
   Resolution: Fixed
Fix Version/s: 9.0

> stax2-api.jar license/notice
> 
>
> Key: NETBEANS-842
> URL: https://issues.apache.org/jira/browse/NETBEANS-842
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Emilian Bold
>Assignee: Matthias Bläsing
>Priority: Major
> Fix For: 9.0
>
>
> ./java/modules/ext/jaxws22/stax2-api.jar
> - is under a BSD license not a CDDL one
> Additional notes on LICENSE and NOTICE: 
> http://mail-archives.apache.org/mod_mbox/incubator-general/201801.mbox/%3cc4c5d5c4-ab44-4afe-ade2-9e91f593a...@classsoftware.com%3e



--
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] [Resolved] (NETBEANS-843) woodstox-core-asl.jar license/notice

2018-06-12 Thread JIRA


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

Matthias Bläsing resolved NETBEANS-843.
---
   Resolution: Fixed
Fix Version/s: 9.0

> woodstox-core-asl.jar license/notice
> 
>
> Key: NETBEANS-843
> URL: https://issues.apache.org/jira/browse/NETBEANS-843
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Emilian Bold
>Assignee: Matthias Bläsing
>Priority: Major
> Fix For: 9.0
>
>
> ./java/modules/ext/jaxws22/woodstox-core-asl.jar
> - is under an Apache 2.0 license not a CDDL one and has a NOTICE file that 
> effect NOTICE (although none of it’s content mean anything IMO)
> Additional notes on LICENSE and NOTICE: 
> http://mail-archives.apache.org/mod_mbox/incubator-general/201801.mbox/%3cc4c5d5c4-ab44-4afe-ade2-9e91f593a...@classsoftware.com%3e



--
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] [Resolved] (NETBEANS-841) Fix license info for websvc.jaxws21

2018-06-12 Thread JIRA


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

Matthias Bläsing resolved NETBEANS-841.
---
   Resolution: Fixed
Fix Version/s: 9.0

Instead of the jaxws-2.2.6.zip, the maven artifacts are directly used.
 - License info for FastInfoset.jar, woodstox-core-asl.jar was corrected to ALv2

The NOTICE file present in woodstox-core-asl does not hold information, that
is viable to be included into the global NOTICE file.

 - License info for stax2-api.jar was corrected to BSD license

 - Several artifacts contained in jaxws-2.2.6 were released by Sun and not
 Oracle, so CDDL 1.0 applies

https://github.com/apache/incubator-netbeans/commit/12212c5ee2c913881f10ee686313159df089ad4b

> Fix license info for websvc.jaxws21
> ---
>
> Key: NETBEANS-841
> URL: https://issues.apache.org/jira/browse/NETBEANS-841
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Emilian Bold
>Assignee: Matthias Bläsing
>Priority: Major
> Fix For: 9.0
>
>
> ./java/modules/ext/jaxws22/FastInfoset.jar  
> - is under an Apache license not a CDDL one
> Additional notes on LICENSE and NOTICE: 
> http://mail-archives.apache.org/mod_mbox/incubator-general/201801.mbox/%3cc4c5d5c4-ab44-4afe-ade2-9e91f593a...@classsoftware.com%3e



--
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-841) Fix license info for websvc.jaxws21

2018-06-12 Thread JIRA


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

Matthias Bläsing updated NETBEANS-841:
--
Summary: Fix license info for websvc.jaxws21  (was: FastInfoset.jar 
license/notice)

> Fix license info for websvc.jaxws21
> ---
>
> Key: NETBEANS-841
> URL: https://issues.apache.org/jira/browse/NETBEANS-841
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Emilian Bold
>Assignee: Matthias Bläsing
>Priority: Major
>
> ./java/modules/ext/jaxws22/FastInfoset.jar  
> - is under an Apache license not a CDDL one
> Additional notes on LICENSE and NOTICE: 
> http://mail-archives.apache.org/mod_mbox/incubator-general/201801.mbox/%3cc4c5d5c4-ab44-4afe-ade2-9e91f593a...@classsoftware.com%3e



--
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] [Resolved] (NETBEANS-839) plexus-cipher-1.7.jar license/notice

2018-06-12 Thread JIRA


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

Matthias Bläsing resolved NETBEANS-839.
---
   Resolution: Fixed
Fix Version/s: 9.0

None of the maven artifacts for plexus cipher contain a NOTICE file,
but the release files and the source code repository does.
    
https://github.com/sonatype/plexus-cipher/blob/master/NOTICE.txt
    
It is assumed, that it is better to include the information.

https://github.com/apache/incubator-netbeans/commit/dc58f428fa5684f0ff33177505cb8830b30f9ce2

> plexus-cipher-1.7.jar license/notice
> 
>
> Key: NETBEANS-839
> URL: https://issues.apache.org/jira/browse/NETBEANS-839
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Emilian Bold
>Assignee: Matthias Bläsing
>Priority: Major
> Fix For: 9.0
>
>
> ./java/maven/lib/plexus-cipher-1.7.jar
> - has a NOTICE file that would effect NOTICE
> Additional notes on LICENSE and NOTICE: 
> http://mail-archives.apache.org/mod_mbox/incubator-general/201801.mbox/%3cc4c5d5c4-ab44-4afe-ade2-9e91f593a...@classsoftware.com%3e



--
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] 04/05: [NETBEANS-847] Adjust felix notice file to match the packaged one

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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

commit 66d644429ce91488043cb27bea33adbcc3f1b6c1
Author: Matthias Bläsing 
AuthorDate: Sun Jun 10 21:59:15 2018 +0200

[NETBEANS-847] Adjust felix notice file to match the packaged one
---
 libs.felix/external/org.apache.felix.main-4.2.1-notice.txt | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/libs.felix/external/org.apache.felix.main-4.2.1-notice.txt 
b/libs.felix/external/org.apache.felix.main-4.2.1-notice.txt
index 8b4b009..b30e3c0 100644
--- a/libs.felix/external/org.apache.felix.main-4.2.1-notice.txt
+++ b/libs.felix/external/org.apache.felix.main-4.2.1-notice.txt
@@ -1,4 +1,10 @@
+Apache Felix Main
+Copyright 2006-2013 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
 This product includes software developed at
 The OSGi Alliance (http://www.osgi.org/).
 Copyright (c) OSGi Alliance (2000, 2012).
-Licensed under the Apache License 2.0.
+Licensed under the Apache License 2.0.
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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] 05/05: Merge branch 'licenses_backport' into release90

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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

commit 265d48b8df7b004d952b931697b460273f5d91c4
Merge: c1fc728 66d6444
Author: Matthias Bläsing 
AuthorDate: Tue Jun 12 20:37:24 2018 +0200

Merge branch 'licenses_backport' into release90

As announced in PR585:
https://github.com/apache/incubator-netbeans/pull/585

Merging reviewed commits for license cleanup into release90.

 libs.cglib/external/cglib-2.2-notice.txt   |   2 -
 .../org.apache.felix.main-4.2.1-notice.txt |   8 +-
 .../external/apache-maven-3.3.9-bin-notice.txt |   8 +
 nbbuild/licenses/BSD-woodstox  |  26 ++
 websvc.jaxws21/external/binaries-list  |  18 +-
 .../external/jaxws-2.2.6-alv2-license.txt  | 209 +++
 .../external/jaxws-2.2.6-bsd-woodstox-license.txt  |  34 ++
 .../external/jaxws-2.2.6-cddl10-license.txt| 407 +
 ...-license.txt => jaxws-2.2.6-cddl11-license.txt} |   2 +-
 websvc.jaxws21/nbproject/project.properties|  30 +-
 10 files changed, 723 insertions(+), 21 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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/05: [NETBEANS-839] Add NOTICE file for plexus cipher

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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

commit dc58f428fa5684f0ff33177505cb8830b30f9ce2
Author: Matthias Bläsing 
AuthorDate: Sun Jun 10 20:52:21 2018 +0200

[NETBEANS-839] Add NOTICE file for plexus cipher

None of the maven artifacts for plexus cipher contain a NOTICE file,
but the release files and the source code repository does.

https://github.com/sonatype/plexus-cipher/blob/master/NOTICE.txt

It is assumed, that it is better to include the information.
---
 maven.embedder/external/apache-maven-3.3.9-bin-notice.txt | 8 
 1 file changed, 8 insertions(+)

diff --git a/maven.embedder/external/apache-maven-3.3.9-bin-notice.txt 
b/maven.embedder/external/apache-maven-3.3.9-bin-notice.txt
index c6888f6..acb4e98 100644
--- a/maven.embedder/external/apache-maven-3.3.9-bin-notice.txt
+++ b/maven.embedder/external/apache-maven-3.3.9-bin-notice.txt
@@ -184,3 +184,11 @@ Copyright 2003-2015 The Apache Software Foundation
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
 
+
+Plexus Cipher
+
+The code in this component contains a class - Base64 taken from 
http://juliusdavies.ca/svn/not-yet-commons-ssl/tags/commons-ssl-0.3.10/src/java/org/apache/commons/ssl/Base64.java
+which is Apache license: http://www.apache.org/licenses/LICENSE-2.0
+
+The PBE key processing routine PBECipher.createCipher() is adopted from 
http://juliusdavies.ca/svn/not-yet-commons-ssl/tags/commons-ssl-0.3.10/src/java/org/apache/commons/ssl/OpenSSL.java
+which is also Apache APL-2.0 license: 
http://www.apache.org/licenses/LICENSE-2.0 
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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] 03/05: [NETBEANS-840] Remove invalid NOTICE file for cglib

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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

commit d0dfca648278bb3fce6e2e8d87af185a6b96b96c
Author: Matthias Bläsing 
AuthorDate: Sun Jun 10 21:44:47 2018 +0200

[NETBEANS-840] Remove invalid NOTICE file for cglib

The NOTICE file in cglib was added to the project when they switched to ALv2


https://github.com/cglib/cglib/commit/e91a8f7b15a7cff3d8f0c80f9727037fabe1433c

And I see it as a missinterpretation of the rule of the ASF, that requires
each project under its umbrella to carry a NOTICE file.

As the file is invalid and even if not already part of the main NOTICE 
template,
the template here is removed.
---
 libs.cglib/external/cglib-2.2-notice.txt | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libs.cglib/external/cglib-2.2-notice.txt 
b/libs.cglib/external/cglib-2.2-notice.txt
deleted file mode 100644
index 3f59805..000
--- a/libs.cglib/external/cglib-2.2-notice.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-This product includes software developed by
-The Apache Software Foundation (http://www.apache.org/).

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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 release90 updated (c1fc728 -> 265d48b)

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


from c1fc728  [NETBEANS-851] New image for splash screen and about box 
(#587)
 new dc58f42  [NETBEANS-839] Add NOTICE file for plexus cipher
 new 12212c5  [NETBEANS-841][NETBEANS-842][NETBEANS-843] Fix licenses for 
jaxws runtime
 new d0dfca6  [NETBEANS-840] Remove invalid NOTICE file for cglib
 new 66d6444  [NETBEANS-847] Adjust felix notice file to match the packaged 
one
 new 265d48b  Merge branch 'licenses_backport' into release90

The 5 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:
 libs.cglib/external/cglib-2.2-notice.txt   |   2 -
 .../org.apache.felix.main-4.2.1-notice.txt |   8 +-
 .../external/apache-maven-3.3.9-bin-notice.txt |   8 +
 nbbuild/licenses/BSD-woodstox  |  26 ++
 websvc.jaxws21/external/binaries-list  |  18 +-
 .../external/jaxws-2.2.6-alv2-license.txt  | 209 +++
 .../external/jaxws-2.2.6-bsd-woodstox-license.txt  |  34 ++
 .../external/jaxws-2.2.6-cddl10-license.txt| 407 +
 ...-license.txt => jaxws-2.2.6-cddl11-license.txt} |   2 +-
 websvc.jaxws21/nbproject/project.properties|  30 +-
 10 files changed, 723 insertions(+), 21 deletions(-)
 delete mode 100644 libs.cglib/external/cglib-2.2-notice.txt
 create mode 100644 nbbuild/licenses/BSD-woodstox
 create mode 100644 websvc.jaxws21/external/jaxws-2.2.6-alv2-license.txt
 create mode 100644 websvc.jaxws21/external/jaxws-2.2.6-bsd-woodstox-license.txt
 create mode 100644 websvc.jaxws21/external/jaxws-2.2.6-cddl10-license.txt
 rename websvc.jaxws21/external/{jaxws-2.2.6-license.txt => 
jaxws-2.2.6-cddl11-license.txt} (99%)

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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] 02/05: [NETBEANS-841][NETBEANS-842][NETBEANS-843] Fix licenses for jaxws runtime

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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

commit 12212c5ee2c913881f10ee686313159df089ad4b
Author: Matthias Bläsing 
AuthorDate: Sun Jun 10 21:23:22 2018 +0200

[NETBEANS-841][NETBEANS-842][NETBEANS-843] Fix licenses for jaxws runtime

Instead of the jaxws-2.2.6.zip, the maven artifacts are directly used.

- License info for FastInfoset.jar, woodstox-core-asl.jar was corrected to 
ALv2

  The NOTICE file present in woodstox-core-asl does not hold information, 
that
  is viable to be included into the global NOTICE file.

- License info for stax2-api.jar was corrected to BSD license

- Several artifacts contained in jaxws-2.2.6 were released by Sun and not
  Oracle, so CDDL 1.0 applies
---
 nbbuild/licenses/BSD-woodstox  |  26 ++
 websvc.jaxws21/external/binaries-list  |  18 +-
 .../external/jaxws-2.2.6-alv2-license.txt  | 209 +++
 .../external/jaxws-2.2.6-bsd-woodstox-license.txt  |  34 ++
 .../external/jaxws-2.2.6-cddl10-license.txt| 407 +
 ...-license.txt => jaxws-2.2.6-cddl11-license.txt} |   2 +-
 websvc.jaxws21/nbproject/project.properties|  30 +-
 7 files changed, 708 insertions(+), 18 deletions(-)

diff --git a/nbbuild/licenses/BSD-woodstox b/nbbuild/licenses/BSD-woodstox
new file mode 100644
index 000..79736f8
--- /dev/null
+++ b/nbbuild/licenses/BSD-woodstox
@@ -0,0 +1,26 @@
+Copyright (c) 2004-2010, Woodstox Project (http://woodstox.codehaus.org/)
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice,
+   this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright notice,
+   this list of conditions and the following disclaimer in the documentation
+   and/or other materials provided with the distribution.
+3. Neither the name of the Woodstox XML Processor nor the names
+   of its contributors may be used to endorse or promote products derived
+   from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/websvc.jaxws21/external/binaries-list 
b/websvc.jaxws21/external/binaries-list
index 7c4cc37..96c7b58 100644
--- a/websvc.jaxws21/external/binaries-list
+++ b/websvc.jaxws21/external/binaries-list
@@ -14,5 +14,19 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-84E2020E5499015E9F40D1212C86918264B89EB1 jaxws-2.2.6.zip
-8ECD169E9E308C258287E4F28B03B6D6F1E55F47 jaxws-2.2.6-api-doc.zip
+
+279E959309368046456F10EFC2BF0BD61CE98CF0 javax.xml.ws:jaxws-api:2.2.6:javadoc
+E8C1C096162A146C2D84135C5036EDF54C1B1D38 
com.sun.xml.fastinfoset:FastInfoset:1.2.12
+3502C55C7AD2085ECE6B38202B5169DD9177E0A2 
org.glassfish.gmbal:gmbal-api-only:3.1.0-b001
+260AC0DBF841E1D19AE0405A894515E67EF41F4B org.glassfish.ha:ha-api:3.1.8
+1AA1579AE5ECD41920C4F355B0A9EF40B68315DD javax.mail:mail:1.4
+F98B197F1C26536A709E6016CC238E79E58AA6E3 com.sun.xml.ws:jaxws-rt:2.2.6-1
+036033A238FBDFBF6FB47B7F3E644C90D0E9A805 com.sun.xml.ws:jaxws-tools:2.2.6-1
+707686D845FAEDE060B79BDF018A25A469A611B4 
org.glassfish.external:management-api:3.0.0-b012
+E0B2ED6E9CCAAFE3E96294A181C09E3AAE18AA90 org.jvnet.mimepull:mimepull:1.8
+AE9BFCE521AAB950D13D4447ACEC0BC1EFC5C9E8 com.sun.xml.ws:policy:2.3.1
+353EC287FADE0062410E10D788350BDFB0F9C13B 
com.sun.xml.messaging.saaj:saaj-impl:1.3.18
+21075D99A7A3BD39EF5A987BC310E905DA9FF899 org.jvnet.staxex:stax-ex:1.7
+0466EAB062E9D1A3CE2C4631B6D09B5E5C0CBD1B org.codehaus.woodstox:stax2-api:3.1.1
+AB7C3890FF7A0A5331C2F8938B02472E3D73A0D8 
com.sun.xml.stream.buffer:streambuffer:1.4
+B8DF430DDC4947BC7B68AF5ED09B8C1C5B527553 
org.codehaus.woodstox:woodstox-core-asl:4.1.2
\ No newline at end of file
diff --git a/websvc.jaxws21/external/jaxws-2.2.6-alv2-license.txt 

[incubator-netbeans] branch master updated (fd2a2de -> 720f126)

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


from fd2a2de  NETBEANS-951: terminate application in headless mode (#586)
 add 4ec91f9  [NETBEANS-839] Add NOTICE file for plexus cipher
 add e033b94  [NETBEANS-841][NETBEANS-842][NETBEANS-843] Fix licenses for 
jaxws runtime
 add 94661af  [NETBEANS-840] Remove invalid NOTICE file for cglib
 add 14f95eb  [NETBEANS-847] Adjust felix notice file to match the packaged 
one
 new 720f126  Merge pull request #585 from matthiasblaesing/licenses

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:
 libs.cglib/external/cglib-2.2-notice.txt   |   2 -
 .../org.apache.felix.main-4.2.1-notice.txt |   8 +-
 .../external/apache-maven-3.3.9-bin-notice.txt |   8 +
 nbbuild/licenses/BSD-woodstox  |  26 ++
 websvc.jaxws21/external/binaries-list  |  18 +-
 .../external/jaxws-2.2.6-alv2-license.txt  | 209 +++
 .../external/jaxws-2.2.6-bsd-woodstox-license.txt  |  34 ++
 .../external/jaxws-2.2.6-cddl10-license.txt| 407 +
 ...-license.txt => jaxws-2.2.6-cddl11-license.txt} |   2 +-
 websvc.jaxws21/nbproject/project.properties|  30 +-
 10 files changed, 723 insertions(+), 21 deletions(-)
 delete mode 100644 libs.cglib/external/cglib-2.2-notice.txt
 create mode 100644 nbbuild/licenses/BSD-woodstox
 create mode 100644 websvc.jaxws21/external/jaxws-2.2.6-alv2-license.txt
 create mode 100644 websvc.jaxws21/external/jaxws-2.2.6-bsd-woodstox-license.txt
 create mode 100644 websvc.jaxws21/external/jaxws-2.2.6-cddl10-license.txt
 rename websvc.jaxws21/external/{jaxws-2.2.6-license.txt => 
jaxws-2.2.6-cddl11-license.txt} (99%)

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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 #585 from matthiasblaesing/licenses

2018-06-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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

commit 720f126aa575306dfd8d883b4d58a4549fc12572
Merge: fd2a2de 14f95eb
Author: Matthias Bläsing 
AuthorDate: Tue Jun 12 19:38:30 2018 +0200

Merge pull request #585 from matthiasblaesing/licenses

License/Notice updates

 libs.cglib/external/cglib-2.2-notice.txt   |   2 -
 .../org.apache.felix.main-4.2.1-notice.txt |   8 +-
 .../external/apache-maven-3.3.9-bin-notice.txt |   8 +
 nbbuild/licenses/BSD-woodstox  |  26 ++
 websvc.jaxws21/external/binaries-list  |  18 +-
 .../external/jaxws-2.2.6-alv2-license.txt  | 209 +++
 .../external/jaxws-2.2.6-bsd-woodstox-license.txt  |  34 ++
 .../external/jaxws-2.2.6-cddl10-license.txt| 407 +
 ...-license.txt => jaxws-2.2.6-cddl11-license.txt} |   2 +-
 websvc.jaxws21/nbproject/project.properties|  30 +-
 10 files changed, 723 insertions(+), 21 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

-
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-330) NetBeans 9.0 UC hosted on Apache infra

2018-06-12 Thread JIRA


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

Jiří Kovalský updated NETBEANS-330:
---
Attachment: messages.log

> NetBeans 9.0 UC hosted on Apache infra
> --
>
> Key: NETBEANS-330
> URL: https://issues.apache.org/jira/browse/NETBEANS-330
> Project: NetBeans
>  Issue Type: Task
>  Components: website
>Affects Versions: 9.0
>Reporter: Jiří Kovalský
>Assignee: Jiří Kovalský
>Priority: Blocker
>  Labels: NETBEANS-9
> Attachments: Capture du 2018-06-07 16-17-04.png, Hudson 
> UI_plugin_found.JPG, Hudson UI_plugin_install.JPG, Hudson 
> UI_plugin_install_finished.JPG, Hudson UI_plugin_install_verify_CA.JPG, 
> NBUCERR-2018-06-07 10-04-41.png, NBUCERRCFN2018-06-07 10-06-42.png, 
> NBUCERRDL2018-06-07 10-22-27.png, image-2018-06-07-09-54-32-725.png, 
> messages.log, update_testing_2015-06-07.JPG
>
>
> In order to keep measuring number of NetBeans active users also in the future 
> we need to create an update center similar to 8.2 NetBeans Distribution UC 
> [1] which will be hosted on Apache infrastructure and register it in the 
> NetBeans 9.0 FCS build. We are measuring this statistics since 2004 and 
> stopping it now is not an option hence this is a blocker bug for 9.0 release.
> [1] 
> [http://updates.netbeans.org/netbeans/updates/8.2/uc/final/distribution/catalog.xml.gz]
> (for the uninitiated: UC == Update Center)



--
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-953) Profile jdk10 remote platform NullPointerException

2018-06-12 Thread Dell Green (JIRA)


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

Dell Green updated NETBEANS-953:

External issue URL: https://github.com/apache/incubator-netbeans/pull/588

> Profile jdk10 remote platform  NullPointerException
> ---
>
> Key: NETBEANS-953
> URL: https://issues.apache.org/jira/browse/NETBEANS-953
> Project: NetBeans
>  Issue Type: Bug
>  Components: profiler - Base
>Affects Versions: 9.0
> Environment: Mac OS X 10.9.5, Ubuntu 16.04, Mac OS X 10.13.3
>Reporter: Dell Green
>Priority: Critical
>  Labels: patch, pull-request-available
> Attachments: profiler-jdk10.patch
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Using Netbeans 9 on Mac and Linux and profiling  a remote application running 
> on jdk10 causes a NullPointerException. 
> Repeatable with client on: Mac OS X 10.9.5, Ubuntu 16.04, Mac OS X 10.13.3
> Repeatable with remote jdk10 on Mac OSX 10.13.3, Ubuntu 16.04 and linux armhf
> Repeatable with Netbeans9 RC1 and latest source on github at time of writing 
> (25f29be40b5d36447b3ce2bd170feac6bcc0a9ee)
> Other combinations were not tested, so probably exists on those as well
>  
> java.lang.NullPointerException at 
> org.netbeans.lib.profiler.common.integration.IntegrationUtils.getRemoteProfilerAgentCommandLineArgsWithoutQuotes(IntegrationUtils.java:540)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.setupAgentEnv(ProfilerLauncher.java:510)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.access$200(ProfilerLauncher.java:67)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.configure(ProfilerLauncher.java:327)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.getProperties(ProfilerLauncher.java:270)
>  at 
> org.netbeans.modules.profiler.nbimpl.providers.DefaultProfilerArgsProvider.getArguments(DefaultProfilerArgsProvider.java:48)
>  at 
> org.netbeans.modules.extexecution.startup.ProxyStartupExtender.getArguments(ProxyStartupExtender.java:58)
>  at 
> org.netbeans.api.extexecution.startup.StartupExtender.getExtenders(StartupExtender.java:85)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.runJvmargsIde(JFXActionProvider.java:319)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.collectStartupExtenderArgs(JFXActionProvider.java:257)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.invokeAction(JFXActionProvider.java:162)
>  at 
> org.netbeans.spi.project.support.LookupProviderSupport$MergedActionProvider.invokeAction(LookupProviderSupport.java:262)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$AntLauncher.launch(ProfilerLauncher.java:414)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.run(ProfilerLauncher.java:340)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$ProfilerSessionImpl.start(ProfilerLauncher.java:129)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerSession.doStart(ProfilerSession.java:237)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$16.run(ProfilerWindow.java:528)
>  at 
> org.netbeans.lib.profiler.ui.UIUtils.runInEventDispatchThread(UIUtils.java:603)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performDoStartImpl(ProfilerWindow.java:527)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performStartImpl(ProfilerWindow.java:522)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.access$400(ProfilerWindow.java:132)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$3.performAction(ProfilerWindow.java:236)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.fireActionPerformed(DropdownButton.java:389)
>  at 
> java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
>  at 
> java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270)
>  at 
> java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297)
>  at java.desktop/java.awt.Component.processMouseEvent(Component.java:6589) at 
> java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) 
> at java.desktop/java.awt.Component.processEvent(Component.java:6354) at 
> java.desktop/java.awt.Container.processEvent(Container.java:2261) at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEventImpl(DropdownButton.java:398)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.access$000(DropdownButton.java:352)
>  at 
> 

[jira] [Updated] (NETBEANS-953) Profile jdk10 remote platform NullPointerException

2018-06-12 Thread Dell Green (JIRA)


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

Dell Green updated NETBEANS-953:

Flags: Patch

> Profile jdk10 remote platform  NullPointerException
> ---
>
> Key: NETBEANS-953
> URL: https://issues.apache.org/jira/browse/NETBEANS-953
> Project: NetBeans
>  Issue Type: Bug
>  Components: profiler - Base
>Affects Versions: 9.0
> Environment: Mac OS X 10.9.5, Ubuntu 16.04, Mac OS X 10.13.3
>Reporter: Dell Green
>Priority: Critical
>  Labels: patch, pull-request-available
> Attachments: profiler-jdk10.patch
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Using Netbeans 9 on Mac and Linux and profiling  a remote application running 
> on jdk10 causes a NullPointerException. 
> Repeatable with client on: Mac OS X 10.9.5, Ubuntu 16.04, Mac OS X 10.13.3
> Repeatable with remote jdk10 on Mac OSX 10.13.3, Ubuntu 16.04 and linux armhf
> Repeatable with Netbeans9 RC1 and latest source on github at time of writing 
> (25f29be40b5d36447b3ce2bd170feac6bcc0a9ee)
> Other combinations were not tested, so probably exists on those as well
>  
> java.lang.NullPointerException at 
> org.netbeans.lib.profiler.common.integration.IntegrationUtils.getRemoteProfilerAgentCommandLineArgsWithoutQuotes(IntegrationUtils.java:540)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.setupAgentEnv(ProfilerLauncher.java:510)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.access$200(ProfilerLauncher.java:67)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.configure(ProfilerLauncher.java:327)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.getProperties(ProfilerLauncher.java:270)
>  at 
> org.netbeans.modules.profiler.nbimpl.providers.DefaultProfilerArgsProvider.getArguments(DefaultProfilerArgsProvider.java:48)
>  at 
> org.netbeans.modules.extexecution.startup.ProxyStartupExtender.getArguments(ProxyStartupExtender.java:58)
>  at 
> org.netbeans.api.extexecution.startup.StartupExtender.getExtenders(StartupExtender.java:85)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.runJvmargsIde(JFXActionProvider.java:319)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.collectStartupExtenderArgs(JFXActionProvider.java:257)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.invokeAction(JFXActionProvider.java:162)
>  at 
> org.netbeans.spi.project.support.LookupProviderSupport$MergedActionProvider.invokeAction(LookupProviderSupport.java:262)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$AntLauncher.launch(ProfilerLauncher.java:414)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.run(ProfilerLauncher.java:340)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$ProfilerSessionImpl.start(ProfilerLauncher.java:129)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerSession.doStart(ProfilerSession.java:237)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$16.run(ProfilerWindow.java:528)
>  at 
> org.netbeans.lib.profiler.ui.UIUtils.runInEventDispatchThread(UIUtils.java:603)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performDoStartImpl(ProfilerWindow.java:527)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performStartImpl(ProfilerWindow.java:522)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.access$400(ProfilerWindow.java:132)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$3.performAction(ProfilerWindow.java:236)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.fireActionPerformed(DropdownButton.java:389)
>  at 
> java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
>  at 
> java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270)
>  at 
> java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297)
>  at java.desktop/java.awt.Component.processMouseEvent(Component.java:6589) at 
> java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) 
> at java.desktop/java.awt.Component.processEvent(Component.java:6354) at 
> java.desktop/java.awt.Container.processEvent(Container.java:2261) at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEventImpl(DropdownButton.java:398)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.access$000(DropdownButton.java:352)
>  at 
> 

[jira] [Updated] (NETBEANS-953) Profile jdk10 remote platform NullPointerException

2018-06-12 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot updated NETBEANS-953:

Labels: patch pull-request-available  (was: patch)

> Profile jdk10 remote platform  NullPointerException
> ---
>
> Key: NETBEANS-953
> URL: https://issues.apache.org/jira/browse/NETBEANS-953
> Project: NetBeans
>  Issue Type: Bug
>  Components: profiler - Base
>Affects Versions: 9.0
> Environment: Mac OS X 10.9.5, Ubuntu 16.04, Mac OS X 10.13.3
>Reporter: Dell Green
>Priority: Critical
>  Labels: patch, pull-request-available
> Attachments: profiler-jdk10.patch
>
>
> Using Netbeans 9 on Mac and Linux and profiling  a remote application running 
> on jdk10 causes a NullPointerException. 
> Repeatable with client on: Mac OS X 10.9.5, Ubuntu 16.04, Mac OS X 10.13.3
> Repeatable with remote jdk10 on Mac OSX 10.13.3, Ubuntu 16.04 and linux armhf
> Repeatable with Netbeans9 RC1 and latest source on github at time of writing 
> (25f29be40b5d36447b3ce2bd170feac6bcc0a9ee)
> Other combinations were not tested, so probably exists on those as well
>  
> java.lang.NullPointerException at 
> org.netbeans.lib.profiler.common.integration.IntegrationUtils.getRemoteProfilerAgentCommandLineArgsWithoutQuotes(IntegrationUtils.java:540)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.setupAgentEnv(ProfilerLauncher.java:510)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.access$200(ProfilerLauncher.java:67)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.configure(ProfilerLauncher.java:327)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.getProperties(ProfilerLauncher.java:270)
>  at 
> org.netbeans.modules.profiler.nbimpl.providers.DefaultProfilerArgsProvider.getArguments(DefaultProfilerArgsProvider.java:48)
>  at 
> org.netbeans.modules.extexecution.startup.ProxyStartupExtender.getArguments(ProxyStartupExtender.java:58)
>  at 
> org.netbeans.api.extexecution.startup.StartupExtender.getExtenders(StartupExtender.java:85)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.runJvmargsIde(JFXActionProvider.java:319)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.collectStartupExtenderArgs(JFXActionProvider.java:257)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.invokeAction(JFXActionProvider.java:162)
>  at 
> org.netbeans.spi.project.support.LookupProviderSupport$MergedActionProvider.invokeAction(LookupProviderSupport.java:262)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$AntLauncher.launch(ProfilerLauncher.java:414)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.run(ProfilerLauncher.java:340)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$ProfilerSessionImpl.start(ProfilerLauncher.java:129)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerSession.doStart(ProfilerSession.java:237)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$16.run(ProfilerWindow.java:528)
>  at 
> org.netbeans.lib.profiler.ui.UIUtils.runInEventDispatchThread(UIUtils.java:603)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performDoStartImpl(ProfilerWindow.java:527)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performStartImpl(ProfilerWindow.java:522)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.access$400(ProfilerWindow.java:132)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$3.performAction(ProfilerWindow.java:236)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.fireActionPerformed(DropdownButton.java:389)
>  at 
> java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
>  at 
> java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270)
>  at 
> java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297)
>  at java.desktop/java.awt.Component.processMouseEvent(Component.java:6589) at 
> java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) 
> at java.desktop/java.awt.Component.processEvent(Component.java:6354) at 
> java.desktop/java.awt.Container.processEvent(Container.java:2261) at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEventImpl(DropdownButton.java:398)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.access$000(DropdownButton.java:352)
>  at 
> 

[jira] [Updated] (NETBEANS-953) Profile jdk10 remote platform NullPointerException

2018-06-12 Thread Dell Green (JIRA)


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

Dell Green updated NETBEANS-953:

Labels: patch  (was: )

> Profile jdk10 remote platform  NullPointerException
> ---
>
> Key: NETBEANS-953
> URL: https://issues.apache.org/jira/browse/NETBEANS-953
> Project: NetBeans
>  Issue Type: Bug
>  Components: profiler - Base
>Affects Versions: 9.0
> Environment: Repeatable with client on: Mac OS X 10.9.5, Ubuntu 
> 16.04, Mac OS X 10.13.3
> Repeatable with remote jdk10 on Mac OSX 10.13.3, Ubuntu 16.04 and linux armhf
> Repeatable with Netbeans9 RC1 and latest source on github at time of writing 
> (25f29be40b5d36447b3ce2bd170feac6bcc0a9ee)
> Other combinations were not tested, so probably exists on those as well
>Reporter: Dell Green
>Priority: Critical
>  Labels: patch
> Attachments: profiler-jdk10.patch
>
>
> Using Netbeans 9 on Mac and Linux and profiling  a remote application running 
> on jdk10 causes a NullPointerException. 
>  
> java.lang.NullPointerException at 
> org.netbeans.lib.profiler.common.integration.IntegrationUtils.getRemoteProfilerAgentCommandLineArgsWithoutQuotes(IntegrationUtils.java:540)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.setupAgentEnv(ProfilerLauncher.java:510)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.access$200(ProfilerLauncher.java:67)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.configure(ProfilerLauncher.java:327)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.getProperties(ProfilerLauncher.java:270)
>  at 
> org.netbeans.modules.profiler.nbimpl.providers.DefaultProfilerArgsProvider.getArguments(DefaultProfilerArgsProvider.java:48)
>  at 
> org.netbeans.modules.extexecution.startup.ProxyStartupExtender.getArguments(ProxyStartupExtender.java:58)
>  at 
> org.netbeans.api.extexecution.startup.StartupExtender.getExtenders(StartupExtender.java:85)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.runJvmargsIde(JFXActionProvider.java:319)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.collectStartupExtenderArgs(JFXActionProvider.java:257)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.invokeAction(JFXActionProvider.java:162)
>  at 
> org.netbeans.spi.project.support.LookupProviderSupport$MergedActionProvider.invokeAction(LookupProviderSupport.java:262)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$AntLauncher.launch(ProfilerLauncher.java:414)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.run(ProfilerLauncher.java:340)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$ProfilerSessionImpl.start(ProfilerLauncher.java:129)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerSession.doStart(ProfilerSession.java:237)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$16.run(ProfilerWindow.java:528)
>  at 
> org.netbeans.lib.profiler.ui.UIUtils.runInEventDispatchThread(UIUtils.java:603)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performDoStartImpl(ProfilerWindow.java:527)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performStartImpl(ProfilerWindow.java:522)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.access$400(ProfilerWindow.java:132)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$3.performAction(ProfilerWindow.java:236)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.fireActionPerformed(DropdownButton.java:389)
>  at 
> java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
>  at 
> java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270)
>  at 
> java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297)
>  at java.desktop/java.awt.Component.processMouseEvent(Component.java:6589) at 
> java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) 
> at java.desktop/java.awt.Component.processEvent(Component.java:6354) at 
> java.desktop/java.awt.Container.processEvent(Container.java:2261) at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEventImpl(DropdownButton.java:398)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.access$000(DropdownButton.java:352)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton.processChildMouseEvent(DropdownButton.java:305)
>  at 
> 

[jira] [Updated] (NETBEANS-953) Profile jdk10 remote platform NullPointerException

2018-06-12 Thread Dell Green (JIRA)


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

Dell Green updated NETBEANS-953:

Description: 
Using Netbeans 9 on Mac and Linux and profiling  a remote application running 
on jdk10 causes a NullPointerException. 

Repeatable with client on: Mac OS X 10.9.5, Ubuntu 16.04, Mac OS X 10.13.3
Repeatable with remote jdk10 on Mac OSX 10.13.3, Ubuntu 16.04 and linux armhf
Repeatable with Netbeans9 RC1 and latest source on github at time of writing 
(25f29be40b5d36447b3ce2bd170feac6bcc0a9ee)

Other combinations were not tested, so probably exists on those as well

 

java.lang.NullPointerException at 
org.netbeans.lib.profiler.common.integration.IntegrationUtils.getRemoteProfilerAgentCommandLineArgsWithoutQuotes(IntegrationUtils.java:540)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.setupAgentEnv(ProfilerLauncher.java:510)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.access$200(ProfilerLauncher.java:67)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.configure(ProfilerLauncher.java:327)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.getProperties(ProfilerLauncher.java:270)
 at 
org.netbeans.modules.profiler.nbimpl.providers.DefaultProfilerArgsProvider.getArguments(DefaultProfilerArgsProvider.java:48)
 at 
org.netbeans.modules.extexecution.startup.ProxyStartupExtender.getArguments(ProxyStartupExtender.java:58)
 at 
org.netbeans.api.extexecution.startup.StartupExtender.getExtenders(StartupExtender.java:85)
 at 
org.netbeans.modules.javafx2.project.JFXActionProvider.runJvmargsIde(JFXActionProvider.java:319)
 at 
org.netbeans.modules.javafx2.project.JFXActionProvider.collectStartupExtenderArgs(JFXActionProvider.java:257)
 at 
org.netbeans.modules.javafx2.project.JFXActionProvider.invokeAction(JFXActionProvider.java:162)
 at 
org.netbeans.spi.project.support.LookupProviderSupport$MergedActionProvider.invokeAction(LookupProviderSupport.java:262)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$AntLauncher.launch(ProfilerLauncher.java:414)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.run(ProfilerLauncher.java:340)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$ProfilerSessionImpl.start(ProfilerLauncher.java:129)
 at 
org.netbeans.modules.profiler.v2.ProfilerSession.doStart(ProfilerSession.java:237)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow$16.run(ProfilerWindow.java:528) 
at 
org.netbeans.lib.profiler.ui.UIUtils.runInEventDispatchThread(UIUtils.java:603) 
at 
org.netbeans.modules.profiler.v2.ProfilerWindow.performDoStartImpl(ProfilerWindow.java:527)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow.performStartImpl(ProfilerWindow.java:522)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow.access$400(ProfilerWindow.java:132)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow$3.performAction(ProfilerWindow.java:236)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.fireActionPerformed(DropdownButton.java:389)
 at 
java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
 at 
java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
 at 
java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
 at 
java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270)
 at 
java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297)
 at java.desktop/java.awt.Component.processMouseEvent(Component.java:6589) at 
java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) at 
java.desktop/java.awt.Component.processEvent(Component.java:6354) at 
java.desktop/java.awt.Container.processEvent(Container.java:2261) at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEventImpl(DropdownButton.java:398)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.access$000(DropdownButton.java:352)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton.processChildMouseEvent(DropdownButton.java:305)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton.access$400(DropdownButton.java:53)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEvent(DropdownButton.java:394)
 at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:4966) at 
java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2319) at 
java.desktop/java.awt.Component.dispatchEvent(Component.java:4798) at 
java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4914)
 at 
java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4543)
 at 
java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4484) 
at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2305) at 

[jira] [Updated] (NETBEANS-953) Profile jdk10 remote platform NullPointerException

2018-06-12 Thread Dell Green (JIRA)


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

Dell Green updated NETBEANS-953:

Attachment: profiler-jdk10.patch

> Profile jdk10 remote platform  NullPointerException
> ---
>
> Key: NETBEANS-953
> URL: https://issues.apache.org/jira/browse/NETBEANS-953
> Project: NetBeans
>  Issue Type: Bug
>  Components: profiler - Base
>Affects Versions: 9.0
> Environment: Repeatable with client on: Mac OS X 10.9.5, Ubuntu 
> 16.04, Mac OS X 10.13.3
> Repeatable with remote jdk10 on Mac OSX 10.13.3, Ubuntu 16.04 and linux armhf
> Repeatable with Netbeans9 RC1 and latest source on github at time of writing 
> (25f29be40b5d36447b3ce2bd170feac6bcc0a9ee)
> Other combinations were not tested, so probably exists on those as well
>Reporter: Dell Green
>Priority: Critical
>  Labels: patch
> Attachments: profiler-jdk10.patch
>
>
> Using Netbeans 9 on Mac and Linux and profiling  a remote application running 
> on jdk10 causes a NullPointerException. 
>  
> java.lang.NullPointerException at 
> org.netbeans.lib.profiler.common.integration.IntegrationUtils.getRemoteProfilerAgentCommandLineArgsWithoutQuotes(IntegrationUtils.java:540)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.setupAgentEnv(ProfilerLauncher.java:510)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.access$200(ProfilerLauncher.java:67)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.configure(ProfilerLauncher.java:327)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.getProperties(ProfilerLauncher.java:270)
>  at 
> org.netbeans.modules.profiler.nbimpl.providers.DefaultProfilerArgsProvider.getArguments(DefaultProfilerArgsProvider.java:48)
>  at 
> org.netbeans.modules.extexecution.startup.ProxyStartupExtender.getArguments(ProxyStartupExtender.java:58)
>  at 
> org.netbeans.api.extexecution.startup.StartupExtender.getExtenders(StartupExtender.java:85)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.runJvmargsIde(JFXActionProvider.java:319)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.collectStartupExtenderArgs(JFXActionProvider.java:257)
>  at 
> org.netbeans.modules.javafx2.project.JFXActionProvider.invokeAction(JFXActionProvider.java:162)
>  at 
> org.netbeans.spi.project.support.LookupProviderSupport$MergedActionProvider.invokeAction(LookupProviderSupport.java:262)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$AntLauncher.launch(ProfilerLauncher.java:414)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.run(ProfilerLauncher.java:340)
>  at 
> org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$ProfilerSessionImpl.start(ProfilerLauncher.java:129)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerSession.doStart(ProfilerSession.java:237)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$16.run(ProfilerWindow.java:528)
>  at 
> org.netbeans.lib.profiler.ui.UIUtils.runInEventDispatchThread(UIUtils.java:603)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performDoStartImpl(ProfilerWindow.java:527)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.performStartImpl(ProfilerWindow.java:522)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow.access$400(ProfilerWindow.java:132)
>  at 
> org.netbeans.modules.profiler.v2.ProfilerWindow$3.performAction(ProfilerWindow.java:236)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.fireActionPerformed(DropdownButton.java:389)
>  at 
> java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
>  at 
> java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
>  at 
> java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270)
>  at 
> java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297)
>  at java.desktop/java.awt.Component.processMouseEvent(Component.java:6589) at 
> java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) 
> at java.desktop/java.awt.Component.processEvent(Component.java:6354) at 
> java.desktop/java.awt.Container.processEvent(Container.java:2261) at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEventImpl(DropdownButton.java:398)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.access$000(DropdownButton.java:352)
>  at 
> org.netbeans.modules.profiler.v2.ui.DropdownButton.processChildMouseEvent(DropdownButton.java:305)
>  at 
> 

[jira] [Created] (NETBEANS-953) Profile jdk10 remote platform NullPointerException

2018-06-12 Thread Dell Green (JIRA)
Dell Green created NETBEANS-953:
---

 Summary: Profile jdk10 remote platform  NullPointerException
 Key: NETBEANS-953
 URL: https://issues.apache.org/jira/browse/NETBEANS-953
 Project: NetBeans
  Issue Type: Bug
  Components: profiler - Base
Affects Versions: 9.0
 Environment: Repeatable with client on: Mac OS X 10.9.5, Ubuntu 16.04, 
Mac OS X 10.13.3
Repeatable with remote jdk10 on Mac OSX 10.13.3, Ubuntu 16.04 and linux armhf
Repeatable with Netbeans9 RC1 and latest source on github at time of writing 
(25f29be40b5d36447b3ce2bd170feac6bcc0a9ee)

Other combinations were not tested, so probably exists on those as well

Reporter: Dell Green


Using Netbeans 9 on Mac and Linux and profiling  a remote application running 
on jdk10 causes a NullPointerException. 

 

java.lang.NullPointerException at 
org.netbeans.lib.profiler.common.integration.IntegrationUtils.getRemoteProfilerAgentCommandLineArgsWithoutQuotes(IntegrationUtils.java:540)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.setupAgentEnv(ProfilerLauncher.java:510)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher.access$200(ProfilerLauncher.java:67)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.configure(ProfilerLauncher.java:327)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.getProperties(ProfilerLauncher.java:270)
 at 
org.netbeans.modules.profiler.nbimpl.providers.DefaultProfilerArgsProvider.getArguments(DefaultProfilerArgsProvider.java:48)
 at 
org.netbeans.modules.extexecution.startup.ProxyStartupExtender.getArguments(ProxyStartupExtender.java:58)
 at 
org.netbeans.api.extexecution.startup.StartupExtender.getExtenders(StartupExtender.java:85)
 at 
org.netbeans.modules.javafx2.project.JFXActionProvider.runJvmargsIde(JFXActionProvider.java:319)
 at 
org.netbeans.modules.javafx2.project.JFXActionProvider.collectStartupExtenderArgs(JFXActionProvider.java:257)
 at 
org.netbeans.modules.javafx2.project.JFXActionProvider.invokeAction(JFXActionProvider.java:162)
 at 
org.netbeans.spi.project.support.LookupProviderSupport$MergedActionProvider.invokeAction(LookupProviderSupport.java:262)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$AntLauncher.launch(ProfilerLauncher.java:414)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$Session.run(ProfilerLauncher.java:340)
 at 
org.netbeans.modules.profiler.nbimpl.actions.ProfilerLauncher$ProfilerSessionImpl.start(ProfilerLauncher.java:129)
 at 
org.netbeans.modules.profiler.v2.ProfilerSession.doStart(ProfilerSession.java:237)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow$16.run(ProfilerWindow.java:528) 
at 
org.netbeans.lib.profiler.ui.UIUtils.runInEventDispatchThread(UIUtils.java:603) 
at 
org.netbeans.modules.profiler.v2.ProfilerWindow.performDoStartImpl(ProfilerWindow.java:527)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow.performStartImpl(ProfilerWindow.java:522)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow.access$400(ProfilerWindow.java:132)
 at 
org.netbeans.modules.profiler.v2.ProfilerWindow$3.performAction(ProfilerWindow.java:236)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.fireActionPerformed(DropdownButton.java:389)
 at 
java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308)
 at 
java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405)
 at 
java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262)
 at 
java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:270)
 at 
java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297)
 at java.desktop/java.awt.Component.processMouseEvent(Component.java:6589) at 
java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) at 
java.desktop/java.awt.Component.processEvent(Component.java:6354) at 
java.desktop/java.awt.Container.processEvent(Container.java:2261) at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEventImpl(DropdownButton.java:398)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.access$000(DropdownButton.java:352)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton.processChildMouseEvent(DropdownButton.java:305)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton.access$400(DropdownButton.java:53)
 at 
org.netbeans.modules.profiler.v2.ui.DropdownButton$Button.processEvent(DropdownButton.java:394)
 at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:4966) at 
java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2319) at 
java.desktop/java.awt.Component.dispatchEvent(Component.java:4798) at 
java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4914)
 at 

[jira] [Commented] (NETBEANS-876) Update release 9.0 branding

2018-06-12 Thread Geertjan Wielenga (JIRA)


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

Geertjan Wielenga commented on NETBEANS-876:


Yes, this one is related to this issue:

https://github.com/apache/incubator-netbeans/pull/583

Aside from that, nothing left in this issue unless I'm mistaken.

> Update release 9.0 branding
> ---
>
> Key: NETBEANS-876
> URL: https://issues.apache.org/jira/browse/NETBEANS-876
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Jiří Kovalský
>Priority: Blocker
>  Labels: pull-request-available
> Attachments: logo.zip, splashscreen.zip
>
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> In order to build Apache NetBeans IDE 9.0 release candidate we need to update:
>  # name to *Apache NetBeans IDE 9.0*
>  # URLs to update centers from _{color:#f79232}updates.netbeans.org{color}_ 
> to {color:#f79232}_netbeans.apache.org_{color}
>  # splash screen
>  # user and cache directories to _{color:#f79232}.netbeans/9.0{color}_ and 
> _{color:#f79232}.cache/netbeans/9.0{color}_
>  # Remove assertions {{-J-ea}} from the {{netbeans.conf}}



--
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] branch master updated: NETBEANS-951: terminate application in headless mode (#586)

2018-06-12 Thread sdedic
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new fd2a2de  NETBEANS-951: terminate application in headless mode (#586)
fd2a2de is described below

commit fd2a2de2141b66fc47c1f1d888b7bbc3bc81d4e4
Author: Svatopluk Dedic 
AuthorDate: Tue Jun 12 10:01:33 2018 +0200

NETBEANS-951: terminate application in headless mode (#586)
---
 o.n.core/src/org/netbeans/core/GuiRunLevel.java | 20 ++--
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/o.n.core/src/org/netbeans/core/GuiRunLevel.java 
b/o.n.core/src/org/netbeans/core/GuiRunLevel.java
index f46f028..c072a90 100644
--- a/o.n.core/src/org/netbeans/core/GuiRunLevel.java
+++ b/o.n.core/src/org/netbeans/core/GuiRunLevel.java
@@ -36,6 +36,7 @@ import org.openide.awt.StatusDisplayer;
 import org.openide.util.Exceptions;
 import org.openide.util.Lookup;
 import org.openide.util.NbBundle;
+import org.openide.util.RequestProcessor;
 import org.openide.util.lookup.ServiceProvider;
 import org.openide.windows.WindowManager;
 
@@ -67,12 +68,19 @@ public class GuiRunLevel implements RunLevel {
 Splash.getInstance().increment(10);
 
 if (CLIOptions.isGui()) {
-
//-
-// initialize main window AFTER the setup wizard is finished
-
-initializeMainWindow ();
-StartLog.logProgress ("Main window initialized"); // NOI18N
-Splash.getInstance().increment(1);
+
//-
+// initialize main window AFTER the setup wizard is finished
+
+initializeMainWindow ();
+StartLog.logProgress ("Main window initialized"); // NOI18N
+Splash.getInstance().increment(1);
+} else {
+RequestProcessor.getDefault().post(new Runnable() {
+@Override
+public void run() {
+maybeDie(null);
+}
+});
 }
 
 // 
-

-- 
To stop receiving notification emails like this one, please contact
sde...@apache.org.

-
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-952) JDK9-64Bit is not detected currectkly by harness

2018-06-12 Thread JIRA


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

Jens Hofschröer updated NETBEANS-952:
-
Description: 
When starting to debug an Apache Netbeans Platform Application with a JDK9+ 
Runtime (on windows?) the 32-bit version of the nbexec is used to start the 
application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only the 
current detection of 32 or 64 Bit JRE is not working. There is no "jre" folder 
is a JDK 9+

{{}}
{{}}
{{    }}
{{}}

The result of this is, that no ouput from the application is shown in the 
output window.

  was:
When starting to debug an Apache Netbeans Platform Application with a JDK9+ 
Runtime (on windows?) the 32-bit version of the nbexec is used to start the 
application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only the 
current detection of 32 or 64 Bit JRE is not working. There is no "jre" folder 
is a JDK 9+

{{}}
{{}}
{{}}
{{}}

The result of this is, that no ouput from the application is shown in the 
output window.


> JDK9-64Bit is not detected currectkly by harness
> 
>
> Key: NETBEANS-952
> URL: https://issues.apache.org/jira/browse/NETBEANS-952
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Harness, debugger - Ant
>Affects Versions: 9.0
>Reporter: Jens Hofschröer
>Priority: Minor
>  Labels: windows
>
> When starting to debug an Apache Netbeans Platform Application with a JDK9+ 
> Runtime (on windows?) the 32-bit version of the nbexec is used to start the 
> application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only 
> the current detection of 32 or 64 Bit JRE is not working. There is no "jre" 
> folder is a JDK 9+
> {{}}
> {{}}
> {{    }}
> {{}}
> The result of this is, that no ouput from the application is shown in the 
> output window.



--
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-952) JDK9-64Bit is not detected currectkly by harness

2018-06-12 Thread JIRA


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

Jens Hofschröer updated NETBEANS-952:
-
Description: 
When starting to debug an Apache Netbeans Platform Application with a JDK9+ 
Runtime (on windows?) the 32-bit version of the nbexec is used to start the 
application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only the 
current detection of 32 or 64 Bit JRE is not working. There is no "jre" folder 
is a JDK 9+

{{}}
{{}}
{{}}
{{}}

The result of this is, that no ouput from the application is shown in the 
output window.

  was:
When starting to debug an Apache Netbeans Platform Application with a JDK9+ 
Runtime (on windows?) the 32-bit version of the nbexec is used to start the 
application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only the 
current detection of 32 or 64 Bit JRE is not working. There is no "jre" folder 
is a JDK 9+

{{


}}

The result of this is, that no ouput from the application is shown in the 
output window.


> JDK9-64Bit is not detected currectkly by harness
> 
>
> Key: NETBEANS-952
> URL: https://issues.apache.org/jira/browse/NETBEANS-952
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Harness, debugger - Ant
>Affects Versions: 9.0
>Reporter: Jens Hofschröer
>Priority: Minor
>  Labels: windows
>
> When starting to debug an Apache Netbeans Platform Application with a JDK9+ 
> Runtime (on windows?) the 32-bit version of the nbexec is used to start the 
> application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only 
> the current detection of 32 or 64 Bit JRE is not working. There is no "jre" 
> folder is a JDK 9+
> {{}}
> {{}}
> {{}}
> {{}}
> The result of this is, that no ouput from the application is shown in the 
> output window.



--
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-952) JDK9-64Bit is not detected currectkly by harness

2018-06-12 Thread JIRA
Jens Hofschröer created NETBEANS-952:


 Summary: JDK9-64Bit is not detected currectkly by harness
 Key: NETBEANS-952
 URL: https://issues.apache.org/jira/browse/NETBEANS-952
 Project: NetBeans
  Issue Type: Bug
  Components: apisupport - Harness, debugger - Ant
Affects Versions: 9.0
Reporter: Jens Hofschröer


When starting to debug an Apache Netbeans Platform Application with a JDK9+ 
Runtime (on windows?) the 32-bit version of the nbexec is used to start the 
application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only the 
current detection of 32 or 64 Bit JRE is not working. There is no "jre" folder 
is a JDK 9+

{{


}}

The result of this is, that no ouput from the application is shown in the 
output window.



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