[jira] [Updated] (NETBEANS-1701) Multiple assignments to variable inside try catch block

2019-07-22 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-1701:
---
Component/s: (was: php - Code)
 php - Editor

> Multiple assignments to variable inside try catch block
> ---
>
> Key: NETBEANS-1701
> URL: https://issues.apache.org/jira/browse/NETBEANS-1701
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis, php - Editor
>Affects Versions: 8.2
>Reporter: César de la Cal
>Priority: Minor
>
> Hello dear Netbeans team,
>  
> I found a little issue when analyzing the code that I write in PHP. When I 
> write the following code it points out an issue that is not really an issue:
>  
>   $a = false;
> try {
>   function_with_exception();
>   $a = true;
> } catch (Exception$e) {}
>  
> Yields a "You should only use 1 assignment to $a", while something like this 
> works as expected:
> {{ {{$a = false;}}
> {{if(function_that_may_return_false()) {}}
> {{  $a = true;}}
> {{} }}
> I suppose that both pieces of code should be treated equally by the static 
> code analysis. Either both are OK or neither is.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2158) No error when accessing undeclared or private properties

2019-07-22 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto commented on NETBEANS-2158:


This is not a bug. I'm worried about performance. Hint feature is called many 
times. So, if it takes much time to analyze it, performance would be bad, maybe.

> No error when accessing undeclared or private properties
> 
>
> Key: NETBEANS-2158
> URL: https://issues.apache.org/jira/browse/NETBEANS-2158
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Code Analysis, php - Editor
>Affects Versions: 10.0, 11.0
>Reporter: Fabian Kleinhans
>Priority: Major
>  Labels: php, php7
> Attachments: code.png
>
>
> Hi,
> I just switched from Netbeans 8.2 to 10 some days ago. Now I wonder why 
> accessing undeclared or private properties in my PHP files are not marked in 
> the code like in 8.2. E.g.:
> {code:java}
>  class A {
>  
>   private $bar;
>  
>   public function __construct() {
>     $this->bar = 1;
>   }
> }
> $foo = new A();
> echo $foo->bar;
> echo $foo->bar2;
> {code}
> This code has green status saying "No errors". The project is set as 
> PHP-project.
> Have I missed a setting? I spent hours of research but didn't find a solution.
> Thanks for any hint!
> Fabian
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2158) No error when accessing undeclared or private properties

2019-07-22 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-2158:
---
Issue Type: New Feature  (was: Bug)

> No error when accessing undeclared or private properties
> 
>
> Key: NETBEANS-2158
> URL: https://issues.apache.org/jira/browse/NETBEANS-2158
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Code Analysis
>Affects Versions: 10.0, 11.0
>Reporter: Fabian Kleinhans
>Priority: Major
>  Labels: php, php7
> Attachments: code.png
>
>
> Hi,
> I just switched from Netbeans 8.2 to 10 some days ago. Now I wonder why 
> accessing undeclared or private properties in my PHP files are not marked in 
> the code like in 8.2. E.g.:
> {code:java}
>  class A {
>  
>   private $bar;
>  
>   public function __construct() {
>     $this->bar = 1;
>   }
> }
> $foo = new A();
> echo $foo->bar;
> echo $foo->bar2;
> {code}
> This code has green status saying "No errors". The project is set as 
> PHP-project.
> Have I missed a setting? I spent hours of research but didn't find a solution.
> Thanks for any hint!
> Fabian
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2158) No error when accessing undeclared or private properties

2019-07-22 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-2158:
---
Component/s: php - Editor

> No error when accessing undeclared or private properties
> 
>
> Key: NETBEANS-2158
> URL: https://issues.apache.org/jira/browse/NETBEANS-2158
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Code Analysis, php - Editor
>Affects Versions: 10.0, 11.0
>Reporter: Fabian Kleinhans
>Priority: Major
>  Labels: php, php7
> Attachments: code.png
>
>
> Hi,
> I just switched from Netbeans 8.2 to 10 some days ago. Now I wonder why 
> accessing undeclared or private properties in my PHP files are not marked in 
> the code like in 8.2. E.g.:
> {code:java}
>  class A {
>  
>   private $bar;
>  
>   public function __construct() {
>     $this->bar = 1;
>   }
> }
> $foo = new A();
> echo $foo->bar;
> echo $foo->bar2;
> {code}
> This code has green status saying "No errors". The project is set as 
> PHP-project.
> Have I missed a setting? I spent hours of research but didn't find a solution.
> Thanks for any hint!
> Fabian
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2873) Suggest using combined assignment operators

2019-07-22 Thread ASF GitHub Bot (JIRA)


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

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

> Suggest using combined assignment operators
> ---
>
> Key: NETBEANS-2873
> URL: https://issues.apache.org/jira/browse/NETBEANS-2873
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Editor
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
>
> e.g. 
> {code:php}
> // ??
> $string = $string ?? "value"; // before
> $string ??= "value"; // after
> // +
> $x = $x + 100; // before
> $x += 100; // after{code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2879) Parts of the UI look better when Java 1.8 is the default vs. Java 12.0.1

2019-07-22 Thread Steven Rosenberg (JIRA)
Steven Rosenberg created NETBEANS-2879:
--

 Summary: Parts of the UI look better when Java 1.8 is the default 
vs. Java 12.0.1
 Key: NETBEANS-2879
 URL: https://issues.apache.org/jira/browse/NETBEANS-2879
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.0
 Environment: Windows 10 with HD (1920x1080) screen.
Reporter: Steven Rosenberg
 Attachments: 2019_0722_apache_netbeans_with_java_1.8.jpg, 
2019_0722_apache_netbeans_with_java_12.jpg

Parts of the UI in Apache NetBeans 11 (11.0 and 11.1) look sharper when Java 
1.8 is the default JDK and less sharp (more pixelated) when Java 12.0.1 is the 
default JDK.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[netbeans] 01/01: Merge pull request #1391 from apache/master

2019-07-22 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a commit to branch release111
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit e3f3105d81681e5a78680af2a2b739166dc274c0
Merge: d9ec4e5 64b9a50
Author: Neil C Smith 
AuthorDate: Mon Jul 22 20:12:45 2019 +0100

Merge pull request #1391 from apache/master

Sync API sigs to release branch.

 .../org-netbeans-modules-apisupport-ant.sig| 2 +-
 .../org-netbeans-modules-apisupport-installer.sig  | 2 +-
 .../org-netbeans-modules-apisupport-project.sig| 2 +-
 .../nbproject/org-netbeans-api-web-webmodule.sig   | 2 +-
 .../org-netbeans-modules-cloud-common.sig  | 2 +-
 .../nbproject/org-netbeans-modules-el-lexer.sig| 2 +-
 .../org-netbeans-modules-glassfish-common.sig  |11 +-
 .../org-netbeans-modules-glassfish-eecommon.sig| 4 +-
 .../org-netbeans-modules-glassfish-tooling.sig |12 +-
 .../org-netbeans-modules-j2ee-api-ejbmodule.sig| 2 +-
 .../org-netbeans-modules-j2ee-clientproject.sig| 2 +-
 .../nbproject/org-netbeans-modules-j2ee-common.sig | 2 +-
 .../nbproject/org-netbeans-modules-j2ee-core.sig   | 4 +-
 .../org-netbeans-modules-j2ee-dd-webservice.sig| 2 +-
 .../nbproject/org-netbeans-modules-j2ee-dd.sig | 3 +-
 .../org-netbeans-modules-j2ee-ejbcore.sig  | 2 +-
 .../org-netbeans-modules-j2ee-ejbjarproject.sig| 2 +-
 .../org-netbeans-modules-j2ee-sun-appsrv.sig   | 2 +-
 .../nbproject/org-netbeans-modules-j2ee-sun-dd.sig | 2 +-
 .../org-netbeans-modules-j2ee-sun-ddui.sig |  2498 +++-
 .../nbproject/org-netbeans-modules-j2eeapis.sig| 2 +-
 .../nbproject/org-netbeans-modules-j2eeserver.sig  | 2 +-
 .../org-netbeans-modules-javaee-project.sig| 4 +-
 .../org-netbeans-modules-javaee-resources.sig  | 2 +-
 .../org-netbeans-modules-javaee-specs-support.sig  | 2 +-
 .../org-netbeans-modules-jellytools-enterprise.sig | 2 +-
 .../nbproject/org-netbeans-modules-jsp-lexer.sig   | 2 +-
 .../nbproject/org-netbeans-libs-amazon.sig | 2 +-
 .../org-netbeans-libs-glassfish_logging.sig| 2 +-
 .../nbproject/org-netbeans-modules-maven-j2ee.sig  |   168 +-
 .../org-netbeans-modules-payara-common.sig |   255 +-
 .../org-netbeans-modules-payara-eecommon.sig   |   209 +-
 .../org-netbeans-modules-payara-tooling.sig|   124 +-
 .../org-netbeans-modules-servletjspapi.sig | 2 +-
 .../nbproject/org-netbeans-modules-web-beans.sig   | 2 +-
 .../nbproject/org-netbeans-modules-web-core.sig| 2 +-
 .../nbproject/org-netbeans-modules-web-el.sig  | 2 +-
 .../org-netbeans-modules-web-jsf-navigation.sig| 2 +-
 .../nbproject/org-netbeans-modules-web-jsf.sig | 3 +-
 .../nbproject/org-netbeans-modules-web-jsf12.sig   | 2 +-
 .../nbproject/org-netbeans-modules-web-jsf12ri.sig | 2 +-
 .../nbproject/org-netbeans-modules-web-jsf20.sig   |15 +-
 .../nbproject/org-netbeans-modules-web-jsfapi.sig  | 2 +-
 .../org-netbeans-modules-web-jspparser.sig | 2 +-
 .../nbproject/org-netbeans-modules-web-project.sig | 2 +-
 .../org-netbeans-modules-weblogic-common.sig   | 2 +-
 .../org-netbeans-modules-websvc-clientapi.sig  | 3 +-
 .../nbproject/org-netbeans-modules-websvc-core.sig | 2 +-
 .../org-netbeans-modules-websvc-design.sig | 6 +-
 .../org-netbeans-modules-websvc-jaxws-lightapi.sig | 2 +-
 .../org-netbeans-modules-websvc-jaxwsapi.sig   | 3 +-
 .../org-netbeans-modules-websvc-jaxwsmodel.sig | 2 +-
 .../org-netbeans-modules-websvc-manager.sig| 2 +-
 .../org-netbeans-modules-websvc-projectapi.sig | 2 +-
 .../nbproject/org-netbeans-modules-websvc-rest.sig | 2 +-
 .../org-netbeans-modules-websvc-restapi.sig| 3 +-
 .../org-netbeans-modules-websvc-restlib.sig| 2 +-
 .../org-netbeans-modules-websvc-utilities.sig  | 2 +-
 .../org-netbeans-modules-websvc-websvcapi.sig  | 2 +-
 .../org-netbeans-modules-websvc-wsstackapi.sig | 2 +-
 .../nbproject/org-apache-tools-ant-module.sig  | 2 +-
 .../org-netbeans-modules-options-java.sig  | 2 +-
 .../nbproject/org-netbeans-modules-gradle-java.sig | 5 +-
 .../nbproject/org-netbeans-modules-gradle.sig  | 2 +-
 .../org-netbeans-modules-groovy-editor.sig | 2 +-
 .../org-netbeans-modules-groovy-support.sig| 2 +-
 .../nbproject/org-netbeans-modules-libs-groovy.sig | 2 +-
 .../org-netbeans-modules-jellytools-platform.sig   | 2 +-
 .../jemmy/nbproject/org-netbeans-modules-jemmy.sig | 2 +-
 .../nbproject/org-netbeans-modules-nbjunit.sig | 2 +-
 .../o.n.insane/nbproject/org-netbeans-insane.sig   | 2 +-
 .../nbproject/org-netbeans-api-debugger.sig| 4 +-
 .../nbproject/org-netbeans-api-java-classpath.sig  

[netbeans] branch release111 updated (d9ec4e5 -> e3f3105)

2019-07-22 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

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


from d9ec4e5  Merge pull request #1374 from apache/master
 add 3a17be6  Snapshot of APIs as of Apache NetBeans 11.1 - 
d9ec4e569177f19413439e1775707928cc93e1a5
 add 64b9a50  Merge pull request #1389 from 
neilcsmith-net/SnapshotOfAPIsAsOfRelease111
 new e3f3105  Merge pull request #1391 from apache/master

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:
 .../org-netbeans-modules-apisupport-ant.sig| 2 +-
 .../org-netbeans-modules-apisupport-installer.sig  | 2 +-
 .../org-netbeans-modules-apisupport-project.sig| 2 +-
 .../nbproject/org-netbeans-api-web-webmodule.sig   | 2 +-
 .../org-netbeans-modules-cloud-common.sig  | 2 +-
 .../nbproject/org-netbeans-modules-el-lexer.sig| 2 +-
 .../org-netbeans-modules-glassfish-common.sig  |11 +-
 .../org-netbeans-modules-glassfish-eecommon.sig| 4 +-
 .../org-netbeans-modules-glassfish-tooling.sig |12 +-
 .../org-netbeans-modules-j2ee-api-ejbmodule.sig| 2 +-
 .../org-netbeans-modules-j2ee-clientproject.sig| 2 +-
 .../nbproject/org-netbeans-modules-j2ee-common.sig | 2 +-
 .../nbproject/org-netbeans-modules-j2ee-core.sig   | 4 +-
 .../org-netbeans-modules-j2ee-dd-webservice.sig| 2 +-
 .../nbproject/org-netbeans-modules-j2ee-dd.sig | 3 +-
 .../org-netbeans-modules-j2ee-ejbcore.sig  | 2 +-
 .../org-netbeans-modules-j2ee-ejbjarproject.sig| 2 +-
 .../org-netbeans-modules-j2ee-sun-appsrv.sig   | 2 +-
 .../nbproject/org-netbeans-modules-j2ee-sun-dd.sig | 2 +-
 .../org-netbeans-modules-j2ee-sun-ddui.sig |  2498 +++-
 .../nbproject/org-netbeans-modules-j2eeapis.sig| 2 +-
 .../nbproject/org-netbeans-modules-j2eeserver.sig  | 2 +-
 .../org-netbeans-modules-javaee-project.sig| 4 +-
 .../org-netbeans-modules-javaee-resources.sig  | 2 +-
 .../org-netbeans-modules-javaee-specs-support.sig  | 2 +-
 .../org-netbeans-modules-jellytools-enterprise.sig | 2 +-
 .../nbproject/org-netbeans-modules-jsp-lexer.sig   | 2 +-
 .../nbproject/org-netbeans-libs-amazon.sig | 2 +-
 .../org-netbeans-libs-glassfish_logging.sig| 2 +-
 .../nbproject/org-netbeans-modules-maven-j2ee.sig  |   168 +-
 .../org-netbeans-modules-payara-common.sig |   255 +-
 .../org-netbeans-modules-payara-eecommon.sig   |   209 +-
 .../org-netbeans-modules-payara-tooling.sig|   124 +-
 .../org-netbeans-modules-servletjspapi.sig | 2 +-
 .../nbproject/org-netbeans-modules-web-beans.sig   | 2 +-
 .../nbproject/org-netbeans-modules-web-core.sig| 2 +-
 .../nbproject/org-netbeans-modules-web-el.sig  | 2 +-
 .../org-netbeans-modules-web-jsf-navigation.sig| 2 +-
 .../nbproject/org-netbeans-modules-web-jsf.sig | 3 +-
 .../nbproject/org-netbeans-modules-web-jsf12.sig   | 2 +-
 .../nbproject/org-netbeans-modules-web-jsf12ri.sig | 2 +-
 .../nbproject/org-netbeans-modules-web-jsf20.sig   |15 +-
 .../nbproject/org-netbeans-modules-web-jsfapi.sig  | 2 +-
 .../org-netbeans-modules-web-jspparser.sig | 2 +-
 .../nbproject/org-netbeans-modules-web-project.sig | 2 +-
 .../org-netbeans-modules-weblogic-common.sig   | 2 +-
 .../org-netbeans-modules-websvc-clientapi.sig  | 3 +-
 .../nbproject/org-netbeans-modules-websvc-core.sig | 2 +-
 .../org-netbeans-modules-websvc-design.sig | 6 +-
 .../org-netbeans-modules-websvc-jaxws-lightapi.sig | 2 +-
 .../org-netbeans-modules-websvc-jaxwsapi.sig   | 3 +-
 .../org-netbeans-modules-websvc-jaxwsmodel.sig | 2 +-
 .../org-netbeans-modules-websvc-manager.sig| 2 +-
 .../org-netbeans-modules-websvc-projectapi.sig | 2 +-
 .../nbproject/org-netbeans-modules-websvc-rest.sig | 2 +-
 .../org-netbeans-modules-websvc-restapi.sig| 3 +-
 .../org-netbeans-modules-websvc-restlib.sig| 2 +-
 .../org-netbeans-modules-websvc-utilities.sig  | 2 +-
 .../org-netbeans-modules-websvc-websvcapi.sig  | 2 +-
 .../org-netbeans-modules-websvc-wsstackapi.sig | 2 +-
 .../nbproject/org-apache-tools-ant-module.sig  | 2 +-
 .../org-netbeans-modules-options-java.sig  | 2 +-
 .../nbproject/org-netbeans-modules-gradle-java.sig | 5 +-
 .../nbproject/org-netbeans-modules-gradle.sig  | 2 +-
 .../org-netbeans-modules-groovy-editor.sig | 2 +-
 .../org-netbeans-modules-groovy-support.sig| 2 +-
 .../nbproject/org-netbeans-modules-libs-groovy.sig | 2 +-
 

[jira] [Commented] (NETBEANS-2865) Cannot run Netbeans 11 using JDK 11

2019-07-22 Thread Geertjan Wielenga (JIRA)


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

Geertjan Wielenga commented on NETBEANS-2865:
-

11.1 was released today. If you can reproduce the issue, think about a very 
clear issue header, and have steps to reproduce, then, yes, please create an 
issue.

> Cannot run Netbeans 11 using JDK 11
> ---
>
> Key: NETBEANS-2865
> URL: https://issues.apache.org/jira/browse/NETBEANS-2865
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Hunter Schoonover
>Priority: Major
> Attachments: consoleOutput.txt, netbeans.log
>
>
> Please note that this issue does *NOT* occur with JDK 8.
> Downloaded and installed JDK 11 to C:\Program Files\Java\jdk-11.0.4
> Downloaded and unzipped Netbeans 11 to C:\Program Files\netbeans
> The etc/netbeans.conf file has been edited to set JDK home:
> *netbeans_jdkhome="C:\Program Files\Java\jdk-11.0.4"*
> When trying to run bin/netbeans64.exe:
>  # *First time:* The loading window appears, loads for a bit, and then the 
> whole program disappears.
>  # *Second time:* Loading window does not appear. An empty Java application 
> appears.
>  # If I go to Task Manager and manually end the Netbeans process, I can get 
> back to step 1.
> Executing netbeans64.exe from PowerShell outputs error messages to the 
> console. They can be found in consoleOutput.txt attachment.
> The results from executing *bin/netbeans64.exe --trace C:\netbeans.log* can 
> be found in netbeans.log attachment.
> For reference, this is the tutorial I followed:
> [https://www.youtube.com/watch?v=cxh-hVty09g]
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2865) Cannot run Netbeans 11 using JDK 11

2019-07-22 Thread Victor K. (JIRA)


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

Victor K. commented on NETBEANS-2865:
-

Thank you Hunter.

I'm quite sure we have different issues(Through both end up in blank IDE 
window/windows).

 

Geertjan

Shall I open new ticket for my issue?

> Cannot run Netbeans 11 using JDK 11
> ---
>
> Key: NETBEANS-2865
> URL: https://issues.apache.org/jira/browse/NETBEANS-2865
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Hunter Schoonover
>Priority: Major
> Attachments: consoleOutput.txt, netbeans.log
>
>
> Please note that this issue does *NOT* occur with JDK 8.
> Downloaded and installed JDK 11 to C:\Program Files\Java\jdk-11.0.4
> Downloaded and unzipped Netbeans 11 to C:\Program Files\netbeans
> The etc/netbeans.conf file has been edited to set JDK home:
> *netbeans_jdkhome="C:\Program Files\Java\jdk-11.0.4"*
> When trying to run bin/netbeans64.exe:
>  # *First time:* The loading window appears, loads for a bit, and then the 
> whole program disappears.
>  # *Second time:* Loading window does not appear. An empty Java application 
> appears.
>  # If I go to Task Manager and manually end the Netbeans process, I can get 
> back to step 1.
> Executing netbeans64.exe from PowerShell outputs error messages to the 
> console. They can be found in consoleOutput.txt attachment.
> The results from executing *bin/netbeans64.exe --trace C:\netbeans.log* can 
> be found in netbeans.log attachment.
> For reference, this is the tutorial I followed:
> [https://www.youtube.com/watch?v=cxh-hVty09g]
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2862) Null Pointer Exception

2019-07-22 Thread JIRA


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

Honza Brázdil commented on NETBEANS-2862:
-

I open netbeans with https://github.com/project-ncl/pnc project opened and wait 
a minute or two till it loads. During that, the error appears.
{code}
$ java -version
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-b04)
OpenJDK 64-Bit Server VM (build 25.212-b04, mixed mode)
{code}

> Null Pointer Exception
> --
>
> Key: NETBEANS-2862
> URL: https://issues.apache.org/jira/browse/NETBEANS-2862
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Honza Brázdil
>Priority: Major
>
> {code}
> java.lang.NullPointerException
>   at 
> com.sun.tools.javac.comp.Check$Validator.visitTypeIdent(Check.java:1450)
>   at 
> com.sun.tools.javac.tree.JCTree$JCPrimitiveTypeTree.accept(JCTree.java:2406)
>   at 
> com.sun.tools.javac.comp.Check$Validator.validateTree(Check.java:1469)
>   at com.sun.tools.javac.comp.Check.validate(Check.java:1340)
>   at com.sun.tools.javac.comp.Attr.visitVarDef(Attr.java:1213)
>   at 
> com.sun.tools.javac.tree.JCTree$JCVariableDecl.accept(JCTree.java:968)
>   at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:672)
>   at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:752)
>   at com.sun.tools.javac.comp.Attr.attribClassBody(Attr.java:5140)
>   at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:5023)
>   at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:4951)
>   at com.sun.tools.javac.comp.Attr.attrib(Attr.java:4896)
>   at 
> com.sun.tools.javac.main.JavaCompiler.attribute(JavaCompiler.java:1434)
>   at 
> com.sun.tools.javac.api.JavacTaskImpl$1.process(JavacTaskImpl.java:504)
>   at 
> com.sun.tools.javac.api.JavacTaskImpl$Filter.run(JavacTaskImpl.java:651)
>   at com.sun.tools.javac.api.JavacTaskImpl.analyze(JavacTaskImpl.java:507)
> [catch] at 
> org.netbeans.modules.java.source.nbjavac.indexing.MultiPassCompileWorker.compile(MultiPassCompileWorker.java:261)
>   at 
> org.netbeans.modules.java.source.indexing.JavaCustomIndexer.index(JavaCustomIndexer.java:347)
>   at 
> org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor$2.run(Indexable.java:138)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runIndexer(RepositoryUpdater.java:275)
>   at 
> org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor.index(Indexable.java:136)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doIndex(RepositoryUpdater.java:2750)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.access$800(RepositoryUpdater.java:2154)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2636)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.errors.TaskCache.refreshTransaction(TaskCache.java:540)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.index(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5714)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5622)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$4.run(RepositoryUpdater.java:2127)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2123)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2104)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.access$1500(RepositoryUpdater.java:136)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSource(RepositoryUpdater.java:5749)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSources(RepositoryUpdater.java:5419)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RootsWork.getDone(RepositoryUpdater.java:5038)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doTheWork(RepositoryUpdater.java:3420)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task._run(RepositoryUpdater.java:6183)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task.access$4300(RepositoryUpdater.java:5834)
>   at 
> 

svn commit: r34959 [1/3] - /dev/netbeans/netbeans/11.1/

2019-07-22 Thread rtaneja
Author: rtaneja
Date: Mon Jul 22 11:35:07 2019
New Revision: 34959

Log:
Apache NetBeans 11.1 installers

Added:
dev/netbeans/netbeans/11.1/
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.asc
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.sha512
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg   (with 
props)
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.asc
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.sha512
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe   (with 
props)
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.asc
dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.sha512


-
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



svn commit: r34959 [2/3] - /dev/netbeans/netbeans/11.1/

2019-07-22 Thread rtaneja


Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh
==
--- dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh (added)
+++ dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh Mon Jul 22 
11:35:07 2019
@@ -0,0 +1,696430 @@
+#!/bin/sh
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# 
+
+ARG_JAVAHOME="--javahome"
+ARG_VERBOSE="--verbose"
+ARG_OUTPUT="--output"
+ARG_EXTRACT="--extract"
+ARG_JAVA_ARG_PREFIX="-J"
+ARG_TEMPDIR="--tempdir"
+ARG_CLASSPATHA="--classpath-append"
+ARG_CLASSPATHP="--classpath-prepend"
+ARG_HELP="--help"
+ARG_SILENT="--silent"
+ARG_NOSPACECHECK="--nospacecheck"
+ARG_LOCALE="--locale"
+
+USE_DEBUG_OUTPUT=0
+PERFORM_FREE_SPACE_CHECK=1
+SILENT_MODE=0
+EXTRACT_ONLY=0
+SHOW_HELP_ONLY=0
+LOCAL_OVERRIDDEN=0
+APPEND_CP=
+PREPEND_CP=
+LAUNCHER_APP_ARGUMENTS=
+LAUNCHER_JVM_ARGUMENTS=
+ERROR_OK=0
+ERROR_TEMP_DIRECTORY=2
+ERROR_TEST_JVM_FILE=3
+ERROR_JVM_NOT_FOUND=4
+ERROR_JVM_UNCOMPATIBLE=5
+ERROR_EXTRACT_ONLY=6
+ERROR_INPUTOUPUT=7
+ERROR_FREESPACE=8
+ERROR_INTEGRITY=9
+ERROR_MISSING_RESOURCES=10
+ERROR_JVM_EXTRACTION=11
+ERROR_JVM_UNPACKING=12
+ERROR_VERIFY_BUNDLED_JVM=13
+
+VERIFY_OK=1
+VERIFY_NOJAVA=2
+VERIFY_UNCOMPATIBLE=3
+
+MSG_ERROR_JVM_NOT_FOUND="nlu.jvm.notfoundmessage"
+MSG_ERROR_USER_ERROR="nlu.jvm.usererror"
+MSG_ERROR_JVM_UNCOMPATIBLE="nlu.jvm.uncompatible"
+MSG_ERROR_INTEGRITY="nlu.integrity"
+MSG_ERROR_FREESPACE="nlu.freespace"
+MSG_ERROP_MISSING_RESOURCE="nlu.missing.external.resource"
+MSG_ERROR_TMPDIR="nlu.cannot.create.tmpdir"
+
+MSG_ERROR_EXTRACT_JVM="nlu.cannot.extract.bundled.jvm"
+MSG_ERROR_UNPACK_JVM_FILE="nlu.cannot.unpack.jvm.file"
+MSG_ERROR_VERIFY_BUNDLED_JVM="nlu.error.verify.bundled.jvm"
+
+MSG_RUNNING="nlu.running"
+MSG_STARTING="nlu.starting"
+MSG_EXTRACTING="nlu.extracting"
+MSG_PREPARE_JVM="nlu.prepare.jvm"
+MSG_JVM_SEARCH="nlu.jvm.search"
+MSG_ARG_JAVAHOME="nlu.arg.javahome"
+MSG_ARG_VERBOSE="nlu.arg.verbose"
+MSG_ARG_OUTPUT="nlu.arg.output"
+MSG_ARG_EXTRACT="nlu.arg.extract"
+MSG_ARG_TEMPDIR="nlu.arg.tempdir"
+MSG_ARG_CPA="nlu.arg.cpa"
+MSG_ARG_CPP="nlu.arg.cpp"
+MSG_ARG_DISABLE_FREE_SPACE_CHECK="nlu.arg.disable.space.check"
+MSG_ARG_LOCALE="nlu.arg.locale"
+MSG_ARG_SILENT="nlu.arg.silent"
+MSG_ARG_HELP="nlu.arg.help"
+MSG_USAGE="nlu.msg.usage"
+
+isSymlink=
+
+entryPoint() {
+initSymlinkArgument
+   CURRENT_DIRECTORY=`pwd`
+   LAUNCHER_NAME=`echo $0`
+   parseCommandLineArguments "$@"
+   initializeVariables
+   setLauncherLocale   
+   debugLauncherArguments "$@"
+   if [ 1 -eq $SHOW_HELP_ONLY ] ; then
+   showHelp
+   fi
+   
+message "$MSG_STARTING"
+createTempDirectory
+   checkFreeSpace "$TOTAL_BUNDLED_FILES_SIZE" "$LAUNCHER_EXTRACT_DIR"  
+
+extractJVMData
+   if [ 0 -eq $EXTRACT_ONLY ] ; then 
+searchJava
+   fi
+
+   extractBundledData
+   verifyIntegrity
+
+   if [ 0 -eq $EXTRACT_ONLY ] ; then 
+   executeMainClass
+   else 
+   exitProgram $ERROR_OK
+   fi
+}
+
+initSymlinkArgument() {
+testSymlinkErr=`test -L / 2>&1 > /dev/null`
+if [ -z "$testSymlinkErr" ] ; then
+isSymlink=-L
+else
+isSymlink=-h
+fi
+}
+
+debugLauncherArguments() {
+   debug "Launcher Command : $0"
+   argCounter=1
+while [ $# != 0 ] ; do
+   debug "... argument [$argCounter] = $1"
+   argCounter=`expr "$argCounter" + 1`
+   shift
+   done
+}
+isLauncherCommandArgument() {
+   case "$1" in
+   $ARG_VERBOSE | $ARG_NOSPACECHECK | $ARG_OUTPUT | $ARG_HELP | 
$ARG_JAVAHOME | $ARG_TEMPDIR | $ARG_EXTRACT | $ARG_SILENT | $ARG_LOCALE | 
$ARG_CLASSPATHP | $ARG_CLASSPATHA)
+   echo 1
+   ;;
+   *)
+   echo 0
+   ;;
+   esac
+}
+
+parseCommandLineArguments() {
+   while [ $# != 0 ]
+   do
+   case "$1" in
+   $ARG_VERBOSE)
+USE_DEBUG_OUTPUT=1;;
+   $ARG_NOSPACECHECK)
+

svn commit: r34959 [3/3] - /dev/netbeans/netbeans/11.1/

2019-07-22 Thread rtaneja
Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.asc
==
--- dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.asc (added)
+++ dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.asc Mon 
Jul 22 11:35:07 2019
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+
+iQJHBAABCAAxFiEE0EEFktINhFguI9fwV9WJbNhsEyAFAl01lWwTHHJ0YW5lamFA
+YXBhY2hlLm9yZwAKCRBX1Yls2GwTID5VEAC2Dh5hqVuSIgm4H23rRBZv76E/4Z7z
+SVWrGLBo6bv+BZiKZPOsWRghW6BkxZc/pkMDl+8Ezj/F7VL1ZGMR0MCBAvy7D92b
+QP0HHmZnUrj9h3SljqPIIuWj/inegIrcAWlgIv1svqCCXzKoFnasg5YZdPDq4b+w
+JS7yv9sJGREvKCdn1JETutw/G8ipH7g2SHRKv1pqMGg5sOsgpy6GV9MbYpy2Vfmz
+uYHpQ+BjQQcpqDNA6JLj4TKR4fGjVvhgUGsUKpRIZVttgtalzp1TtVOfOz8Jrh6T
+ds4DYMEQWEyZJCRmkLt5e/BZtDscWiKC2Mtxxbqr0KIyx6TeO3lR0a9aXztOzClw
+qRW8rtfOKba+OexIf/4bj1N2mjRwsOwVijZPJf7XN+vG+B7FJgqN39J6C+fupKx0
+17xo5YChNQxbl4P14ZKwo4lzkshG7+s5UPjpBwnh9u3RQJzG8PqE6EK06zE7itx2
+rPCLJDw/n7mQyptqDm4/ynk7unaipVzSf/gK99D//fOAdmns+43HTslEeorL2m7M
+tLB/gwIfue8G12nROc8z+67nm7YOOENcWhdB+ki3X5v64nlGhnZdUdzkykQvfsBj
+eb12Gk35g0Jauv7DXRDgH3Q9o5BiEjxyg/JJ3BCLUdYVt2abMDBLtM9hnQN/kOjb
+LDCazQ/7wSTLVA==
+=13JP
+-END PGP SIGNATURE-

Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.sha512
==
--- dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.sha512 
(added)
+++ dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-linux-x64.sh.sha512 Mon 
Jul 22 11:35:07 2019
@@ -0,0 +1 @@
+33cda58299d4d7e7911cbc9ec646ac0fd0b70e82d963d41ac09ec39d8ecc781a562f410090253cdf2fa1549d82a772b18310e2a59c8db85677abe7b4813c40aa
  Apache-NetBeans-11.1-bin-linux-x64.sh

Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg
==
Binary file - no diff available.

Propchange: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg
--
svn:mime-type = application/octet-stream

Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.asc
==
--- dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.asc (added)
+++ dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.asc Mon Jul 
22 11:35:07 2019
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+
+iQJHBAABCAAxFiEE0EEFktINhFguI9fwV9WJbNhsEyAFAl01lb0THHJ0YW5lamFA
+YXBhY2hlLm9yZwAKCRBX1Yls2GwTII+oEACtZq13/5YDJ1+o1gbjqusgCK0aXVyQ
+z8MNg+bxALDQ5UTUbHPqiyKLJhBoOrnLLsy6LLmpYir+WfCvAMjHMfx3bWBoU8ev
+JkQaBKALrzh0GB1tAX17ykCEb+JN9uBjYOsR5Y86OVKY+5Bf0mEbFxm0IWwSAeYI
+FK0KKFwPUXylOJPkUn4LufOdBX8emJrQmZqjY6lgXz1NofmuYNjikWUHfbOSjV3Q
+sdiDInNRRttz3jf8JQhZddfzlIk0pue9tof51Lh+6ZG4bSPzmJgINvO5SyDz+RHd
+7nRnWMZNTinnTVOrl2gBxAc2ixQT0wafUk5BEmsTYAmI/Xi8QJulLwvp/5kIhw5p
+/YXbRRb6tz9o/zF4dDQ8DTAiaznAOqtfotmBDCjWO0pmz4pslXvhniLMvSliSRsJ
+Y4IMNML7owCXA+BabDXmN+upgouY8dOc3P5v8zSZsbUGNDG1xh0FY8zaxLk/vhLs
+AM7dqmb5xpFsema6dNY/PuHNDnSNmrpIisi0pLHN2YTbfh6QGo6TA/FPGx2rkxVP
+7oj+LiRETTNv1ah6KYd2wSwUHyeMI8vko2GXM3cjWmOGHbKsJeA0lbjEMObsh0aq
+QcNIEzoAjtH8bgAZ3jMGmxLWczLD7c0bdb5H65rBURMcdwwzzz+s1qPHbF4TNgSK
+6bBpY+2OsGRryA==
+=szqy
+-END PGP SIGNATURE-

Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.sha512
==
--- dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.sha512 
(added)
+++ dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-macosx.dmg.sha512 Mon 
Jul 22 11:35:07 2019
@@ -0,0 +1 @@
+c440d87e866ebb2cd0f9fdcc5db224bb189cba3c2887ff7b330e7effc6ddbc3cfd7c102d8b0a3ef335fb71a39a53507699c54e2004331d654b3d2c41d5449de0
  Apache-NetBeans-11.1-bin-macosx.dmg

Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe
==
Binary file - no diff available.

Propchange: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe
--
svn:executable = *

Propchange: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe
--
svn:mime-type = application/octet-stream

Added: dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.asc
==
--- dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.asc 
(added)
+++ dev/netbeans/netbeans/11.1/Apache-NetBeans-11.1-bin-windows-x64.exe.asc Mon 
Jul 22 11:35:07 2019
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+
+iQJHBAABCAAxFiEE0EEFktINhFguI9fwV9WJbNhsEyAFAl01lYYTHHJ0YW5lamFA
+YXBhY2hlLm9yZwAKCRBX1Yls2GwTID7hD/98PIboZpXkz4Pa4GlNfxoA39aB1YM6

[jira] [Resolved] (NETBEANS-2698) Archive the old release artifacts.

2019-07-22 Thread Neil C Smith (JIRA)


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

Neil C Smith resolved NETBEANS-2698.

Resolution: Won't Do

> Archive the old release artifacts.
> --
>
> Key: NETBEANS-2698
> URL: https://issues.apache.org/jira/browse/NETBEANS-2698
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>
> Archive the old release artefacts, remembering that LTS releases should 
> remain current throughout the year, so there should be two active releases 
> for 9 months.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2697) Send out release announcements

2019-07-22 Thread Neil C Smith (JIRA)


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

Neil C Smith resolved NETBEANS-2697.

Resolution: Done

> Send out release announcements
> --
>
> Key: NETBEANS-2697
> URL: https://issues.apache.org/jira/browse/NETBEANS-2697
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2696) Update the website for the new release

2019-07-22 Thread Neil C Smith (JIRA)


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

Neil C Smith resolved NETBEANS-2696.

Resolution: Done

> Update the website for the new release
> --
>
> Key: NETBEANS-2696
> URL: https://issues.apache.org/jira/browse/NETBEANS-2696
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Assignee: Antonio Vieiro
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2689) Create a Location for Standard Distribution AUC

2019-07-22 Thread Neil C Smith (JIRA)


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

Neil C Smith resolved NETBEANS-2689.

Resolution: Done

> Create a Location for Standard Distribution AUC
> ---
>
> Key: NETBEANS-2689
> URL: https://issues.apache.org/jira/browse/NETBEANS-2689
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>
> Update the URL (eg. 
> [http://netbeans-vm.apache.org/uc/11.0/|http://netbeans-vm.apache.org/uc/10.0/]
>  ) to contain catalog.xml and redirect to mirrors for release distribution.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2695) Copy staged release artifacts to the release area.

2019-07-22 Thread Neil C Smith (JIRA)


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

Neil C Smith resolved NETBEANS-2695.

Resolution: Done

> Copy staged release artifacts to the release area.
> --
>
> Key: NETBEANS-2695
> URL: https://issues.apache.org/jira/browse/NETBEANS-2695
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2694) Close PMC Vote Thread

2019-07-22 Thread Neil C Smith (JIRA)


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

Neil C Smith resolved NETBEANS-2694.

Resolution: Done

> Close PMC Vote Thread
> -
>
> Key: NETBEANS-2694
> URL: https://issues.apache.org/jira/browse/NETBEANS-2694
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Neil C Smith
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

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

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



[netbeans-website] branch master updated: Website structural updates for NB 11.1. (#401)

2019-07-22 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new d822cfc  Website structural updates for NB 11.1. (#401)
d822cfc is described below

commit d822cfc31be00b5f6fb7f5a254c1681f96d92260
Author: Neil C Smith 
AuthorDate: Mon Jul 22 11:33:30 2019 +0100

Website structural updates for NB 11.1. (#401)

* Website structural updates for NB 11.1.

Changed main menu download link to /download; simplified main download 
page; added archive and dev sections;
added new front page template with news and reverted page-noside for other 
pages.

* Change release date to July 22; add note that installers are coming soon.
---
 netbeans.apache.org/globals.yml|  2 +
 .../nb111.asciidoc => archive/index.asciidoc}  | 44 +
 .../src/content/download/{ => dev}/index.asciidoc  | 59 -
 .../src/content/download/index.asciidoc| 76 ++
 .../src/content/download/nb111/index.asciidoc  |  7 +-
 .../src/content/download/nb111/nb111.asciidoc  | 61 -
 netbeans.apache.org/src/content/index.asciidoc |  8 +--
 netbeans.apache.org/src/content/templates/menu.gsp |  2 +-
 netbeans.apache.org/src/content/templates/news.gsp |  4 +-
 .../templates/{page-noaside.gsp => page-front.gsp} |  3 +-
 .../src/content/templates/page-noaside.gsp | 17 ++---
 .../src/content/templates/slider.gsp   | 10 +--
 12 files changed, 144 insertions(+), 149 deletions(-)

diff --git a/netbeans.apache.org/globals.yml b/netbeans.apache.org/globals.yml
index 3c148e8..a8af64d 100644
--- a/netbeans.apache.org/globals.yml
+++ b/netbeans.apache.org/globals.yml
@@ -33,6 +33,8 @@ template:
 file: tutorial.gsp
 page-noaside:
 file: page-noaside.gsp
+page-front:
+file: page-front.gsp
 wiki:
 file: wiki.gsp
 extension: .asciidoc
diff --git a/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc 
b/netbeans.apache.org/src/content/download/archive/index.asciidoc
similarity index 51%
copy from netbeans.apache.org/src/content/download/nb111/nb111.asciidoc
copy to netbeans.apache.org/src/content/download/archive/index.asciidoc
index 4cba3d3..b2264d5 100644
--- a/netbeans.apache.org/src/content/download/nb111/nb111.asciidoc
+++ b/netbeans.apache.org/src/content/download/archive/index.asciidoc
@@ -1,3 +1,4 @@
+
 
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -16,21 +17,36 @@
  specific language governing permissions and limitations
  under the License.
 
-
-
-NOTE: 
-See https://www.apache.org/dev/release-download-pages.html 
-for important requirements for download pages for Apache projects.
-
-
-= Downloading Apache NetBeans 11.1 
+= Apache NetBeans archive
 :jbake-type: page
-:jbake-tags: download
+:jbake-tags: archive
 :jbake-status: published
-:keywords: Apache NetBeans 11.1 Download
-:description: Apache NetBeans 11.1 Download
-:toc: left
-:toc-title:
+:keywords: Apache NetBeans archive releases
 :icons: font
+:description: Apache NetBeans archive releases
+:linkattrs:
+
+Older Apache NetBeans releases and pre-Apache NetBeans releases can still be
+downloaded, but are no longer supported.
+
+== Apache NetBeans 10.0
+
+Apache NetBeans 10.0 was released on December 27, 2018.
+
+link:/download/nb100/[Features, role="button"] 
link:/download/nb100/nb100.html[Download, role="button success"]
+
+== Apache NetBeans 9.0
+
+Apache NetBeans 9.0 was released on July 29, 2018.
+
+link:/download/nb90/[Features, role="button"] 
link:/download/nb90/nb90.html[Download, role="button success"] 
+
+== Pre-Apache NetBeans versions
+
+- https://netbeans.org/downloads/8.2/
+- https://netbeans.org/downloads/8.1/
+- https://netbeans.org/downloads/8.0/
+- https://netbeans.org/downloads/7.4/
+
+
 
-Apache NetBeans 11.1 (work in progress).
diff --git a/netbeans.apache.org/src/content/download/index.asciidoc 
b/netbeans.apache.org/src/content/download/dev/index.asciidoc
old mode 100755
new mode 100644
similarity index 66%
copy from netbeans.apache.org/src/content/download/index.asciidoc
copy to netbeans.apache.org/src/content/download/dev/index.asciidoc
index 95139e2..6bd5fe1
--- a/netbeans.apache.org/src/content/download/index.asciidoc
+++ b/netbeans.apache.org/src/content/download/dev/index.asciidoc
@@ -1,3 +1,4 @@
+
 
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -16,61 +17,21 @@
  specific language governing permissions and limitations
  under the License.
 
-
-
-NOTE: 
-See https://www.apache.org/dev/release-download-pages.html 
-for important requirements for 

[jira] [Updated] (NETBEANS-2875) Enterprise Catalog references broken

2019-07-22 Thread ASF GitHub Bot (JIRA)


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

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

> Enterprise Catalog references broken
> 
>
> Key: NETBEANS-2875
> URL: https://issues.apache.org/jira/browse/NETBEANS-2875
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Pete Whelpton
>Priority: Minor
>  Labels: pull-request-available
>
> As reported by Thomas Kellerer on the Dev mailing list, XML files validated 
> by schema in the Enterprise Catalog are failing to validate again in 11.1
> I believe this is because my commit to fix this (d172c20), was accidentally 
> regressed.
>  
> *EnterpriseCatalog.java*
> {{private static final String RESOURCE_PATH = 
> "nbres:/org/netbeans/modules/j2ee/dd/impl/resources/"; //NO18N}}
>  
> got regressed back to:
> {{private static final String RESOURCE_PATH = 
> "nbres:/org/netbeans/modules/j2ee/ddloaders/catalog/resources/"; //NO18N}}
>  
> but the XSD files don't exist in that location anymore, hence the validation 
> errors.
>  
> *Steps to replicate:*
> 1) Create a new Maven Web Application project.  Choose JavaEE7
> 2) Create a Standard Deployment Descriptor file (web.xml)
> 3) Netbeans will show a red X next to the web.xml node in Project explorer
> 4) Right clicking in the Editor for the web.xml file and choosing "Validate" 
> will result in an XML validation error
>  
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2878) Netbeans does not add Java Plattform < JDK 8

2019-07-22 Thread Benjamin Graf (JIRA)
Benjamin Graf created NETBEANS-2878:
---

 Summary: Netbeans does not add Java Plattform < JDK 8
 Key: NETBEANS-2878
 URL: https://issues.apache.org/jira/browse/NETBEANS-2878
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.0
Reporter: Benjamin Graf


Netbeans checks JDK Installation by executing a probe from 
java/java.j2seplatform/probesrc 
(org-netbeans-modules-java-j2seplatform-probe.jar) This module is build with 
source version set to 1.8 and therefor is not runnable with older versions.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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