[jira] [Resolved] (NETBEANS-1097) "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater than JDK 8

2019-09-01 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-1097.
---
Fix Version/s: 11.2
   Resolution: Fixed

The corresponding PR got merged.

> "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater 
> than JDK 8
> 
>
> Key: NETBEANS-1097
> URL: https://issues.apache.org/jira/browse/NETBEANS-1097
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Project
>Affects Versions: 9.0, 10.0, 11.0, 11.1
>Reporter: Joonas Pulakka
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.2
>
>  Time Spent: 2h
>  Remaining Estimate: 0h
>
> Steps to reproduce:
>  # File -> New Project -> Java Application -> Next -> Finish
>  # Right-click Libraries, Add JAR/Folder. Add whatever jar file.
>  # Check that project Properties -> Packaging -> Copy Dependent Libraries is 
> checked.
>  # Clean and Build project.
>  # Observe contents of dist\ directory.
> When Project -> Properties -> Source/Binary Format is JDK 8, there exists 
> dist\lib\ directory, and the jar added in step 1) is copied into that 
> directory, as expected, when Copy Dependent Libraries is checked.
> But when Source/Binary Format is greater than JDK 8, dist\lib\ directory does 
> not exist.
> The reason seems to be these parts in build-impl.xml:
> {code:java}
> 
> 
> 
> 
> 
> 
> 
> ...
> 
> 
> 
> 
> 
> 
> 
> 
> <-- WHY THIS 
> CONDITION??
> 
> 
> {code}
> I've observed that mkdist.disabled setting is "Copy Dependent Libraries" 
> checbox state negated. And do.mkdist controls the library copying.
> But why is this library copying connected to javac.source version in this 
> way? If by design, what should I do in order to get jars copied to dist\lib\ 
> as they used to?
> For now, a workaround seems to be manually deleting the weird
> {code:java}
> 
> 
> {code}
> part from build-impl.xml, but that needs to be re-done every time NetBeans 
> recreates it.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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] branch master updated: NETBEANS-1097 "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater than JDK 8

2019-09-01 Thread jlahoda
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 51cafef  NETBEANS-1097 "Copy Dependent Libraries" does not work if 
"Source/Binary Format" is greater than JDK 8
51cafef is described below

commit 51cafef54cf075605eea29f1b2f1516af4024658
Author: Geertjan Wielenga 
AuthorDate: Mon Sep 2 05:14:50 2019 +0100

NETBEANS-1097 "Copy Dependent Libraries" does not work if "Source/Binary 
Format" is greater than JDK 8
---
 .../java/j2seproject/resources/build-impl.xsl  | 32 --
 1 file changed, 18 insertions(+), 14 deletions(-)

diff --git 
a/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
 
b/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
index 395a993..474263f 100644
--- 
a/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
+++ 
b/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
@@ -294,18 +294,6 @@ is divided into following sections:
 
 
 
-
-
-
-
-
-
-
-
-
-
-
-
 
 
 
@@ -2202,8 +2190,24 @@ is divided into following sections:
 
 
 
+
+init,compile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
-init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen
+init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist
 do.mkdist
 
 To run this application from the command 
line without Ant, try:
@@ -2215,7 +2219,7 @@ is divided into following sections:
 
 
 
-init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen
+init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist
 do.archive
 do.mkdist
 


-
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-3054) NetBeans 11.1, project properties: Compiling, offers a Processor Options of the form "-Akey=value. This is wrong

2019-09-01 Thread Bruce K. Haddon (Jira)
Bruce K. Haddon created NETBEANS-3054:
-

 Summary: NetBeans 11.1, project properties: Compiling, offers a 
Processor Options of the form "-Akey=value. This is wrong
 Key: NETBEANS-3054
 URL: https://issues.apache.org/jira/browse/NETBEANS-3054
 Project: NetBeans
  Issue Type: Bug
  Components: platform - OptionsSettings
Affects Versions: 11.1, 11.0
Reporter: Bruce K. Haddon
 Fix For: 12.0
 Attachments: Annotation 2019-09-01 150112.jpg

IN NetBeans 11, and 11.1, selecting "Properties" on a project, and the 
Compiling (under Build), the dialog offers "Processor Options" of the form 
"-Akey=value." Most of the compiler options are not of this form (particularly) 
of the non-standard variety. (See attached jpeg).

In NetBeans 8, this was just a text field.

The work-around is to edit the project.properties file in the "nbproject" 
folder, where there is no (incorrect) presupposition of the form of the 
compiler options.

This is a real problem for my Java language students (at the local Community 
College) where such workarounds are a distraction from learning the correct use 
of the IDE.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2356) Clean+Build fires MalformedInputException

2019-09-01 Thread Nikolai Varankine (Jira)


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

Nikolai Varankine updated NETBEANS-2356:

Fix Version/s: 11.1

> Clean+Build fires MalformedInputException
> -
>
> Key: NETBEANS-2356
> URL: https://issues.apache.org/jira/browse/NETBEANS-2356
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
>Reporter: Nikolai Varankine
>Priority: Major
>  Labels: ant, javac
> Fix For: 11.1
>
> Attachments: NB10wJDK8.zip, build.txt, clean+build.txt
>
>
> Menu command Run / Clean and Build Project fails with exception:
> {panel:title=Output - utility (clean,jar)}
> An input/output error occurred.
>  Consult the following stack trace for details.
>  java.nio.charset.MalformedInputException: Input length = 1
>   at 
> java.base/java.nio.charset.CoderResult.throwException(CoderResult.java:274)
>   at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:339)
>   at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
>   at java.base/java.io.InputStreamReader.read(InputStreamReader.java:185)
>   at java.base/java.io.BufferedReader.fill(BufferedReader.java:161)
>   at java.base/java.io.BufferedReader.read(BufferedReader.java:182)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine$Tokenizer.(CommandLine.java:143)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.loadCmdFile(CommandLine.java:129)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.appendParsedCommandArgs(CommandLine.java:71)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.parse(CommandLine.java:102)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.parse(CommandLine.java:123)
>   at jdk.compiler/com.sun.tools.javac.main.Main.compile(Main.java:215)
>   at jdk.compiler/com.sun.tools.javac.main.Main.compile(Main.java:170)
>   at jdk.compiler/com.sun.tools.javac.Main.compile(Main.java:57)
>   at jdk.compiler/com.sun.tools.javac.Main.main(Main.java:43)
> {panel}
>  +Investigation+
> This is a NetBeans 8.2 project in working state. It has been opened in 
> NetBeans 10, then project platform was updated to JDK11. No change to source 
> code was applied.
> If a package "property" is compiled first by F9, followed by menu command Run 
> / Build Project, the command completes with success. Comparison of ant logs 
> (debug mode, see attached) indicates a difference in method how list of files 
> is delivered to javac compiler. In failed case (clean+build) a command line 
> construct @,,,\file... is used, In second lucky case (compile then build) it 
> is a sequence of explicit file paths. I suspect the construct "@" is created 
> in wrong charset. I expect UTF-8 must be used. Please note file names use 
> Russian text. I guess it will be corrupt with no UTF-8 used. System charset 
> is windows1251.
> +Information+
>  *Product Version:* Apache NetBeans IDE 10.0 (Build 
> incubator-netbeans-release-380-on-20181217)
> *Java:* 11.0.2; OpenJDK 64-Bit Server VM 11.0.2+9
> *Runtime:* OpenJDK Runtime Environment 11.0.2+9
> *System:* Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
> *Project sources:* JDK8
> *Project  platform:* OpenJDK11
> *Compiles with:* -bootclasspath "C:\Program 
> Files\Java\jdk1.8.0_202\jre\lib\rt.jar"



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3052) Wrong encoding in output window for jfxsa-run target

2019-09-01 Thread Nikolai Varankine (Jira)


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

Nikolai Varankine commented on NETBEANS-3052:
-

If I add next configuration line, it reverses the problem: it fixes Run output 
but corrupts Debug output.
 
{panel:title=logging.properties}
java.util.logging.ConsoleHandler.encoding = windows-1251
{panel}
 

 

> Wrong encoding in output window for jfxsa-run target
> 
>
> Key: NETBEANS-3052
> URL: https://issues.apache.org/jira/browse/NETBEANS-3052
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Logger, platform - Output Window
>Affects Versions: 11.1
> Environment: Product Version: Apache NetBeans IDE 11.1
> Java: 12; Java HotSpot(TM) 64-Bit Server VM 12+33
> Runtime: Java(TM) SE Runtime Environment 12+33
> System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
> Windows 10 version 1903 build 18362.295
>Reporter: Nikolai Varankine
>Priority: Major
>  Labels: ant, encoding
>
> When JavaFX application runs, logger records display corrupted text unless it 
> is plain ASCII. Same application in debug mode displays same strings 
> correctly. Cyrillic subset of UTF-8 is involved. The project transitioned 
> automatically form NetBeans 8.2 to 10.0 to 11.1.
>  Presentation difference was noticed: in Run mode, text is likely a part of 
> total (ant?) report and is black and prefixed. In Debug mode, text is colored 
> and has no extra information. Examples are shown below, the difference is in 
> last line:
> {panel:title=Run mode}
> jar:
> -check-concurrent-runs:
> -create-temp-run-dir:
>  [copy] Copying 124 files to C:\Users\...fx\dist\run213104086
> jfx-project-run:
>  [echo] Executing C:\Users\...fx\dist\run213104086\brains-fx.jar using 
> platform C:\Program Files\Java\jdk1.8.0_202/bin/java
>  [java] сен 01, 2019 6:35:31 PM com.varankin.brains.Контекст 
> конфигурация
> {panel}
> {panel:title=Debug mode}
> jfxsa-debug-on-another-platform:
>  BUILD SUCCESSFUL
>  Total time: 6 seconds
>  Deleting: C:\Users\...fx\debug-another-platform.properties
>  init:
>  jfx-project-debug-on-another-platform:
>  jfx-project-debug:
>  Executing C:\Users\...fx\dist\run66203463\brains-fx.jar using platform 
> C:\Program Files\Java\jdk1.8.0_202/bin/java
>  сен 01, 2019 4:28:14 PM com.varankin.brains.Контекст конфигурация
> {panel}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3052) Wrong encoding in output window for jfxsa-run target

2019-09-01 Thread Nikolai Varankine (Jira)


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

Nikolai Varankine updated NETBEANS-3052:

Labels: ant encoding  (was: ant)

> Wrong encoding in output window for jfxsa-run target
> 
>
> Key: NETBEANS-3052
> URL: https://issues.apache.org/jira/browse/NETBEANS-3052
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Logger, platform - Output Window
>Affects Versions: 11.1
> Environment: Product Version: Apache NetBeans IDE 11.1
> Java: 12; Java HotSpot(TM) 64-Bit Server VM 12+33
> Runtime: Java(TM) SE Runtime Environment 12+33
> System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
> Windows 10 version 1903 build 18362.295
>Reporter: Nikolai Varankine
>Priority: Major
>  Labels: ant, encoding
>
> When JavaFX application runs, logger records display corrupted text unless it 
> is plain ASCII. Same application in debug mode displays same strings 
> correctly. Cyrillic subset of UTF-8 is involved. The project transitioned 
> automatically form NetBeans 8.2 to 10.0 to 11.1.
>  Presentation difference was noticed: in Run mode, text is likely a part of 
> total (ant?) report and is black and prefixed. In Debug mode, text is colored 
> and has no extra information. Examples are shown below, the difference is in 
> last line:
> {panel:title=Run mode}
> jar:
> -check-concurrent-runs:
> -create-temp-run-dir:
>  [copy] Copying 124 files to C:\Users\...fx\dist\run213104086
> jfx-project-run:
>  [echo] Executing C:\Users\...fx\dist\run213104086\brains-fx.jar using 
> platform C:\Program Files\Java\jdk1.8.0_202/bin/java
>  [java] сен 01, 2019 6:35:31 PM com.varankin.brains.Контекст 
> конфигурация
> {panel}
> {panel:title=Debug mode}
> jfxsa-debug-on-another-platform:
>  BUILD SUCCESSFUL
>  Total time: 6 seconds
>  Deleting: C:\Users\...fx\debug-another-platform.properties
>  init:
>  jfx-project-debug-on-another-platform:
>  jfx-project-debug:
>  Executing C:\Users\...fx\dist\run66203463\brains-fx.jar using platform 
> C:\Program Files\Java\jdk1.8.0_202/bin/java
>  сен 01, 2019 4:28:14 PM com.varankin.brains.Контекст конфигурация
> {panel}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3052) Wrong encoding in output window for jfxsa-run target

2019-09-01 Thread Nikolai Varankine (Jira)


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

Nikolai Varankine updated NETBEANS-3052:

Labels: ant  (was: )

> Wrong encoding in output window for jfxsa-run target
> 
>
> Key: NETBEANS-3052
> URL: https://issues.apache.org/jira/browse/NETBEANS-3052
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Logger, platform - Output Window
>Affects Versions: 11.1
> Environment: Product Version: Apache NetBeans IDE 11.1
> Java: 12; Java HotSpot(TM) 64-Bit Server VM 12+33
> Runtime: Java(TM) SE Runtime Environment 12+33
> System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
> Windows 10 version 1903 build 18362.295
>Reporter: Nikolai Varankine
>Priority: Major
>  Labels: ant
>
> When JavaFX application runs, logger records display corrupted text unless it 
> is plain ASCII. Same application in debug mode displays same strings 
> correctly. Cyrillic subset of UTF-8 is involved. The project transitioned 
> automatically form NetBeans 8.2 to 10.0 to 11.1.
>  Presentation difference was noticed: in Run mode, text is likely a part of 
> total (ant?) report and is black and prefixed. In Debug mode, text is colored 
> and has no extra information. Examples are shown below, the difference is in 
> last line:
> {panel:title=Run mode}
> jar:
> -check-concurrent-runs:
> -create-temp-run-dir:
>  [copy] Copying 124 files to C:\Users\...fx\dist\run213104086
> jfx-project-run:
>  [echo] Executing C:\Users\...fx\dist\run213104086\brains-fx.jar using 
> platform C:\Program Files\Java\jdk1.8.0_202/bin/java
>  [java] сен 01, 2019 6:35:31 PM com.varankin.brains.Контекст 
> конфигурация
> {panel}
> {panel:title=Debug mode}
> jfxsa-debug-on-another-platform:
>  BUILD SUCCESSFUL
>  Total time: 6 seconds
>  Deleting: C:\Users\...fx\debug-another-platform.properties
>  init:
>  jfx-project-debug-on-another-platform:
>  jfx-project-debug:
>  Executing C:\Users\...fx\dist\run66203463\brains-fx.jar using platform 
> C:\Program Files\Java\jdk1.8.0_202/bin/java
>  сен 01, 2019 4:28:14 PM com.varankin.brains.Контекст конфигурация
> {panel}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3052) Wrong encoding in output window for jfxsa-run target

2019-09-01 Thread Nikolai Varankine (Jira)


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

Nikolai Varankine commented on NETBEANS-3052:
-

Checkbox +Tools/Options/Java/Ant/Always Show Output+ is OFF. Supposedly, it 
doesn't work.

> Wrong encoding in output window for jfxsa-run target
> 
>
> Key: NETBEANS-3052
> URL: https://issues.apache.org/jira/browse/NETBEANS-3052
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Logger, platform - Output Window
>Affects Versions: 11.1
> Environment: Product Version: Apache NetBeans IDE 11.1
> Java: 12; Java HotSpot(TM) 64-Bit Server VM 12+33
> Runtime: Java(TM) SE Runtime Environment 12+33
> System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
> Windows 10 version 1903 build 18362.295
>Reporter: Nikolai Varankine
>Priority: Major
>
> When JavaFX application runs, logger records display corrupted text unless it 
> is plain ASCII. Same application in debug mode displays same strings 
> correctly. Cyrillic subset of UTF-8 is involved. The project transitioned 
> automatically form NetBeans 8.2 to 10.0 to 11.1.
>  Presentation difference was noticed: in Run mode, text is likely a part of 
> total (ant?) report and is black and prefixed. In Debug mode, text is colored 
> and has no extra information. Examples are shown below, the difference is in 
> last line:
> {panel:title=Run mode}
> jar:
> -check-concurrent-runs:
> -create-temp-run-dir:
>  [copy] Copying 124 files to C:\Users\...fx\dist\run213104086
> jfx-project-run:
>  [echo] Executing C:\Users\...fx\dist\run213104086\brains-fx.jar using 
> platform C:\Program Files\Java\jdk1.8.0_202/bin/java
>  [java] сен 01, 2019 6:35:31 PM com.varankin.brains.Контекст 
> конфигурация
> {panel}
> {panel:title=Debug mode}
> jfxsa-debug-on-another-platform:
>  BUILD SUCCESSFUL
>  Total time: 6 seconds
>  Deleting: C:\Users\...fx\debug-another-platform.properties
>  init:
>  jfx-project-debug-on-another-platform:
>  jfx-project-debug:
>  Executing C:\Users\...fx\dist\run66203463\brains-fx.jar using platform 
> C:\Program Files\Java\jdk1.8.0_202/bin/java
>  сен 01, 2019 4:28:14 PM com.varankin.brains.Контекст конфигурация
> {panel}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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

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



[jira] [Updated] (NETBEANS-3053) incorrect xml syntax highlighting (pom.xml)

2019-09-01 Thread collector1871 (Jira)


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

collector1871 updated NETBEANS-3053:

Description: 
Hello everyone,

I have very annoying problem with incorrect xml syntax highlighting (file 
pom.xml), it looks like this:

*> attachment1 <*

*!attachment1.png!*

basically this header tag  is very unclear. I am afraid this issue 
will appear in the future, for other syntax highlighting, so this is why I am 
asking here. And also i would like to have pom.xml perfectly visible.

... so what i am doing right now: Tools > Options > Fonts & Colors > Language: 
XML > and I am channging "pi-content"
 and this is temporary working, for example

*> attachment2 <*

*!attachment2.png!*

but the problem is that after NetBeans reastart, "pi-content" values are again 
wrong (like in the first screenshot).
 It looks like this problem is currently only with few syntax highlighting 
values (other values are keeping saved and no issue). 
 Something like: 90% values are saved, 10% are reset to default after restart.

so my question is: how can I permanent  change this syntax highlighting ?

Please also note that this is affecting only black themes : white themes are 
working correctly (full xml syntax highlighting is working)

  was:
Hello everyone,

I have very annoying problem with incorrect xml syntax highlighting (file 
pom.xml), it looks like this:

*> attachment1 <*

*!attachment1.png!*

basically this header tag  is very unclear. I am afraid this issue 
will appear in the future, for other syntax highlighting, so this is why I am 
asking here. And also i would like to have pom.xml perfectly visible.

... so what i am doing right now: Tools > Options > Fonts & Colors > Language: 
XML > and I am channging "pi-content"
 and this is temporary working, for example

*> attachment2 <*

*!attachment2.png!*

but the problem is that after NetBeans reastart, "pi-content" values are again 
wrong (like in the first screenshot).
 It looks like this problem is currently only with few syntax highlighting 
values (other values are keeping saved and no issue). 
 Something like: 90% values are saved, 10% are reset to default after restart.

so my question is: how can I permanent  change this syntax highlighting ?


> incorrect xml syntax highlighting (pom.xml)
> ---
>
> Key: NETBEANS-3053
> URL: https://issues.apache.org/jira/browse/NETBEANS-3053
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Options, java - Editor
>Affects Versions: 11.0, 11.1
> Environment: Arch Linux, NetBeans 11.1 and 11.0, app has been 
> directly download from the site (NOT from the repositories)
>Reporter: collector1871
>Priority: Trivial
> Attachments: attachment1.png, attachment2.png
>
>
> Hello everyone,
> I have very annoying problem with incorrect xml syntax highlighting (file 
> pom.xml), it looks like this:
> *> attachment1 <*
> *!attachment1.png!*
> basically this header tag  is very unclear. I am afraid this issue 
> will appear in the future, for other syntax highlighting, so this is why I am 
> asking here. And also i would like to have pom.xml perfectly visible.
> ... so what i am doing right now: Tools > Options > Fonts & Colors > 
> Language: XML > and I am channging "pi-content"
>  and this is temporary working, for example
> *> attachment2 <*
> *!attachment2.png!*
> but the problem is that after NetBeans reastart, "pi-content" values are 
> again wrong (like in the first screenshot).
>  It looks like this problem is currently only with few syntax highlighting 
> values (other values are keeping saved and no issue). 
>  Something like: 90% values are saved, 10% are reset to default after restart.
> so my question is: how can I permanent  change this syntax highlighting ?
> Please also note that this is affecting only black themes : white themes are 
> working correctly (full xml syntax highlighting is working)



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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

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



[jira] [Updated] (NETBEANS-3053) incorrect xml syntax highlighting (pom.xml)

2019-09-01 Thread collector1871 (Jira)


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

collector1871 updated NETBEANS-3053:

Description: 
Hello everyone,

I have very annoying problem with incorrect xml syntax highlighting (file 
pom.xml), it looks like this:*!attachment1.png!*

basically this header tag  is very unclear. I am afraid this issue 
will appear in the future, for other syntax highlighting, so this is why I am 
asking here. And also i would like to have pom.xml perfectly visible.

... so what i am doing right now: Tools > Options > Fonts & Colors > Language: 
XML > and I am channging "pi-content"
 and this is temporary working, for example

*!attachment2.png!*

but the problem is that after NetBeans reastart, "pi-content" values are again 
wrong (like in the first screenshot).
 It looks like this problem is currently only with few syntax highlighting 
values (other values are keeping saved and no issue). 
 Something like: 90% values are saved, 10% are reset to default after restart.

so my question is: how can I permanent  change this syntax highlighting ?

Please also note that this is affecting only black themes : white themes are 
working correctly (full xml syntax highlighting is working)

  was:
Hello everyone,

I have very annoying problem with incorrect xml syntax highlighting (file 
pom.xml), it looks like this:

*> attachment1 <*

*!attachment1.png!*

basically this header tag  is very unclear. I am afraid this issue 
will appear in the future, for other syntax highlighting, so this is why I am 
asking here. And also i would like to have pom.xml perfectly visible.

... so what i am doing right now: Tools > Options > Fonts & Colors > Language: 
XML > and I am channging "pi-content"
 and this is temporary working, for example

*> attachment2 <*

*!attachment2.png!*

but the problem is that after NetBeans reastart, "pi-content" values are again 
wrong (like in the first screenshot).
 It looks like this problem is currently only with few syntax highlighting 
values (other values are keeping saved and no issue). 
 Something like: 90% values are saved, 10% are reset to default after restart.

so my question is: how can I permanent  change this syntax highlighting ?

Please also note that this is affecting only black themes : white themes are 
working correctly (full xml syntax highlighting is working)


> incorrect xml syntax highlighting (pom.xml)
> ---
>
> Key: NETBEANS-3053
> URL: https://issues.apache.org/jira/browse/NETBEANS-3053
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Options, java - Editor
>Affects Versions: 11.0, 11.1
> Environment: Arch Linux, NetBeans 11.1 and 11.0, app has been 
> directly download from the site (NOT from the repositories)
>Reporter: collector1871
>Priority: Trivial
> Attachments: attachment1.png, attachment2.png
>
>
> Hello everyone,
> I have very annoying problem with incorrect xml syntax highlighting (file 
> pom.xml), it looks like this:*!attachment1.png!*
> basically this header tag  is very unclear. I am afraid this issue 
> will appear in the future, for other syntax highlighting, so this is why I am 
> asking here. And also i would like to have pom.xml perfectly visible.
> ... so what i am doing right now: Tools > Options > Fonts & Colors > 
> Language: XML > and I am channging "pi-content"
>  and this is temporary working, for example
> *!attachment2.png!*
> but the problem is that after NetBeans reastart, "pi-content" values are 
> again wrong (like in the first screenshot).
>  It looks like this problem is currently only with few syntax highlighting 
> values (other values are keeping saved and no issue). 
>  Something like: 90% values are saved, 10% are reset to default after restart.
> so my question is: how can I permanent  change this syntax highlighting ?
> Please also note that this is affecting only black themes : white themes are 
> working correctly (full xml syntax highlighting is working)



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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

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



[jira] [Updated] (NETBEANS-3053) incorrect xml syntax highlighting (pom.xml)

2019-09-01 Thread collector1871 (Jira)


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

collector1871 updated NETBEANS-3053:

Description: 
Hello everyone,

I have very annoying problem with incorrect xml syntax highlighting (file 
pom.xml), it looks like this:

*> attachment1 <*

*!attachment1.png!*

basically this header tag  is very unclear. I am afraid this issue 
will appear in the future, for other syntax highlighting, so this is why I am 
asking here. And also i would like to have pom.xml perfectly visible.

... so what i am doing right now: Tools > Options > Fonts & Colors > Language: 
XML > and I am channging "pi-content"
 and this is temporary working, for example

*> attachment2 <*

*!attachment2.png!*

but the problem is that after NetBeans reastart, "pi-content" values are again 
wrong (like in the first screenshot).
 It looks like this problem is currently only with few syntax highlighting 
values (other values are keeping saved and no issue). 
 Something like: 90% values are saved, 10% are reset to default after restart.

so my question is: how can I permanent  change this syntax highlighting ?

  was:
Hello everyone, 
 
I have very annoying problem with incorrect xml syntax highlighting (file 
pom.xml), it looks like this:
 

*attachment1*
 
 basically this header tag  is very unclear. I am afraid this issue 
will appear in the future, for other syntax highlighting, so this is why I am 
asking here. And also i would like to have pom.xml perfectly visible.
 
 ... so what i am doing right now: Tools > Options > Fonts & Colors > Language: 
XML > and I am channging "pi-content"
 and this is temporary working, for example

*attachment2*
 
 but the problem is that after NetBeans reastart, "pi-content" values are again 
wrong (like in the first screenshot).
 It looks like this problem is currently only with few syntax highlighting 
values (other values are keeping saved and no issue). 
 Something like: 90% values are saved, 10% are reset to default after restart.
 
 so my question is: how can I permanent  change this syntax highlighting ?


> incorrect xml syntax highlighting (pom.xml)
> ---
>
> Key: NETBEANS-3053
> URL: https://issues.apache.org/jira/browse/NETBEANS-3053
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Options, java - Editor
>Affects Versions: 11.0, 11.1
> Environment: Arch Linux, NetBeans 11.1 and 11.0, app has been 
> directly download from the site (NOT from the repositories)
>Reporter: collector1871
>Priority: Trivial
> Attachments: attachment1.png, attachment2.png
>
>
> Hello everyone,
> I have very annoying problem with incorrect xml syntax highlighting (file 
> pom.xml), it looks like this:
> *> attachment1 <*
> *!attachment1.png!*
> basically this header tag  is very unclear. I am afraid this issue 
> will appear in the future, for other syntax highlighting, so this is why I am 
> asking here. And also i would like to have pom.xml perfectly visible.
> ... so what i am doing right now: Tools > Options > Fonts & Colors > 
> Language: XML > and I am channging "pi-content"
>  and this is temporary working, for example
> *> attachment2 <*
> *!attachment2.png!*
> but the problem is that after NetBeans reastart, "pi-content" values are 
> again wrong (like in the first screenshot).
>  It looks like this problem is currently only with few syntax highlighting 
> values (other values are keeping saved and no issue). 
>  Something like: 90% values are saved, 10% are reset to default after restart.
> so my question is: how can I permanent  change this syntax highlighting ?



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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

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



[jira] [Updated] (NETBEANS-3053) incorrect xml syntax highlighting (pom.xml)

2019-09-01 Thread collector1871 (Jira)


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

collector1871 updated NETBEANS-3053:

Affects Version/s: (was: 10.0)
   11.0
  Environment: Arch Linux, NetBeans 11.1 and 11.0, app has been 
directly download from the site (NOT from the repositories)  (was: Arch Linux, 
NetBeans 11.1)

> incorrect xml syntax highlighting (pom.xml)
> ---
>
> Key: NETBEANS-3053
> URL: https://issues.apache.org/jira/browse/NETBEANS-3053
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Options, java - Editor
>Affects Versions: 11.0, 11.1
> Environment: Arch Linux, NetBeans 11.1 and 11.0, app has been 
> directly download from the site (NOT from the repositories)
>Reporter: collector1871
>Priority: Trivial
> Attachments: attachment1.png, attachment2.png
>
>
> Hello everyone, 
>  
> I have very annoying problem with incorrect xml syntax highlighting (file 
> pom.xml), it looks like this:
>  
> *attachment1*
>  
>  basically this header tag  is very unclear. I am afraid this issue 
> will appear in the future, for other syntax highlighting, so this is why I am 
> asking here. And also i would like to have pom.xml perfectly visible.
>  
>  ... so what i am doing right now: Tools > Options > Fonts & Colors > 
> Language: XML > and I am channging "pi-content"
>  and this is temporary working, for example
> *attachment2*
>  
>  but the problem is that after NetBeans reastart, "pi-content" values are 
> again wrong (like in the first screenshot).
>  It looks like this problem is currently only with few syntax highlighting 
> values (other values are keeping saved and no issue). 
>  Something like: 90% values are saved, 10% are reset to default after restart.
>  
>  so my question is: how can I permanent  change this syntax highlighting ?



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3053) incorrect xml syntax highlighting (pom.xml)

2019-09-01 Thread collector1871 (Jira)
collector1871 created NETBEANS-3053:
---

 Summary: incorrect xml syntax highlighting (pom.xml)
 Key: NETBEANS-3053
 URL: https://issues.apache.org/jira/browse/NETBEANS-3053
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Options, java - Editor
Affects Versions: 11.1, 10.0
 Environment: Arch Linux, NetBeans 11.1
Reporter: collector1871
 Attachments: attachment1.png, attachment2.png

Hello everyone, 
 
I have very annoying problem with incorrect xml syntax highlighting (file 
pom.xml), it looks like this:
 

*attachment1*
 
 basically this header tag  is very unclear. I am afraid this issue 
will appear in the future, for other syntax highlighting, so this is why I am 
asking here. And also i would like to have pom.xml perfectly visible.
 
 ... so what i am doing right now: Tools > Options > Fonts & Colors > Language: 
XML > and I am channging "pi-content"
 and this is temporary working, for example

*attachment2*
 
 but the problem is that after NetBeans reastart, "pi-content" values are again 
wrong (like in the first screenshot).
 It looks like this problem is currently only with few syntax highlighting 
values (other values are keeping saved and no issue). 
 Something like: 90% values are saved, 10% are reset to default after restart.
 
 so my question is: how can I permanent  change this syntax highlighting ?



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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] [Closed] (NETBEANS-3050) Can't install Payara plugin

2019-09-01 Thread Mike (Jira)


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

Mike closed NETBEANS-3050.
--
Resolution: Not A Problem

> Can't install Payara plugin
> ---
>
> Key: NETBEANS-3050
> URL: https://issues.apache.org/jira/browse/NETBEANS-3050
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Mike
>Priority: Major
> Attachments: netbeans-javaee-error.png, netbeans-payara.png
>
>
> I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
> upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The 
> dialog says "The plugin Java EE Specifications Support is requested in 
> implementation version incubator-netbeans-release-404-on-20190319" and I can 
> only click the Cancel button.
>  
> I noticed there's only one Payara plugin now, instead of four. Not sure if 
> that has anything to do with it.
>  
> Screenshot of it installed on 11.0 and the error message in 11.1.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3050) Can't install Payara plugin

2019-09-01 Thread Mike (Jira)


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

Mike commented on NETBEANS-3050:


Oh thanks!

> Can't install Payara plugin
> ---
>
> Key: NETBEANS-3050
> URL: https://issues.apache.org/jira/browse/NETBEANS-3050
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Mike
>Priority: Major
> Attachments: netbeans-javaee-error.png, netbeans-payara.png
>
>
> I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
> upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The 
> dialog says "The plugin Java EE Specifications Support is requested in 
> implementation version incubator-netbeans-release-404-on-20190319" and I can 
> only click the Cancel button.
>  
> I noticed there's only one Payara plugin now, instead of four. Not sure if 
> that has anything to do with it.
>  
> Screenshot of it installed on 11.0 and the error message in 11.1.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3049) Terminal should open to Netbeans workspace folder

2019-09-01 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi updated NETBEANS-3049:
--
Issue Type: Improvement  (was: Bug)

> Terminal should open to Netbeans workspace folder
> -
>
> Key: NETBEANS-3049
> URL: https://issues.apache.org/jira/browse/NETBEANS-3049
> Project: NetBeans
>  Issue Type: Improvement
>  Components: cnd - Terminalemulator
>Affects Versions: 11.1
> Environment: Windows 10 Netbeans installed using the msi installer
>Reporter: Mathieu Moloney
>Priority: Minor
>
> The terminal opens to the Netbeans installation directory, on windows this is 
> C:\Program Files\Netbeans
> This is pretty useless, it should open to the workspace directory by default.
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2980) NPE when opening file

2019-09-01 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-2980.
---
Fix Version/s: 11.2
   Resolution: Fixed

The corresponding PR got merged.

> NPE when opening file
> -
>
> Key: NETBEANS-2980
> URL: https://issues.apache.org/jira/browse/NETBEANS-2980
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Shevek
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.2
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Open a project.
> Don't have the dependent project(s) open.
> Press ^1, ^O, type a class name.
> Get this:
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.java.source.pretty.ImportAnalysis2.getPackageOf(ImportAnalysis2.java:393)
>   at 
> org.netbeans.modules.java.source.pretty.ImportAnalysis2.resolveImport(ImportAnalysis2.java:310)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.visitMemberSelect(ImmutableTreeTranslator.java:475)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.visitMemberSelect(ImmutableTreeTranslator.java:74)
>   at 
> com.sun.tools.javac.tree.JCTree$JCFieldAccess.accept(JCTree.java:2203)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.translate(ImmutableTreeTranslator.java:123)
>   at 
> org.netbeans.api.java.source.WorkingCopy$5.translate(WorkingCopy.java:871)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.translateClassRef(ImmutableTreeTranslator.java:135)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.translateClassRef(ImmutableTreeTranslator.java:144)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.rewriteChildren(ImmutableTreeTranslator.java:595)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.visitClass(ImmutableTreeTranslator.java:335)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.visitClass(ImmutableTreeTranslator.java:74)
>   at com.sun.tools.javac.tree.JCTree$JCClassDecl.accept(JCTree.java:818)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.translate(ImmutableTreeTranslator.java:123)
>   at 
> org.netbeans.api.java.source.WorkingCopy$5.translate(WorkingCopy.java:871)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.translate(ImmutableTreeTranslator.java:198)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.rewriteChildren(ImmutableTreeTranslator.java:545)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.visitCompilationUnit(ImmutableTreeTranslator.java:322)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.visitCompilationUnit(ImmutableTreeTranslator.java:74)
>   at 
> com.sun.tools.javac.tree.JCTree$JCCompilationUnit.accept(JCTree.java:599)
>   at 
> org.netbeans.modules.java.source.transform.ImmutableTreeTranslator.translate(ImmutableTreeTranslator.java:123)
>   at 
> org.netbeans.api.java.source.WorkingCopy$5.translate(WorkingCopy.java:871)
>   at 
> org.netbeans.api.java.source.WorkingCopy$5.translate(WorkingCopy.java:867)
>   at 
> org.netbeans.api.java.source.WorkingCopy.processCurrentCompilationUnit(WorkingCopy.java:899)
>   at 
> org.netbeans.api.java.source.WorkingCopy.getChanges(WorkingCopy.java:1326)
>   at org.netbeans.api.java.source.JavaSource$1.run(JavaSource.java:676)
>   at org.netbeans.api.java.source.JavaSource$1.run(JavaSource.java:663)
>   at 
> org.netbeans.api.java.source.JavaSource$MultiTask.run(JavaSource.java:502)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callUserTask(TaskProcessor.java:586)
>   at 
> org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:130)
>   at 
> org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:114)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:181)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:178)
>   at 
> org.netbeans.modules.masterfs.filebasedfs.utils.FileChangedManager.priorityIO(FileChangedManager.java:153)
>   at 
> org.netbeans.modules.masterfs.providers.ProvidedExtensions.priorityIO(ProvidedExtensions.java:335)
>   at 
> org.netbeans.modules.parsing.nb.DataObjectEnvFactory.runPriorityIO(DataObjectEnvFactory.java:118)
>   at 
> org.netbeans.modules.parsing.impl.Utilities.runPriorityIO(Utilities.java:67)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor.runUserTask(TaskProcessor.java:178)
>   at 

[jira] [Updated] (NETBEANS-2661) find-usages takes a LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

2019-09-01 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi updated NETBEANS-2661:
--
Fix Version/s: 11.2

> find-usages takes a 
> LO
> --
>
> Key: NETBEANS-2661
> URL: https://issues.apache.org/jira/browse/NETBEANS-2661
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Linux, JDK 1.8, etc
>Reporter: Shevek
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: PERFORMANCE, Performance, perf, perfomance, performance, 
> performence, pull-request-available
> Fix For: 11.2
>
> Attachments: find-usages-is-totally-unusable-11.1.npss, 
> image-2019-08-15-07-05-38-978.png, netbeans-find-usages.npss
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> OOOng time, like 5 minutes. Please see attached profile.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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] branch master updated: [NETBEANS-2980] Fix potential NPE on ImportAnalysis2.getPackage()

2019-09-01 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new b3601d6  [NETBEANS-2980] Fix potential NPE on 
ImportAnalysis2.getPackage()
b3601d6 is described below

commit b3601d6958c12eda5031ffda5abe34ff00603a3e
Author: Laszlo Kishalmi 
AuthorDate: Wed Aug 14 02:26:26 2019 -0700

[NETBEANS-2980] Fix potential NPE on ImportAnalysis2.getPackage()
---
 .../src/org/netbeans/modules/java/source/pretty/ImportAnalysis2.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/java/java.source.base/src/org/netbeans/modules/java/source/pretty/ImportAnalysis2.java
 
b/java/java.source.base/src/org/netbeans/modules/java/source/pretty/ImportAnalysis2.java
index 47b9561..e88ef5d 100644
--- 
a/java/java.source.base/src/org/netbeans/modules/java/source/pretty/ImportAnalysis2.java
+++ 
b/java/java.source.base/src/org/netbeans/modules/java/source/pretty/ImportAnalysis2.java
@@ -258,7 +258,7 @@ public class ImportAnalysis2 {
 
 //Note: this method should return either "orig" or a IdentifierTree or 
MemberSelectTree
 //no other tree type is not allowed - see 
ImmutableTreeTranslator.translateStable(Tree)
-public ExpressionTree resolveImport(MemberSelectTree orig, Element 
element) {
+public ExpressionTree resolveImport(MemberSelectTree orig, final Element 
element) {
 if (visibleThroughClasses == null || element == null || cs != null && 
cs.useFQNs()) {
 //may happen for package clause
 return orig;
@@ -390,7 +390,7 @@ public class ImportAnalysis2 {
 }
 
 private PackageElement getPackageOf(Element el) {
-while (el.getKind() != ElementKind.PACKAGE) el = 
el.getEnclosingElement();
+while ((el != null) && (el.getKind() != ElementKind.PACKAGE)) el = 
el.getEnclosingElement();
 
 return (PackageElement) el;
 }


-
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-2661) find-usages takes a LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

2019-09-01 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-2661.
---
Resolution: Fixed

The corresponding PR got merged.

> find-usages takes a 
> LO
> --
>
> Key: NETBEANS-2661
> URL: https://issues.apache.org/jira/browse/NETBEANS-2661
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Linux, JDK 1.8, etc
>Reporter: Shevek
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: PERFORMANCE, Performance, perf, perfomance, performance, 
> performence, pull-request-available
> Attachments: find-usages-is-totally-unusable-11.1.npss, 
> image-2019-08-15-07-05-38-978.png, netbeans-find-usages.npss
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> OOOng time, like 5 minutes. Please see attached profile.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2356) Clean+Build fires MalformedInputException

2019-09-01 Thread Nikolai Varankine (Jira)


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

Nikolai Varankine commented on NETBEANS-2356:
-

Not repeatable in NetBeans 11.1, feel free to close the ticket.

> Clean+Build fires MalformedInputException
> -
>
> Key: NETBEANS-2356
> URL: https://issues.apache.org/jira/browse/NETBEANS-2356
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
>Reporter: Nikolai Varankine
>Priority: Major
>  Labels: ant, javac
> Attachments: NB10wJDK8.zip, build.txt, clean+build.txt
>
>
> Menu command Run / Clean and Build Project fails with exception:
> {panel:title=Output - utility (clean,jar)}
> An input/output error occurred.
>  Consult the following stack trace for details.
>  java.nio.charset.MalformedInputException: Input length = 1
>   at 
> java.base/java.nio.charset.CoderResult.throwException(CoderResult.java:274)
>   at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:339)
>   at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
>   at java.base/java.io.InputStreamReader.read(InputStreamReader.java:185)
>   at java.base/java.io.BufferedReader.fill(BufferedReader.java:161)
>   at java.base/java.io.BufferedReader.read(BufferedReader.java:182)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine$Tokenizer.(CommandLine.java:143)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.loadCmdFile(CommandLine.java:129)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.appendParsedCommandArgs(CommandLine.java:71)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.parse(CommandLine.java:102)
>   at 
> jdk.compiler/com.sun.tools.javac.main.CommandLine.parse(CommandLine.java:123)
>   at jdk.compiler/com.sun.tools.javac.main.Main.compile(Main.java:215)
>   at jdk.compiler/com.sun.tools.javac.main.Main.compile(Main.java:170)
>   at jdk.compiler/com.sun.tools.javac.Main.compile(Main.java:57)
>   at jdk.compiler/com.sun.tools.javac.Main.main(Main.java:43)
> {panel}
>  +Investigation+
> This is a NetBeans 8.2 project in working state. It has been opened in 
> NetBeans 10, then project platform was updated to JDK11. No change to source 
> code was applied.
> If a package "property" is compiled first by F9, followed by menu command Run 
> / Build Project, the command completes with success. Comparison of ant logs 
> (debug mode, see attached) indicates a difference in method how list of files 
> is delivered to javac compiler. In failed case (clean+build) a command line 
> construct @,,,\file... is used, In second lucky case (compile then build) it 
> is a sequence of explicit file paths. I suspect the construct "@" is created 
> in wrong charset. I expect UTF-8 must be used. Please note file names use 
> Russian text. I guess it will be corrupt with no UTF-8 used. System charset 
> is windows1251.
> +Information+
>  *Product Version:* Apache NetBeans IDE 10.0 (Build 
> incubator-netbeans-release-380-on-20181217)
> *Java:* 11.0.2; OpenJDK 64-Bit Server VM 11.0.2+9
> *Runtime:* OpenJDK Runtime Environment 11.0.2+9
> *System:* Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
> *Project sources:* JDK8
> *Project  platform:* OpenJDK11
> *Compiles with:* -bootclasspath "C:\Program 
> Files\Java\jdk1.8.0_202\jre\lib\rt.jar"



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3052) Wrong encoding in output window for jfxsa-run target

2019-09-01 Thread Nikolai Varankine (Jira)
Nikolai Varankine created NETBEANS-3052:
---

 Summary: Wrong encoding in output window for jfxsa-run target
 Key: NETBEANS-3052
 URL: https://issues.apache.org/jira/browse/NETBEANS-3052
 Project: NetBeans
  Issue Type: Bug
  Components: ide - Logger, platform - Output Window
Affects Versions: 11.1
 Environment: Product Version: Apache NetBeans IDE 11.1
Java: 12; Java HotSpot(TM) 64-Bit Server VM 12+33
Runtime: Java(TM) SE Runtime Environment 12+33
System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
Windows 10 version 1903 build 18362.295

Reporter: Nikolai Varankine


When JavaFX application runs, logger records display corrupted text unless it 
is plain ASCII. Same application in debug mode displays same strings correctly. 
Cyrillic subset of UTF-8 is involved. The project transitioned automatically 
form NetBeans 8.2 to 10.0 to 11.1.
 Presentation difference was noticed: in Run mode, text is likely a part of 
total (ant?) report and is black and prefixed. In Debug mode, text is colored 
and has no extra information. Examples are shown below, the difference is in 
last line:
{panel:title=Run mode}
jar:

-check-concurrent-runs:

-create-temp-run-dir:
 [copy] Copying 124 files to C:\Users\...fx\dist\run213104086

jfx-project-run:
 [echo] Executing C:\Users\...fx\dist\run213104086\brains-fx.jar using platform 
C:\Program Files\Java\jdk1.8.0_202/bin/java
 [java] сен 01, 2019 6:35:31 PM com.varankin.brains.Контекст 
конфигурация
{panel}
{panel:title=Debug mode}
jfxsa-debug-on-another-platform:
 BUILD SUCCESSFUL
 Total time: 6 seconds
 Deleting: C:\Users\...fx\debug-another-platform.properties
 init:
 jfx-project-debug-on-another-platform:
 jfx-project-debug:
 Executing C:\Users\...fx\dist\run66203463\brains-fx.jar using platform 
C:\Program Files\Java\jdk1.8.0_202/bin/java
 сен 01, 2019 4:28:14 PM com.varankin.brains.Контекст конфигурация
{panel}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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] branch master updated (9679421 -> 18203ce)

2019-09-01 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

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


from 9679421  [NETBEANS-2661] Trying to avoid excessive computations by 
using BinaryForSource query on the current source root, rather than iterating 
through all binary roots and using SourceForBinaryQuery for them.
 new 1d6c743  Display Class objects more helpfully.
 new 18203ce  Do not create a Path with null item just because 
LiveEngine.getID was called.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 harness/o.n.insane/src/org/netbeans/insane/impl/LiveEngine.java | 2 ++
 harness/o.n.insane/src/org/netbeans/insane/live/Path.java   | 2 ++
 2 files changed, 4 insertions(+)


-
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] 02/02: Do not create a Path with null item just because LiveEngine.getID was called.

2019-09-01 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

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

commit 18203cea4e5776d25893de172929c9b64603cab0
Author: Jesse Glick 
AuthorDate: Tue Aug 27 15:00:41 2019 -0400

Do not create a Path with null item just because LiveEngine.getID was 
called.
---
 harness/o.n.insane/src/org/netbeans/insane/impl/LiveEngine.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/harness/o.n.insane/src/org/netbeans/insane/impl/LiveEngine.java 
b/harness/o.n.insane/src/org/netbeans/insane/impl/LiveEngine.java
index 3614c3d..917099f 100644
--- a/harness/o.n.insane/src/org/netbeans/insane/impl/LiveEngine.java
+++ b/harness/o.n.insane/src/org/netbeans/insane/impl/LiveEngine.java
@@ -130,6 +130,8 @@ public class LiveEngine implements ObjectMap, Visitor {
 Object oo = objects.get(to);
 if (oo instanceof Object[]) {
 return Arrays.asList((Object[])oo).iterator();
+} else if (oo == null) {
+return Collections.emptyIterator();
 } else {
 return Collections.singleton(oo).iterator();
 }


-
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/02: Display Class objects more helpfully.

2019-09-01 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

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

commit 1d6c743febd889a0ed23b655cc04543a6332e0ae
Author: Jesse Glick 
AuthorDate: Tue Aug 27 14:59:49 2019 -0400

Display Class objects more helpfully.
---
 harness/o.n.insane/src/org/netbeans/insane/live/Path.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/harness/o.n.insane/src/org/netbeans/insane/live/Path.java 
b/harness/o.n.insane/src/org/netbeans/insane/live/Path.java
index bbf564f..244e40a 100644
--- a/harness/o.n.insane/src/org/netbeans/insane/live/Path.java
+++ b/harness/o.n.insane/src/org/netbeans/insane/live/Path.java
@@ -97,6 +97,8 @@ public final class Path {
 // at 
org.netbeans.junit.NbTestCase.assertGC(NbTestCase.java:1171)
 // at 
org.netbeans.modules.projectapi.AuxiliaryConfigBasedPreferencesProviderTest.testReclaimable(AuxiliaryConfigBasedPreferencesProviderTest.java:256)
 return "null";
+} else if (obj instanceof Class) {
+return obj.toString() + "@" + 
Integer.toHexString(System.identityHashCode(obj));
 }
 return obj.getClass().getName() + "@" + 
Integer.toHexString(System.identityHashCode(obj));
 }


-
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] branch master updated: [NETBEANS-2661] Trying to avoid excessive computations by using BinaryForSource query on the current source root, rather than iterating through all binary roots and u

2019-09-01 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 9679421  [NETBEANS-2661] Trying to avoid excessive computations by 
using BinaryForSource query on the current source root, rather than iterating 
through all binary roots and using SourceForBinaryQuery for them.
9679421 is described below

commit 96794212dbd725e3f85b6ccf4c685134ae93a57a
Author: Jan Lahoda 
AuthorDate: Fri Aug 16 07:24:58 2019 +0200

[NETBEANS-2661] Trying to avoid excessive computations by using 
BinaryForSource query on the current source root, rather than iterating through 
all binary roots and using SourceForBinaryQuery for them.
---
 .../modules/parsing/spi/indexing/support/QuerySupport.java   | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git 
a/ide/parsing.indexing/src/org/netbeans/modules/parsing/spi/indexing/support/QuerySupport.java
 
b/ide/parsing.indexing/src/org/netbeans/modules/parsing/spi/indexing/support/QuerySupport.java
index 4160c8c..c96cac0 100644
--- 
a/ide/parsing.indexing/src/org/netbeans/modules/parsing/spi/indexing/support/QuerySupport.java
+++ 
b/ide/parsing.indexing/src/org/netbeans/modules/parsing/spi/indexing/support/QuerySupport.java
@@ -45,6 +45,7 @@ import org.netbeans.api.annotations.common.NonNull;
 import org.netbeans.api.annotations.common.NullAllowed;
 import org.netbeans.api.java.classpath.ClassPath;
 import org.netbeans.api.java.classpath.GlobalPathRegistry;
+import org.netbeans.api.java.queries.BinaryForSourceQuery;
 import org.netbeans.api.java.queries.SourceForBinaryQuery;
 import org.netbeans.api.project.FileOwnerQuery;
 import org.netbeans.api.project.Project;
@@ -844,11 +845,9 @@ public final class QuerySupport {
 @NonNull final FileObject sourceRoot,
 @NonNull final Map> binaryDeps) {
 Set result = new HashSet<>();
-for (URL bin : binaryDeps.keySet()) {
-for (FileObject fo : 
SourceForBinaryQuery.findSourceRoots(bin).getRoots()) {
-if (sourceRoot.equals(fo)) {
-result.add(bin);
-}
+for (URL binRoot : 
BinaryForSourceQuery.findBinaryRoots(sourceRoot.toURL()).getRoots()) {
+if (binaryDeps.containsKey(binRoot)) {
+result.add(binRoot);
 }
 }
 return result;


-
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-2832) Support System input into Gradle output window.

2019-09-01 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-2832.
---
Fix Version/s: 11.2
   Resolution: Fixed

> Support System input into Gradle output window.
> ---
>
> Key: NETBEANS-2832
> URL: https://issues.apache.org/jira/browse/NETBEANS-2832
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Gradle
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.2
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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] branch geertjanw-patch-3 updated: [NETBEANS-1097] Copy the libs when module-info is not present and do not copy them if it is present. (#1469)

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

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


The following commit(s) were added to refs/heads/geertjanw-patch-3 by this push:
 new 3b8ad15  [NETBEANS-1097] Copy the libs when module-info is not present 
and do not copy them if it is present. (#1469)
3b8ad15 is described below

commit 3b8ad151a3306639102bfdad1dce015510d8f5ad
Author: Jan Lahoda 
AuthorDate: Sun Sep 1 16:16:26 2019 +0200

[NETBEANS-1097] Copy the libs when module-info is not present and do not 
copy them if it is present. (#1469)
---
 .../java/j2seproject/resources/build-impl.xsl  | 29 ++
 1 file changed, 18 insertions(+), 11 deletions(-)

diff --git 
a/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
 
b/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
index e1474c7..474263f 100644
--- 
a/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
+++ 
b/java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl
@@ -294,15 +294,6 @@ is divided into following sections:
 
 
 
-
-
-
-
-
-
-
-
-
 
 
 
@@ -2199,8 +2190,24 @@ is divided into following sections:
 
 
 
+
+init,compile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
-init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen
+init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist
 do.mkdist
 
 To run this application from the command 
line without Ant, try:
@@ -2212,7 +2219,7 @@ is divided into following sections:
 
 
 
-init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen
+init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-check-do-mkdist
 do.archive
 do.mkdist
 


-
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-3051) Database Explorer cannot run queries using Csv Driver

2019-09-01 Thread Bernard (Jira)


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

Bernard updated NETBEANS-3051:
--
Attachment: JdbcCsvSample.zip

> Database Explorer cannot run queries using Csv Driver
> -
>
> Key: NETBEANS-3051
> URL: https://issues.apache.org/jira/browse/NETBEANS-3051
> Project: NetBeans
>  Issue Type: Bug
>  Components: db - Show Data
>Affects Versions: 11.1
> Environment: Windows 7, Java 12
>Reporter: Bernard
>Priority: Major
> Attachments: JdbcCsvSample.zip
>
>
> It is possible to establish a connection using this driver.
> It is also possible to see the tables in the Database Explorer tree for a 
> connection.
> However, running a query fails with a connection error.
> How to reproduce:
> Open and build the attached project. This loads the following dependency into 
> your local repository:
> 
>  org.xbib.jdbc
>  jdbc-driver-csv
>  1.2.0
> 
> Run the project to verify that the connection works as expected.
> This should have loaded the driver into your local repository like:
> C:\Users\user\.m2\repository\org\xbib\jdbc\jdbc-driver-csv\1.2.0\jdbc-driver-csv-1.2.0.jar
> In Database explorer, add the driver with driver file as above:
> Databases|Drivers|New Driver|Add|
> For JDBC URL, add the directory from the project 
> JdbcCsvSample\src\test\resources\csv:
> Add a connection:
> Connect using ...
> JDBC URL: like jdbc:xbib:csv:C:/JdbcCsvSample/src/test/resources/csv
> Connection Properties: line.separator, \r\n
> Test connection.
> The test must work, as it works on my system.
> After the new connection is added, In Database Explorer, on that connection, 
> under Tables, the "SYMBOL" table is visible.
> Right click on "SYMBOL" and select "View Data..."
> This fails with
> [1:1] Failed in 0 s.
> [Exception, Error code 0, SQLState null] Unable to Connect to database : 
> DatabaseConnection[name='jdbc:xbib:csv:C:/JdbcCsvSample/src/test/resources/csv
>  [ on Default schema]']
>  Line 1, column 1
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3051) Database Explorer cannot run queries using Csv Driver

2019-09-01 Thread Bernard (Jira)
Bernard created NETBEANS-3051:
-

 Summary: Database Explorer cannot run queries using Csv Driver
 Key: NETBEANS-3051
 URL: https://issues.apache.org/jira/browse/NETBEANS-3051
 Project: NetBeans
  Issue Type: Bug
  Components: db - Show Data
Affects Versions: 11.1
 Environment: Windows 7, Java 12
Reporter: Bernard


It is possible to establish a connection using this driver.

It is also possible to see the tables in the Database Explorer tree for a 
connection.

However, running a query fails with a connection error.

How to reproduce:

Open and build the attached project. This loads the following dependency into 
your local repository:


 org.xbib.jdbc
 jdbc-driver-csv
 1.2.0



Run the project to verify that the connection works as expected.


This should have loaded the driver into your local repository like:

C:\Users\user\.m2\repository\org\xbib\jdbc\jdbc-driver-csv\1.2.0\jdbc-driver-csv-1.2.0.jar

In Database explorer, add the driver with driver file as above:

Databases|Drivers|New Driver|Add|

For JDBC URL, add the directory from the project 
JdbcCsvSample\src\test\resources\csv:


Add a connection:

Connect using ...


JDBC URL: like jdbc:xbib:csv:C:/JdbcCsvSample/src/test/resources/csv
Connection Properties: line.separator, \r\n

Test connection.

The test must work, as it works on my system.

After the new connection is added, In Database Explorer, on that connection, 
under Tables, the "SYMBOL" table is visible.

Right click on "SYMBOL" and select "View Data..."

This fails with

[1:1] Failed in 0 s.
[Exception, Error code 0, SQLState null] Unable to Connect to database : 
DatabaseConnection[name='jdbc:xbib:csv:C:/JdbcCsvSample/src/test/resources/csv 
[ on Default schema]']
 Line 1, column 1

 



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3050) Can't install Payara plugin

2019-09-01 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-3050:
-

There is zero reason to install it in 11.1. It is built in from scratch in 
11.1. There is nothing that needs to be installed for Payara.

> Can't install Payara plugin
> ---
>
> Key: NETBEANS-3050
> URL: https://issues.apache.org/jira/browse/NETBEANS-3050
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Mike
>Priority: Major
> Attachments: netbeans-javaee-error.png, netbeans-payara.png
>
>
> I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
> upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The 
> dialog says "The plugin Java EE Specifications Support is requested in 
> implementation version incubator-netbeans-release-404-on-20190319" and I can 
> only click the Cancel button.
>  
> I noticed there's only one Payara plugin now, instead of four. Not sure if 
> that has anything to do with it.
>  
> Screenshot of it installed on 11.0 and the error message in 11.1.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3050) Can't install Payara plugin

2019-09-01 Thread Mike (Jira)


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

Mike updated NETBEANS-3050:
---
Description: 
I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The dialog 
says "The plugin Java EE Specifications Support is requested in implementation 
version incubator-netbeans-release-404-on-20190319" and I can only click the 
Cancel button.

 

I noticed there's only one Payara plugin now, instead of four. Not sure if that 
has anything to do with it.

 

Screenshot of it installed on 11.0 and the error message in 11.1.

  was:
I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The dialog 
says "The plugin Java EE Specifications Support is requested in implementation 
version incubator-netbeans-release-404-on-20190319" and I can only click the 
Cancel button.

 

Screenshot of it installed on 11.0 and the error message in 11.1.


> Can't install Payara plugin
> ---
>
> Key: NETBEANS-3050
> URL: https://issues.apache.org/jira/browse/NETBEANS-3050
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Mike
>Priority: Major
> Attachments: netbeans-javaee-error.png, netbeans-payara.png
>
>
> I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
> upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The 
> dialog says "The plugin Java EE Specifications Support is requested in 
> implementation version incubator-netbeans-release-404-on-20190319" and I can 
> only click the Cancel button.
>  
> I noticed there's only one Payara plugin now, instead of four. Not sure if 
> that has anything to do with it.
>  
> Screenshot of it installed on 11.0 and the error message in 11.1.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3050) Can't install Payara plugin

2019-09-01 Thread Mike (Jira)


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

Mike updated NETBEANS-3050:
---
Description: 
I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The dialog 
says "The plugin Java EE Specifications Support is requested in implementation 
version incubator-netbeans-release-404-on-20190319" and I can only click the 
Cancel button.

 

Screenshot of it installed on 11.0 and the error message in 11.1.

  was:I've been using NetBeans 11.0 without problem with the Payara plugin. 
Just upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The 
dialog says "The plugin Java EE Specifications Support is requested in 
implementation version incubator-netbeans-release-404-on-20190319" and I can 
only click the Cancel button. Screenshot of it installed on 11.0 and the error 
message in 11.1.


> Can't install Payara plugin
> ---
>
> Key: NETBEANS-3050
> URL: https://issues.apache.org/jira/browse/NETBEANS-3050
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Mike
>Priority: Major
> Attachments: netbeans-javaee-error.png, netbeans-payara.png
>
>
> I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
> upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The 
> dialog says "The plugin Java EE Specifications Support is requested in 
> implementation version incubator-netbeans-release-404-on-20190319" and I can 
> only click the Cancel button.
>  
> Screenshot of it installed on 11.0 and the error message in 11.1.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3050) Can't install Payara plugin

2019-09-01 Thread Mike (Jira)
Mike created NETBEANS-3050:
--

 Summary: Can't install Payara plugin
 Key: NETBEANS-3050
 URL: https://issues.apache.org/jira/browse/NETBEANS-3050
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
Reporter: Mike
 Attachments: netbeans-javaee-error.png, netbeans-payara.png

I've been using NetBeans 11.0 without problem with the Payara plugin. Just 
upgraded to NetBeans 11.1 and the Payara plugin refuses to install. The dialog 
says "The plugin Java EE Specifications Support is requested in implementation 
version incubator-netbeans-release-404-on-20190319" and I can only click the 
Cancel button. Screenshot of it installed on 11.0 and the error message in 11.1.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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