[jira] [Created] (NETBEANS-4062) Unable to import Records from other package

2020-03-24 Thread Julian Jupiter (Jira)
Julian Jupiter created NETBEANS-4062:


 Summary: Unable to import Records from other package
 Key: NETBEANS-4062
 URL: https://issues.apache.org/jira/browse/NETBEANS-4062
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.3
Reporter: Julian Jupiter


NetBeans can't import records from other package. It instead suggests to create 
a class.

It has to be imported manually. Even importing manually does not work smoothly 
coz after hitting dot, records do not show up but other classes do. There is no 
choice but to type it in explicitly.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Commented] (NETBEANS-4062) Unable to import Records from other package

2020-03-24 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4062:
-

Can you provide steps to reproduce this, please?

> Unable to import Records from other package
> ---
>
> Key: NETBEANS-4062
> URL: https://issues.apache.org/jira/browse/NETBEANS-4062
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Julian Jupiter
>Priority: Minor
>  Labels: Java14, records
>
> NetBeans can't import records from other package. It instead suggests to 
> create a class.
> It has to be imported manually. Even importing manually does not work 
> smoothly coz after hitting dot, records do not show up but other classes do. 
> There is no choice but to type it in explicitly.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Updated] (NETBEANS-4062) Unable to import Records from other package

2020-03-24 Thread Julian Jupiter (Jira)


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

Julian Jupiter updated NETBEANS-4062:
-
Description: 
NetBeans can't import records from other package. It instead suggests to create 
a class.

It has to be imported manually. Even importing manually does not work smoothly 
coz after hitting dot, records do not show up but other classes do. There is no 
choice but to type it in explicitly.

Steps to reproduce:
 # Create a record in a package, e.g. `records.Person.java`.
 # Create main class in another package, e.g. `app.PersonApp.java`.
 # In `PersonApp`, type in `var person = new Person();`. Using content 
assist/auto-suggestion does not display Person.
 # Manually type: `import records.` and using content assist does not display 
Person. Other classes, if any, do display, though.

  was:
NetBeans can't import records from other package. It instead suggests to create 
a class.

It has to be imported manually. Even importing manually does not work smoothly 
coz after hitting dot, records do not show up but other classes do. There is no 
choice but to type it in explicitly.


> Unable to import Records from other package
> ---
>
> Key: NETBEANS-4062
> URL: https://issues.apache.org/jira/browse/NETBEANS-4062
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Julian Jupiter
>Priority: Minor
>  Labels: Java14, records
>
> NetBeans can't import records from other package. It instead suggests to 
> create a class.
> It has to be imported manually. Even importing manually does not work 
> smoothly coz after hitting dot, records do not show up but other classes do. 
> There is no choice but to type it in explicitly.
> Steps to reproduce:
>  # Create a record in a package, e.g. `records.Person.java`.
>  # Create main class in another package, e.g. `app.PersonApp.java`.
>  # In `PersonApp`, type in `var person = new Person();`. Using content 
> assist/auto-suggestion does not display Person.
>  # Manually type: `import records.` and using content assist does not display 
> Person. Other classes, if any, do display, though.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Updated] (NETBEANS-4062) Unable to import Records from other package

2020-03-24 Thread Julian Jupiter (Jira)


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

Julian Jupiter updated NETBEANS-4062:
-
Description: 
NetBeans can't import records from other package. It instead suggests to create 
a class.

It has to be imported manually. Even importing manually does not work smoothly 
coz after hitting dot, records do not show up but other classes do. There is no 
choice but to type it in explicitly.

Steps to reproduce:
 # Create a record in a package, e.g. `records.Person.java`.
 # Create main class in another package, e.g. `app.PersonApp.java`.
 # In `PersonApp`, type in `var person = new Person();`. Using content 
assist/auto-suggestion does not display Person.
 # Manually type: `import records.` and using content assist does not display 
Person. Other classes, if any, do display, though. So, instead of relying on 
suggestion, just type it explicitly: `import records.Person;`.

  was:
NetBeans can't import records from other package. It instead suggests to create 
a class.

It has to be imported manually. Even importing manually does not work smoothly 
coz after hitting dot, records do not show up but other classes do. There is no 
choice but to type it in explicitly.

Steps to reproduce:
 # Create a record in a package, e.g. `records.Person.java`.
 # Create main class in another package, e.g. `app.PersonApp.java`.
 # In `PersonApp`, type in `var person = new Person();`. Using content 
assist/auto-suggestion does not display Person.
 # Manually type: `import records.` and using content assist does not display 
Person. Other classes, if any, do display, though.


> Unable to import Records from other package
> ---
>
> Key: NETBEANS-4062
> URL: https://issues.apache.org/jira/browse/NETBEANS-4062
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Julian Jupiter
>Priority: Minor
>  Labels: Java14, records
>
> NetBeans can't import records from other package. It instead suggests to 
> create a class.
> It has to be imported manually. Even importing manually does not work 
> smoothly coz after hitting dot, records do not show up but other classes do. 
> There is no choice but to type it in explicitly.
> Steps to reproduce:
>  # Create a record in a package, e.g. `records.Person.java`.
>  # Create main class in another package, e.g. `app.PersonApp.java`.
>  # In `PersonApp`, type in `var person = new Person();`. Using content 
> assist/auto-suggestion does not display Person.
>  # Manually type: `import records.` and using content assist does not display 
> Person. Other classes, if any, do display, though. So, instead of relying on 
> suggestion, just type it explicitly: `import records.Person;`.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Commented] (NETBEANS-4062) Unable to import Records from other package

2020-03-24 Thread Julian Jupiter (Jira)


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

Julian Jupiter commented on NETBEANS-4062:
--

Updated description.

> Unable to import Records from other package
> ---
>
> Key: NETBEANS-4062
> URL: https://issues.apache.org/jira/browse/NETBEANS-4062
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
>Reporter: Julian Jupiter
>Priority: Minor
>  Labels: Java14, records
>
> NetBeans can't import records from other package. It instead suggests to 
> create a class.
> It has to be imported manually. Even importing manually does not work 
> smoothly coz after hitting dot, records do not show up but other classes do. 
> There is no choice but to type it in explicitly.
> Steps to reproduce:
>  # Create a record in a package, e.g. `records.Person.java`.
>  # Create main class in another package, e.g. `app.PersonApp.java`.
>  # In `PersonApp`, type in `var person = new Person();`. Using content 
> assist/auto-suggestion does not display Person.
>  # Manually type: `import records.` and using content assist does not display 
> Person. Other classes, if any, do display, though. So, instead of relying on 
> suggestion, just type it explicitly: `import records.Person;`.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Created] (NETBEANS-4063) Application Hang

2020-03-24 Thread Jim Stack (Jira)
Jim Stack created NETBEANS-4063:
---

 Summary: Application Hang
 Key: NETBEANS-4063
 URL: https://issues.apache.org/jira/browse/NETBEANS-4063
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.3
 Environment: Windows 10 x64
Laptop connected to two external monitors via Targus DisplayLink dock
Reporter: Jim Stack
 Attachments: IDE.log, UI.log

I left NetBeans open overnight after completing my work. My power settings are 
set to turn off screens after 10 minutes of inactivity but to never go to 
sleep. When I sat down to resume work in the morning, my NetBeans windows were 
unresponsive. I had three windows open across two monitors. UI and IDE logs are 
attached. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Commented] (NETBEANS-4063) Application Hang

2020-03-24 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4063:
-

Well, NetBeans needs a rest too, sometimes, you know. :-)

> Application Hang
> 
>
> Key: NETBEANS-4063
> URL: https://issues.apache.org/jira/browse/NETBEANS-4063
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
> Environment: Windows 10 x64
> Laptop connected to two external monitors via Targus DisplayLink dock
>Reporter: Jim Stack
>Priority: Major
> Attachments: IDE.log, UI.log
>
>
> I left NetBeans open overnight after completing my work. My power settings 
> are set to turn off screens after 10 minutes of inactivity but to never go to 
> sleep. When I sat down to resume work in the morning, my NetBeans windows 
> were unresponsive. I had three windows open across two monitors. UI and IDE 
> logs are attached. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Updated] (NETBEANS-4063) Application Hang

2020-03-24 Thread Jim Stack (Jira)


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

Jim Stack updated NETBEANS-4063:

Attachment: image-2020-03-24-09-17-55-321.png

> Application Hang
> 
>
> Key: NETBEANS-4063
> URL: https://issues.apache.org/jira/browse/NETBEANS-4063
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
> Environment: Windows 10 x64
> Laptop connected to two external monitors via Targus DisplayLink dock
>Reporter: Jim Stack
>Priority: Major
> Attachments: IDE.log, UI.log, image-2020-03-24-09-17-55-321.png
>
>
> I left NetBeans open overnight after completing my work. My power settings 
> are set to turn off screens after 10 minutes of inactivity but to never go to 
> sleep. When I sat down to resume work in the morning, my NetBeans windows 
> were unresponsive. I had three windows open across two monitors. UI and IDE 
> logs are attached. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Commented] (NETBEANS-4063) Application Hang

2020-03-24 Thread Jim Stack (Jira)


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

Jim Stack commented on NETBEANS-4063:
-

HAHA. Don't we all! :)

> Application Hang
> 
>
> Key: NETBEANS-4063
> URL: https://issues.apache.org/jira/browse/NETBEANS-4063
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.3
> Environment: Windows 10 x64
> Laptop connected to two external monitors via Targus DisplayLink dock
>Reporter: Jim Stack
>Priority: Major
> Attachments: IDE.log, UI.log, image-2020-03-24-09-17-55-321.png
>
>
> I left NetBeans open overnight after completing my work. My power settings 
> are set to turn off screens after 10 minutes of inactivity but to never go to 
> sleep. When I sat down to resume work in the morning, my NetBeans windows 
> were unresponsive. I had three windows open across two monitors. UI and IDE 
> logs are attached. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Updated] (NETBEANS-4043) NetBeans 11.3 opening project after clone

2020-03-24 Thread Mark Douglas Lepore (Jira)


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

Mark Douglas Lepore updated NETBEANS-4043:
--
Environment: Linux  (was: Linus)

> NetBeans 11.3 opening project after clone
> -
>
> Key: NETBEANS-4043
> URL: https://issues.apache.org/jira/browse/NETBEANS-4043
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems
>Affects Versions: 11.3
> Environment: Linux
>Reporter: Mark Douglas Lepore
>Priority: Major
> Attachments: NetBeans_Exception_Error.docx, NetBeans_IDE_log.docx, 
> NetBeans_UI_log.docx
>
>
> I am using JDK 1.8.0_241 and Apache NetBeans IDE 11.3. I attempting to clone 
> a project. The project is copied to the destination directory; however, the 
> project does not show up in NetBeans. An unexpected exception is given.
>  
> Attached are the UI Log and the IDE Log related to this issue.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Created] (NETBEANS-4064) error when I run a specific class in java

2020-03-24 Thread Jira
Κωνσταντίνος Κυριάκος Μπάτσιος created NETBEANS-4064:


 Summary: error when I run a specific class in java
 Key: NETBEANS-4064
 URL: https://issues.apache.org/jira/browse/NETBEANS-4064
 Project: NetBeans
  Issue Type: Task
 Environment: IDE NETBEANS 11.2
Reporter: Κωνσταντίνος Κυριάκος Μπάτσιος


when it says: "Error: Could not find or load main class MAIN", what should I do 
to fix it



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[netbeans] branch master updated: get better list for mavencoordinates

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo 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 f350c37  get better list for mavencoordinates
 new e0a7250  Merge pull request #2043 from ebarboni/externalupdate
f350c37 is described below

commit f350c3739218b223fe6ce6b178e05c020b30cbdd
Author: Eric Barboni 
AuthorDate: Sun Mar 22 21:43:39 2020 +0100

get better list for mavencoordinates
---
 java/maven.embedder/build.xml  |  16 +-
 java/maven.embedder/external/binariesembedded-list |  60 +
 .../nbbuild/extlibs/CheckEmbeddedBinaries.java | 254 +
 .../netbeans/nbbuild/extlibs/DownloadBinaries.java |  18 --
 nbbuild/build.xml  |  24 +-
 5 files changed, 351 insertions(+), 21 deletions(-)

diff --git a/java/maven.embedder/build.xml b/java/maven.embedder/build.xml
index 2b8e15b..81572d5 100644
--- a/java/maven.embedder/build.xml
+++ b/java/maven.embedder/build.xml
@@ -27,5 +27,19 @@
 
 
 
-
+
+
+
+
+
+
+
+
+
+
+
+
+
 
diff --git a/java/maven.embedder/external/binariesembedded-list 
b/java/maven.embedder/external/binariesembedded-list
new file mode 100644
index 000..943fd47
--- /dev/null
+++ b/java/maven.embedder/external/binariesembedded-list
@@ -0,0 +1,60 @@
+# 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.
+
+44C453F60909DFC223552ACE63E05C694215156B;javax.enterprise:cdi-api:1.0
+C51C00206BB913CD8612B24ABD9FA98AE89719B1;commons-cli:commons-cli:1.4
+2852E6E05FBB95076FC091F6D1780F1F8FE35E0F;commons-io:commons-io:2.5
+6505A72A097D9270F7A9E7BF42C4238283247755;org.apache.commons:commons-lang3:3.8.1
+BDAAB946CA5AD20253502D873BA0C3313D141036;com.google.guava:guava:25.1-android
+41E5AB52EC65E60B6C0CED947BECF7BA96402645;com.google.inject:guice:4.2.1:no_aop
+E90CAA31C9B8D748359450D7487F76B05549AE65;org.fusesource.jansi:jansi:1.17.1
+6975DA39A7040257BD51D21A231B76C915872D38;javax.inject:javax.inject:1
+D6DCA1EC36F28ECF286241DEADC790C2D4C8EAA0;org.slf4j:jcl-over-slf4j:1.7.29
+55819A28FC834C2F2BCF4DCDB278524DC3CF088F;org.jsoup:jsoup:1.12.1
+5025422767732A1AB45D93ABFEA846513D742DCF;javax.annotation:jsr250-api:1.0
+F8FF8032903882376E8D000C51E3E16D20FC7DF7;org.apache.maven:maven-artifact:3.6.3
+E9A37AF390009A525D8FAA6B18BD682123F85F9E;org.apache.maven:maven-builder-support:3.6.3
+2A8242398EFBFD533FFE36147864C34A32DA;org.apache.maven:maven-compat:3.6.3
+ECA800AA73E750EC9A880EB224F0BB68F5B7873B;org.apache.maven:maven-core:3.6.3
+CC8DF86676BCB37F68D2CEAF05DF8EF6FB11D873;org.apache.maven:maven-embedder:3.6.3
+61C7848DCE2FBF7F7AB0FDC8E8A7CC9DA5DD7827;org.apache.maven:maven-model:3.6.3
+4EF1D56F53D3E0A9003B7CC82C89AF9878321E82;org.apache.maven:maven-model-builder:3.6.3
+063FE5967B9C4C1B6FA6004BE76E1C939E8BD1D6;org.apache.maven:maven-plugin-api:3.6.3
+14D28071C85E76B656C46C465DB91D394D6F48F0;org.apache.maven:maven-repository-metadata:3.6.3
+CEEE6B7EA1BC252AFA585FA32F76C2CDA206BDCD;org.apache.maven.resolver:maven-resolver-api:1.4.1
+C213352D609D576641AED35172157D46CD2003D4;org.apache.maven.resolver:maven-resolver-connector-basic:1.4.1
+1658CFA27978C5949C3A92086514A22CA85394E4;org.apache.maven.resolver:maven-resolver-impl:1.4.1
+115240B65C1D0E9745CB2012B977AFC3D1795F94;org.apache.maven:maven-resolver-provider:3.6.3
+905A024FF050E804A8A4DF5363CC7D153438;org.apache.maven.resolver:maven-resolver-spi:1.4.1
+F3268F4EE92227AB98B7BE0AC5122DAA2ED97E35;org.apache.maven.resolver:maven-resolver-transport-wagon:1.4.1
+3F6D4F4BC3E24B46A776B47CCFEAED9D2ED01549;org.apache.maven.resolver:maven-resolver-util:1.4.1
+BBF4E06DCDB0BB33D1546C080DF5C8D92B535D30;org.apache.maven:maven-settings:3.6.3
+756D46810B8CC7B2B98585CCC787854CDFDE7FD9;org.apache.maven:maven-settings-builder:3.6.3
+08DD4DFB1D2D8B6969F6462790F82670BCD35CE2;org.apache.maven.shared:maven-shared-utils:3.2.1
+DE3B6CF15C2974250AE88820AB6C210FD8F38ED3;org.apache.maven:maven-slf4j-provider:3.6.3
+FC3BE144183F54DC6F5C55E34462C1C2D89D7D96;org.eclipse.si

[netbeans] branch master updated (e0a7250 -> 16c89bd)

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


from e0a7250  Merge pull request #2043 from ebarboni/externalupdate
 new 33e4c27  Update groovy support to use 2.5.10
 new c06160e  Enable groovy tests to be run on Java 8, 11 and 14 on travis
 new 16c89bd  Merge pull request #2042 from svenreimers/issue/NETBEANS-4051

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


Summary of changes:
 .travis.yml| 40 +-
 ...groovy.testCompletionNoPrefixString1.completion |  1 +
 ...groovy.testCompletionNoPrefixString2.completion |  1 +
 testSpreadOperator1_stringArray_all.completion |  1 +
 groovy/libs.groovy/external/binaries-list  |  4 +--
 ...2.5.9-license.txt => groovy-2.5.10-license.txt} |  4 +--
 ...y-2.5.9-notice.txt => groovy-2.5.10-notice.txt} |  0
 groovy/libs.groovy/nbproject/project.properties|  4 +--
 groovy/libs.groovy/nbproject/project.xml   |  4 +--
 .../netbeans/modules/libs/groovy/Bundle.properties |  4 +--
 .../netbeans/modules/libs/groovy/groovy-all.xml|  4 +--
 11 files changed, 54 insertions(+), 13 deletions(-)
 rename groovy/libs.groovy/external/{groovy-2.5.9-license.txt => 
groovy-2.5.10-license.txt} (99%)
 rename groovy/libs.groovy/external/{groovy-2.5.9-notice.txt => 
groovy-2.5.10-notice.txt} (100%)


-
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 (16c89bd -> 2f0df29)

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


from 16c89bd  Merge pull request #2042 from svenreimers/issue/NETBEANS-4051
 new 880383b  Remove unnecessary case and simplify formatting
 new 051a5af  JUnitVersion shall not be stored as a static field
 new 153497c  Allow explicit selection of JUnit4 test generator
 new 2f0df29  Merge pull request #2038 from jtulach/SelectJUnit

The 3797 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:
 .../gsf/testrunner/ui/CommonTestsCfgOfCreate.java  |   2 +-
 ide/gsf.testrunner/manifest.mf |   2 +-
 .../org-netbeans-modules-gsf-testrunner.sig|   2 -
 .../testrunner/TestCreatorProviderProcessor.java   |   3 +
 .../gsf/testrunner/api/TestCreatorProvider.java|   4 +
 .../ui/JavaTestCreatorConfiguration.java   |   5 +-
 java/junit.ui/nbproject/project.xml|   4 +-
 java => AbstractJUnitTestCreatorProvider.java} |  32 +-
 .../junit/ui/JUnit4TestCreatorProvider.java}   |  17 +-
 .../modules/junit/ui/JUnitTestCreatorProvider.java | 352 +
 java/junit/manifest.mf |   2 +-
 .../modules/junit/AbstractTestGenerator.java   |   1 +
 .../org/netbeans/modules/junit/DefaultPlugin.java  |  93 +++---
 .../modules/junit/JUnit3TestGenerator.java |   1 +
 .../modules/junit/JUnit4TestGenerator.java |   1 +
 .../modules/junit/JUnit5TestGenerator.java |   1 +
 .../org/netbeans/modules/junit/TestCreator.java|   1 +
 .../netbeans/modules/junit/api/JUnitSettings.java  |   1 -
 .../netbeans/modules/junit/api/JUnitTestUtil.java  |  16 +-
 .../org/netbeans/modules/junit/api/JUnitUtils.java |   2 +-
 .../modules/junit/{ => api}/JUnitVersion.java  |   7 +-
 .../ui/actions/TestNGTestCreatorProvider.java  |   2 +-
 22 files changed, 115 insertions(+), 436 deletions(-)
 copy 
java/junit.ui/src/org/netbeans/modules/junit/ui/{JUnitTestCreatorProvider.java 
=> AbstractJUnitTestCreatorProvider.java} (94%)
 copy java/{junit/src/org/netbeans/modules/junit/JUnitVersion.java => 
junit.ui/src/org/netbeans/modules/junit/ui/JUnit4TestCreatorProvider.java} (61%)
 rename java/junit/src/org/netbeans/modules/junit/{ => api}/JUnitVersion.java 
(89%)


-
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-jenkins-lib] branch master updated: Update asfMainNetBeansBuild.groovy

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 87d2fda  Update asfMainNetBeansBuild.groovy
87d2fda is described below

commit 87d2fda9483395d97e2be416ea64672870981937
Author: Eric Barboni 
AuthorDate: Tue Mar 24 18:33:29 2020 +0100

Update asfMainNetBeansBuild.groovy

update build with target for maven coordinate
---
 vars/asfMainNetBeansBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index 9542f5b..d003282 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -135,7 +135,7 @@ def call(Map params = [:]) {
 stage ('build javadoc') {
 steps {
 withAnt(installation: tooling.myAnt) { 
   
-sh "ant download-all-extbins"
+sh "ant getallmavencoordinates"
 sh "ant build-nbms"
 sh "ant build-source-zips"
 sh "ant build-javadoc 
-Djavadoc.web.zip=${env.WORKSPACE}/WEBZIP.zip"
@@ -348,7 +348,7 @@ def doParallelClusters(cconfigs) {
 
 def localRepo = ".repository"
 def netbeansbase = 
"build-${clustername}-temp/nbbuild"
-sh "ant -f build-${clustername}-temp/build.xml 
download-all-extbins"
+sh "ant -f build-${clustername}-temp/build.xml 
getallmavencoordinates"
 
 
withMaven(maven:tooling.myMaven,jdk:tooling.jdktool,publisherStrategy: 
'EXPLICIT',mavenLocalRepo: localRepo,options:[artifactsPublisher(disabled: 
true)])
 {


-
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-4065) Upacking "central" index brings my laptop to halt

2020-03-24 Thread Tamas Cserveny (Jira)
Tamas Cserveny created NETBEANS-4065:


 Summary: Upacking "central" index brings my laptop to halt 
 Key: NETBEANS-4065
 URL: https://issues.apache.org/jira/browse/NETBEANS-4065
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 11.3
Reporter: Tamas Cserveny


As previously reported in old bugtracker:

[https://bz.apache.org/netbeans/show_bug.cgi?id=239915]

Indexing of "central" repository finishes only after taking up 40Gb and hours 
later.

I don't think that this kind of hardware requirement is justified. 

One option would be to include remote searching as this plugin already 
implemented it for 8.2:  

[https://bitbucket.org/emilianbold/maven.search.remote/src/default/]

This would improve user experience tremendously.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[netbeans] branch release120 updated (96c12bc -> e47e1f7)

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


from 96c12bc  Merge pull request #2022 from 
apache/revert-2020-nb3986_create_class_on_paste
 add 3e4fe38  Hide the new SVG Loader module from the 'Plugins' list in NB 
platform applications.
 add ff8f8c5  NETBEANS-3738 better check of null case
 add a92c1ab  NETBEANS-4028 NETBEANS-3738 better check of null case
 add 72d7606  [NETBEANS-3428] Update FlatLaf from 0.26 to 0.28
 add 1de7b63  Merge pull request #2024 from DevCharly/flatlaf-0.28
 add b39e15e  [NETBEANS-3942] FlatLaf: fix editor annotations when 
switching LaF and switching color profile too on restart
 add 3d1f417  [NETBEANS-3957] fixed "opened documents list" show HTML code 
instead of rich text
 add a875668  Merge pull request #2035 from DevCharly/NETBEANS-3957
 add 203768d  [NETBEANS-3879] FlatLaf: fix Ctrl+PAGE_UP and Ctrl+PAGE_DOWN
 add 5c8e808  Merge pull request #2027 from 
DevCharly/flatlaf-ctrl-page-up-down
 add f3965ca  [NETBEANS-3941] FlatLaf: fixed text color of additional 
columns in "Search Results" view when using FlatLaf dark
 add 3256a04  Merge pull request #2033 from DevCharly/flatlaf-search-results
 add f350c37  get better list for mavencoordinates
 add e0a7250  Merge pull request #2043 from ebarboni/externalupdate
 add 33e4c27  Update groovy support to use 2.5.10
 add c06160e  Enable groovy tests to be run on Java 8, 11 and 14 on travis
 add 16c89bd  Merge pull request #2042 from svenreimers/issue/NETBEANS-4051
 add 880383b  Remove unnecessary case and simplify formatting
 add 051a5af  JUnitVersion shall not be stored as a static field
 add 153497c  Allow explicit selection of JUnit4 test generator
 add 2f0df29  Merge pull request #2038 from jtulach/SelectJUnit
 add 9047d26  Adding full support for Wildfly 17, 18 Fixing issue with 
missing JavaEE 8 web profile Removing external downloads and updating schemas 
Updating licenseinfo.xml
 add d3ed4a2  Merge pull request #2000 from ehsavoie/wildfly-master
 new e47e1f7  Sync master to release 12.0 beta2

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


Summary of changes:
 .travis.yml|   40 +-
 contrib/javaee.wildfly/build.xml   |4 -
 contrib/javaee.wildfly/external/binaries-list  |   19 -
 .../external/ironjacamar-license.txt   |  510 --
 .../external/javaee-wildfly-jboss-license.txt  |  509 --
 contrib/javaee.wildfly/licenseinfo.xml |   34 +-
 contrib/javaee.wildfly/manifest.mf |2 +-
 .../javaee.wildfly/nbproject/project.properties|3 +-
 .../javaee/wildfly/WildflyDeploymentManager.java   |3 +-
 .../wildfly/config/CarDeploymentConfiguration.java |9 +-
 .../javaee/wildfly/config/ds/gen/package-info.java |2 +-
 .../javaee/wildfly/config/gen/package-info.java|   12 +-
 .../wildfly/config/gen/wf10/package-info.java  |4 +-
 .../config/mdb/MessageDestinationSupportImpl.java  |   90 +-
 .../mdb/wf10/MessageDestinationSupportImpl.java|   10 +-
 .../wildfly/ide/WildflyJ2eePlatformFactory.java|8 +
 .../javaee/wildfly/ide/commands/WildflyClient.java |   78 +-
 .../wildfly/ide/commands/WildflyManagementAPI.java |   11 +-
 .../javaee/wildfly/ide/ui/WildflyPluginUtils.java  |   18 +
 .../modules/javaee/wildfly/nodes/Bundle.properties |2 +
 .../wildfly/nodes/WildflyDatasourceNode.java   |2 +-
 .../wildfly/nodes/WildflyDestinationNode.java  |   31 +-
 .../wildfly/nodes/WildflyRegistryNodeFactory.java  |1 +
 .../wildfly/nodes/WildflyResourcesItemNode.java|2 +-
 .../wildfly/resources/application-client_7.xsd |  331 
 .../{datasources_1_1.xsd => datasources_1_4_1.xsd} |  125 +-
 .../resources/{javaee_7.xsd => javaee_8.xsd}   |  684 
 .../wildfly/resources/javaee_web_services_1_3.xsd  |  575 ---
 .../javaee/wildfly/resources/jboss-app_4_0_1.dtd   |  160 ++
 .../jboss-as-messaging-deployment_1_0_1.xsd|  118 ++
 .../wildfly/resources/jboss-client_4_0_1.dtd   |  142 ++
 .../wildfly/resources/jboss-common_6_0_1.xsd   |  587 +++
 .../javaee/wildfly/resources/jboss-common_8_1.xsd  |  574 +++
 .../wildfly/resources/jboss-service_4_0_1.dtd  |  301 
 .../javaee/wildfly/resources/jboss-web_14_1.xsd|  524 ++
 .../javaee/wildfly/resources/jboss-web_4_0_1.dtd   |  469 ++
 .../javaee/wildfly/resources/jboss-web_7_3_1.xsd   |  850 ++
 .../javaee/wildfly/resources/jboss_4_0_1.dtd   | 1735 
 .../modules/javaee/wildfly/resources/jsp_2_2.xsd   |  392 -
 .../resources/{web-app_

[netbeans] 01/01: Sync master to release 12.0 beta2

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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

commit e47e1f7e8ab746020425adcbf05d810fb99540bb
Merge: 96c12bc d3ed4a2
Author: Eric Barboni 
AuthorDate: Tue Mar 24 23:21:31 2020 +0100

Sync master to release 12.0 beta2

Sync master to release 12.0 beta2

 .travis.yml|   40 +-
 contrib/javaee.wildfly/build.xml   |4 -
 contrib/javaee.wildfly/external/binaries-list  |   19 -
 .../external/ironjacamar-license.txt   |  510 --
 .../external/javaee-wildfly-jboss-license.txt  |  509 --
 contrib/javaee.wildfly/licenseinfo.xml |   34 +-
 contrib/javaee.wildfly/manifest.mf |2 +-
 .../javaee.wildfly/nbproject/project.properties|3 +-
 .../javaee/wildfly/WildflyDeploymentManager.java   |3 +-
 .../wildfly/config/CarDeploymentConfiguration.java |9 +-
 .../javaee/wildfly/config/ds/gen/package-info.java |2 +-
 .../javaee/wildfly/config/gen/package-info.java|   12 +-
 .../wildfly/config/gen/wf10/package-info.java  |4 +-
 .../config/mdb/MessageDestinationSupportImpl.java  |   90 +-
 .../mdb/wf10/MessageDestinationSupportImpl.java|   10 +-
 .../wildfly/ide/WildflyJ2eePlatformFactory.java|8 +
 .../javaee/wildfly/ide/commands/WildflyClient.java |   78 +-
 .../wildfly/ide/commands/WildflyManagementAPI.java |   11 +-
 .../javaee/wildfly/ide/ui/WildflyPluginUtils.java  |   18 +
 .../modules/javaee/wildfly/nodes/Bundle.properties |2 +
 .../wildfly/nodes/WildflyDatasourceNode.java   |2 +-
 .../wildfly/nodes/WildflyDestinationNode.java  |   31 +-
 .../wildfly/nodes/WildflyRegistryNodeFactory.java  |1 +
 .../wildfly/nodes/WildflyResourcesItemNode.java|2 +-
 .../wildfly/resources/application-client_7.xsd |  331 
 .../{datasources_1_1.xsd => datasources_1_4_1.xsd} |  125 +-
 .../resources/{javaee_7.xsd => javaee_8.xsd}   |  684 
 .../wildfly/resources/javaee_web_services_1_3.xsd  |  575 ---
 .../javaee/wildfly/resources/jboss-app_4_0_1.dtd   |  160 ++
 .../jboss-as-messaging-deployment_1_0_1.xsd|  118 ++
 .../wildfly/resources/jboss-client_4_0_1.dtd   |  142 ++
 .../wildfly/resources/jboss-common_6_0_1.xsd   |  587 +++
 .../javaee/wildfly/resources/jboss-common_8_1.xsd  |  574 +++
 .../wildfly/resources/jboss-service_4_0_1.dtd  |  301 
 .../javaee/wildfly/resources/jboss-web_14_1.xsd|  524 ++
 .../javaee/wildfly/resources/jboss-web_4_0_1.dtd   |  469 ++
 .../javaee/wildfly/resources/jboss-web_7_3_1.xsd   |  850 ++
 .../javaee/wildfly/resources/jboss_4_0_1.dtd   | 1735 
 .../modules/javaee/wildfly/resources/jsp_2_2.xsd   |  392 -
 .../resources/{web-app_3_1.xsd => web-app_4_0.xsd} |  123 +-
 .../{web-fragment_3_1.xsd => web-fragment_4_0.xsd} |   82 +-
 ...wildfly-messaging-activemq-deployment_1_0_1.xsd |  120 ++
 .../modules/javaee/wildfly/resources/wildfly.png   |  Bin 564 -> 891 bytes
 .../qa-functional/data/JBoss4WebTest/build.xml |   15 +-
 .../data/JBoss4WebTest/nbproject/build-impl.xml| 1360 ---
 .../JBoss4WebTest/nbproject/genfiles.properties|   12 +-
 .../JBoss4WebTest/nbproject/project.properties |   19 +-
 .../src/org/netbeans/test/javaee/lib/Util.java |   22 +-
 ...groovy.testCompletionNoPrefixString1.completion |1 +
 ...groovy.testCompletionNoPrefixString2.completion |1 +
 testSpreadOperator1_stringArray_all.completion |1 +
 groovy/libs.groovy/external/binaries-list  |4 +-
 ...2.5.9-license.txt => groovy-2.5.10-license.txt} |4 +-
 ...y-2.5.9-notice.txt => groovy-2.5.10-notice.txt} |0
 groovy/libs.groovy/nbproject/project.properties|4 +-
 groovy/libs.groovy/nbproject/project.xml   |4 +-
 .../netbeans/modules/libs/groovy/Bundle.properties |4 +-
 .../netbeans/modules/libs/groovy/groovy-all.xml|4 +-
 .../gsf/testrunner/ui/CommonTestsCfgOfCreate.java  |2 +-
 ide/gsf.testrunner/manifest.mf |2 +-
 .../org-netbeans-modules-gsf-testrunner.sig|2 -
 .../testrunner/TestCreatorProviderProcessor.java   |3 +
 .../gsf/testrunner/api/TestCreatorProvider.java|4 +
 .../ui/JavaTestCreatorConfiguration.java   |5 +-
 java/junit.ui/nbproject/project.xml|4 +-
 java => AbstractJUnitTestCreatorProvider.java} |   32 +-
 .../junit/ui/JUnit4TestCreatorProvider.java}   |   17 +-
 .../modules/junit/ui/JUnitTestCreatorProvider.java |  352 +---
 java/junit/manifest.mf |2 +-
 .../modules/junit/AbstractTestGenerator.java   |1 +
 .../org/netbeans/modules/junit/DefaultPlugin.java  |   93 +-
 .../modules/junit/JUnit3TestGenerator.java |1 +
 .../modules/junit/JUnit4TestGenerator.java |1

[netbeans] annotated tag 12.0-beta2 updated (e47e1f7 -> cc6fae6)

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to annotated tag 12.0-beta2
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


*** WARNING: tag 12.0-beta2 was modified! ***

from e47e1f7  (commit)
  to cc6fae6  (tag)
 tagging e47e1f7e8ab746020425adcbf05d810fb99540bb (commit)
 replaces 12.0-beta1
  by Eric Barboni
  on Tue Mar 24 23:24:00 2020 +0100

- Log -
Apache NetBeans 12.0-beta2
---


No new revisions were added by this update.

Summary of changes:


-
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-jenkins-lib] branch master updated: 12.0 beta 2

2020-03-24 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new e9d8d06  12.0 beta 2
e9d8d06 is described below

commit e9d8d069a01b748d723ff25c91c39d5974abaf87
Author: Eric Barboni 
AuthorDate: Tue Mar 24 23:26:05 2020 +0100

12.0 beta 2
---
 meta/netbeansrelease.json | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta/netbeansrelease.json b/meta/netbeansrelease.json
index 5aac669..8f7d50d 100644
--- a/meta/netbeansrelease.json
+++ b/meta/netbeansrelease.json
@@ -220,7 +220,11 @@
 "96c12bc480bb621f05e40978fced87f99768873f": {
 "version": "beta1",
 "position": "1"
-}
+},
+"e47e1f7e8ab746020425adcbf05d810fb99540bb": {
+"version": "beta2",
+"position": "2"
+}
 },
 "releasedate": {
 "day": "-",


-
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-4066) Inaccurate text measurement in editor tabs on HiDPI displays on Windows

2020-03-24 Thread Eirik Bakke (Jira)
Eirik Bakke created NETBEANS-4066:
-

 Summary: Inaccurate text measurement in editor tabs on HiDPI 
displays on Windows
 Key: NETBEANS-4066
 URL: https://issues.apache.org/jira/browse/NETBEANS-4066
 Project: NetBeans
  Issue Type: Improvement
  Components: platform - Other
Affects Versions: 11.3
 Environment: Windows 10 with HiDPI scaling enabled (e.g. 150% or 
200%--not necessarily fractional scalings only)
Reporter: Eirik Bakke
 Attachments: Inaccurate tab text mesaurement.png

Having fixed NETBEANS-2543, I see there is a similar issue in the NetBeans tab 
component, e.g. in the editor tabs. On Windows 10, with HiDPI scaling enabled 
on either 150% or 200% (for example), a tab title 
"AaaiA" will overshoot its 
allocated space.

Presumably this is another case where text measurement is done on a 
FontRenderContext that hasn't properly had the appropriate monitor's HiDPI 
scaling applied.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Updated] (NETBEANS-4066) Inaccurate text measurement in editor tabs on HiDPI displays on Windows

2020-03-24 Thread Eirik Bakke (Jira)


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

Eirik Bakke updated NETBEANS-4066:
--
Description: 
Having fixed NETBEANS-2543, I see there is a similar issue in the NetBeans tab 
component, e.g. in the editor tabs. On Windows 10, with HiDPI scaling enabled 
on either 150% or 200% (for example), a tab title 
"AaaiA" will overshoot its 
allocated space. See the attached screenshot.

Presumably this is another case where text measurement is done on a 
FontRenderContext that hasn't properly had the appropriate monitor's HiDPI 
scaling applied.

  was:
Having fixed NETBEANS-2543, I see there is a similar issue in the NetBeans tab 
component, e.g. in the editor tabs. On Windows 10, with HiDPI scaling enabled 
on either 150% or 200% (for example), a tab title 
"AaaiA" will overshoot its 
allocated space.

Presumably this is another case where text measurement is done on a 
FontRenderContext that hasn't properly had the appropriate monitor's HiDPI 
scaling applied.


> Inaccurate text measurement in editor tabs on HiDPI displays on Windows
> ---
>
> Key: NETBEANS-4066
> URL: https://issues.apache.org/jira/browse/NETBEANS-4066
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.3
> Environment: Windows 10 with HiDPI scaling enabled (e.g. 150% or 
> 200%--not necessarily fractional scalings only)
>Reporter: Eirik Bakke
>Priority: Minor
>  Labels: HiDPI
> Attachments: Inaccurate tab text mesaurement.png
>
>
> Having fixed NETBEANS-2543, I see there is a similar issue in the NetBeans 
> tab component, e.g. in the editor tabs. On Windows 10, with HiDPI scaling 
> enabled on either 150% or 200% (for example), a tab title 
> "AaaiA" will overshoot its 
> allocated space. See the attached screenshot.
> Presumably this is another case where text measurement is done on a 
> FontRenderContext that hasn't properly had the appropriate monitor's HiDPI 
> scaling applied.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Commented] (NETBEANS-3699) Netbeans not properly working in multiple HiDpi screens

2020-03-24 Thread Eirik Bakke (Jira)


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

Eirik Bakke commented on NETBEANS-3699:
---

Inaccurate text measurement in tab titles is now tracked separately in 
NETBEANS-4066.

> Netbeans not properly working in multiple HiDpi screens
> ---
>
> Key: NETBEANS-3699
> URL: https://issues.apache.org/jira/browse/NETBEANS-3699
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2
> 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; Cp1252; en_US (nb)
>Reporter: Sammy
>Priority: Major
>  Labels: HiDPI
> Fix For: 11.3
>
> Attachments: image-2020-01-15-13-40-19-726.png, 
> image-2020-01-15-13-40-50-746.png, image-2020-01-15-13-43-39-587.png
>
>
> !image-2020-01-15-13-40-19-726.png!
> Netbeans doesn't seem to handle per-monitor dpi scaling properly. You can see 
> the icon pixelated and the tab bar text is cut off. I'm running 3 monitors, 
> the main one on 125%, the other on 100% scaling. When I drag Netbeans to 
> Monitor 3 at 100% scaling it looks correct. But main one is wrong.
> !image-2020-01-15-13-40-50-746.png!
>  
>  
> I have this setting enabled to ensure scaling is done based on main monitor:
>  
> !image-2020-01-15-13-43-39-587.png!
> this doesn't make a difference.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Commented] (NETBEANS-3680) Support raw-mode I/O for project execution from

2020-03-24 Thread Damien B (Jira)


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

Damien B commented on NETBEANS-3680:


Just some more months to wait and we can happily cheer for the 15th birthday of 
this ticket :)

> Support raw-mode I/O for project execution from 
> --
>
> Key: NETBEANS-3680
> URL: https://issues.apache.org/jira/browse/NETBEANS-3680
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 11.2
>Reporter: Stephen McCants
>Priority: Major
>
> Please add support for System.console() to the Output Window.
> This is a new vote for a very old ticket - 
> [https://netbeans.org/bugzilla/show_bug.cgi?id=68770] which didn't make it 
> from Bugzilla to JIRA, but is never-the-less relevant and often requested.
> Perhaps it is time to revisit this problem?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Created] (NETBEANS-4067) Signed commit fails silently

2020-03-24 Thread Anton Epple (Jira)
Anton Epple created NETBEANS-4067:
-

 Summary: Signed commit fails silently
 Key: NETBEANS-4067
 URL: https://issues.apache.org/jira/browse/NETBEANS-4067
 Project: NetBeans
  Issue Type: Bug
  Components: versioncontrol - Git
Affects Versions: 11.3
 Environment: Product Version: Apache NetBeans IDE 11.3
Java: 11.0.6; OpenJDK 64-Bit Server VM 11.0.6+9-jvmci-20.0-b02
Runtime: OpenJDK Runtime Environment 11.0.6+9-jvmci-20.0-b02
System: Mac OS X version 10.15.2 running on x86_64; UTF-8; de_DE (nb)
User directory: /Users/antonepple/Library/Application Support/NetBeans/11.3
Cache directory: /Users/antonepple/Library/Caches/NetBeans/11.3
Reporter: Anton Epple


I've configured git globally to sign my commits. Up to 11.2 commits from inside 
netbeans were unsigned. 

In 11.3 with the updated version the behaviour changed and commits fail 
silently. The IDE log shows this:
{quote}WARNING [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call 
progress on a task that was never started at 
org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)WARNING
 [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call progress on a 
task that was never started at 
org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)SEVERE
 [org.openide.util.RequestProcessor]: Error in RequestProcessor 
org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupportjava.lang.IllegalArgumentException:
 Invalid UTF-8 input at org.bouncycastle.util.Strings.fromUTF8ByteArray(Unknown 
Source) at org.bouncycastle.bcpg.UserIDPacket.getID(Unknown Source) at 
org.bouncycastle.openpgp.PGPPublicKey.getUserIDs(Unknown Source) at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findPublicKeyInPubring(BouncyCastleGpgKeyLocator.java:507)
 at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findSecretKey(BouncyCastleGpgKeyLocator.java:313)
 at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.locateSigningKey(BouncyCastleGpgSigner.java:124)
 at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.sign(BouncyCastleGpgSigner.java:133)
 at org.eclipse.jgit.api.CommitCommand.call(CommitCommand.java:271) at 
org.netbeans.libs.git.jgit.commands.CommitCommand.run(CommitCommand.java:138) 
at org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:57) at 
org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:54) at 
java.base/java.security.AccessController.doPrivileged(Native Method) at 
org.netbeans.libs.git.jgit.commands.GitCommand.execute(GitCommand.java:54) at 
org.netbeans.libs.git.GitClient.commit(GitClient.java:480) at 
org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:297) at 
org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:293) at 
org.netbeans.modules.git.client.GitClient$CommandInvoker$1$1.call(GitClient.java:933)
 at 
org.netbeans.modules.git.client.GitClient$CommandInvoker$1.call(GitClient.java:956)
 at 
org.netbeans.modules.git.FilesystemInterceptor.runWithoutExternalEvents(FilesystemInterceptor.java:473)
 at org.netbeans.modules.git.Git.runWithoutExternalEvents(Git.java:259) at 
org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethodIntern(GitClient.java:966)
 at 
org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethod(GitClient.java:893)
 at 
org.netbeans.modules.git.client.GitClient$CommandInvoker.access$300(GitClient.java:869)
 at org.netbeans.modules.git.client.GitClient.commit(GitClient.java:293) at 
org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.commit(CommitAction.java:342)
 at 
org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.perform(CommitAction.java:233)
 at 
org.netbeans.modules.git.client.GitProgressSupport.performIntern(GitProgressSupport.java:92)
 at 
org.netbeans.modules.git.client.GitProgressSupport.run(GitProgressSupport.java:85)
 at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) at 
org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)[catch] at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
{quote}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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



[jira] [Updated] (NETBEANS-4067) Signed commit fails silently

2020-03-24 Thread Anton Epple (Jira)


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

Anton Epple updated NETBEANS-4067:
--
Environment: 
Product Version: Apache NetBeans IDE 11.3
Java: 11.0.6; OpenJDK 64-Bit Server VM 11.0.6+9-jvmci-20.0-b02
Runtime: OpenJDK Runtime Environment 11.0.6+9-jvmci-20.0-b02
System: Mac OS X version 10.15.2 running on x86_64; UTF-8; de_DE (nb)
User directory: /Users/antonepple/Library/Application Support/NetBeans/11.3
Cache directory: /Users/antonepple/Library/Caches/NetBeans/11.3


Maybe related NETBEANS-3972

  was:
Product Version: Apache NetBeans IDE 11.3
Java: 11.0.6; OpenJDK 64-Bit Server VM 11.0.6+9-jvmci-20.0-b02
Runtime: OpenJDK Runtime Environment 11.0.6+9-jvmci-20.0-b02
System: Mac OS X version 10.15.2 running on x86_64; UTF-8; de_DE (nb)
User directory: /Users/antonepple/Library/Application Support/NetBeans/11.3
Cache directory: /Users/antonepple/Library/Caches/NetBeans/11.3


> Signed commit fails silently
> 
>
> Key: NETBEANS-4067
> URL: https://issues.apache.org/jira/browse/NETBEANS-4067
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3
> Java: 11.0.6; OpenJDK 64-Bit Server VM 11.0.6+9-jvmci-20.0-b02
> Runtime: OpenJDK Runtime Environment 11.0.6+9-jvmci-20.0-b02
> System: Mac OS X version 10.15.2 running on x86_64; UTF-8; de_DE (nb)
> User directory: /Users/antonepple/Library/Application Support/NetBeans/11.3
> Cache directory: /Users/antonepple/Library/Caches/NetBeans/11.3
> Maybe related NETBEANS-3972
>Reporter: Anton Epple
>Priority: Major
>
> I've configured git globally to sign my commits. Up to 11.2 commits from 
> inside netbeans were unsigned. 
> In 11.3 with the updated version the behaviour changed and commits fail 
> silently. The IDE log shows this:
> {quote}WARNING [org.netbeans.modules.progress.spi.InternalHandle]: Cannot 
> call progress on a task that was never started at 
> org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)WARNING
>  [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call progress on 
> a task that was never started at 
> org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)SEVERE
>  [org.openide.util.RequestProcessor]: Error in RequestProcessor 
> org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupportjava.lang.IllegalArgumentException:
>  Invalid UTF-8 input at 
> org.bouncycastle.util.Strings.fromUTF8ByteArray(Unknown Source) at 
> org.bouncycastle.bcpg.UserIDPacket.getID(Unknown Source) at 
> org.bouncycastle.openpgp.PGPPublicKey.getUserIDs(Unknown Source) at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findPublicKeyInPubring(BouncyCastleGpgKeyLocator.java:507)
>  at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findSecretKey(BouncyCastleGpgKeyLocator.java:313)
>  at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.locateSigningKey(BouncyCastleGpgSigner.java:124)
>  at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.sign(BouncyCastleGpgSigner.java:133)
>  at org.eclipse.jgit.api.CommitCommand.call(CommitCommand.java:271) at 
> org.netbeans.libs.git.jgit.commands.CommitCommand.run(CommitCommand.java:138) 
> at org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:57) 
> at org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:54) 
> at java.base/java.security.AccessController.doPrivileged(Native Method) at 
> org.netbeans.libs.git.jgit.commands.GitCommand.execute(GitCommand.java:54) at 
> org.netbeans.libs.git.GitClient.commit(GitClient.java:480) at 
> org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:297) at 
> org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:293) at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker$1$1.call(GitClient.java:933)
>  at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker$1.call(GitClient.java:956)
>  at 
> org.netbeans.modules.git.FilesystemInterceptor.runWithoutExternalEvents(FilesystemInterceptor.java:473)
>  at org.netbeans.modules.git.Git.runWithoutExternalEvents(Git.java:259) at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethodIntern(GitClient.java:966)
>  at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethod(GitClient.java:893)
>  at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker.access$300(GitClient.java:869)
>  at org.netbeans.modules.git.client.GitClient.commit(GitClient.java:293) at 
> org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.commit(CommitAction.java:342)
>  at 
> org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.perform(CommitAction.java:233)
>  at 
> o

[jira] [Commented] (NETBEANS-4067) Signed commit fails silently

2020-03-24 Thread Anton Epple (Jira)


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

Anton Epple commented on NETBEANS-4067:
---

Maybe related NETBEANS-3972

> Signed commit fails silently
> 
>
> Key: NETBEANS-4067
> URL: https://issues.apache.org/jira/browse/NETBEANS-4067
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3
> Java: 11.0.6; OpenJDK 64-Bit Server VM 11.0.6+9-jvmci-20.0-b02
> Runtime: OpenJDK Runtime Environment 11.0.6+9-jvmci-20.0-b02
> System: Mac OS X version 10.15.2 running on x86_64; UTF-8; de_DE (nb)
> User directory: /Users/antonepple/Library/Application Support/NetBeans/11.3
> Cache directory: /Users/antonepple/Library/Caches/NetBeans/11.3
> Maybe related NETBEANS-3972
>Reporter: Anton Epple
>Priority: Major
>
> I've configured git globally to sign my commits. Up to 11.2 commits from 
> inside netbeans were unsigned. 
> In 11.3 with the updated version the behaviour changed and commits fail 
> silently. The IDE log shows this:
> {quote}WARNING [org.netbeans.modules.progress.spi.InternalHandle]: Cannot 
> call progress on a task that was never started at 
> org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)WARNING
>  [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call progress on 
> a task that was never started at 
> org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)SEVERE
>  [org.openide.util.RequestProcessor]: Error in RequestProcessor 
> org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupportjava.lang.IllegalArgumentException:
>  Invalid UTF-8 input at 
> org.bouncycastle.util.Strings.fromUTF8ByteArray(Unknown Source) at 
> org.bouncycastle.bcpg.UserIDPacket.getID(Unknown Source) at 
> org.bouncycastle.openpgp.PGPPublicKey.getUserIDs(Unknown Source) at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findPublicKeyInPubring(BouncyCastleGpgKeyLocator.java:507)
>  at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findSecretKey(BouncyCastleGpgKeyLocator.java:313)
>  at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.locateSigningKey(BouncyCastleGpgSigner.java:124)
>  at 
> org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.sign(BouncyCastleGpgSigner.java:133)
>  at org.eclipse.jgit.api.CommitCommand.call(CommitCommand.java:271) at 
> org.netbeans.libs.git.jgit.commands.CommitCommand.run(CommitCommand.java:138) 
> at org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:57) 
> at org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:54) 
> at java.base/java.security.AccessController.doPrivileged(Native Method) at 
> org.netbeans.libs.git.jgit.commands.GitCommand.execute(GitCommand.java:54) at 
> org.netbeans.libs.git.GitClient.commit(GitClient.java:480) at 
> org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:297) at 
> org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:293) at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker$1$1.call(GitClient.java:933)
>  at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker$1.call(GitClient.java:956)
>  at 
> org.netbeans.modules.git.FilesystemInterceptor.runWithoutExternalEvents(FilesystemInterceptor.java:473)
>  at org.netbeans.modules.git.Git.runWithoutExternalEvents(Git.java:259) at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethodIntern(GitClient.java:966)
>  at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethod(GitClient.java:893)
>  at 
> org.netbeans.modules.git.client.GitClient$CommandInvoker.access$300(GitClient.java:869)
>  at org.netbeans.modules.git.client.GitClient.commit(GitClient.java:293) at 
> org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.commit(CommitAction.java:342)
>  at 
> org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.perform(CommitAction.java:233)
>  at 
> org.netbeans.modules.git.client.GitProgressSupport.performIntern(GitProgressSupport.java:92)
>  at 
> org.netbeans.modules.git.client.GitProgressSupport.run(GitProgressSupport.java:85)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) 
> at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)[catch] at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {quote}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

[jira] [Updated] (NETBEANS-4067) Signed commit fails silently

2020-03-24 Thread Anton Epple (Jira)


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

Anton Epple updated NETBEANS-4067:
--
Description: 
I've configured git globally to sign my commits. This works fine on 
commandline. Up to NB 11.2 commits from inside netbeans were unsigned. 

In 11.3 with the updated version the behaviour changed and commits fail 
silently. The IDE log shows this:
{quote}WARNING [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call 
progress on a task that was never started at 
org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)WARNING
 [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call progress on a 
task that was never started at 
org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)SEVERE
 [org.openide.util.RequestProcessor]: Error in RequestProcessor 
org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupportjava.lang.IllegalArgumentException:
 Invalid UTF-8 input at org.bouncycastle.util.Strings.fromUTF8ByteArray(Unknown 
Source) at org.bouncycastle.bcpg.UserIDPacket.getID(Unknown Source) at 
org.bouncycastle.openpgp.PGPPublicKey.getUserIDs(Unknown Source) at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findPublicKeyInPubring(BouncyCastleGpgKeyLocator.java:507)
 at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findSecretKey(BouncyCastleGpgKeyLocator.java:313)
 at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.locateSigningKey(BouncyCastleGpgSigner.java:124)
 at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgSigner.sign(BouncyCastleGpgSigner.java:133)
 at org.eclipse.jgit.api.CommitCommand.call(CommitCommand.java:271) at 
org.netbeans.libs.git.jgit.commands.CommitCommand.run(CommitCommand.java:138) 
at org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:57) at 
org.netbeans.libs.git.jgit.commands.GitCommand$1.run(GitCommand.java:54) at 
java.base/java.security.AccessController.doPrivileged(Native Method) at 
org.netbeans.libs.git.jgit.commands.GitCommand.execute(GitCommand.java:54) at 
org.netbeans.libs.git.GitClient.commit(GitClient.java:480) at 
org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:297) at 
org.netbeans.modules.git.client.GitClient$9.call(GitClient.java:293) at 
org.netbeans.modules.git.client.GitClient$CommandInvoker$1$1.call(GitClient.java:933)
 at 
org.netbeans.modules.git.client.GitClient$CommandInvoker$1.call(GitClient.java:956)
 at 
org.netbeans.modules.git.FilesystemInterceptor.runWithoutExternalEvents(FilesystemInterceptor.java:473)
 at org.netbeans.modules.git.Git.runWithoutExternalEvents(Git.java:259) at 
org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethodIntern(GitClient.java:966)
 at 
org.netbeans.modules.git.client.GitClient$CommandInvoker.runMethod(GitClient.java:893)
 at 
org.netbeans.modules.git.client.GitClient$CommandInvoker.access$300(GitClient.java:869)
 at org.netbeans.modules.git.client.GitClient.commit(GitClient.java:293) at 
org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.commit(CommitAction.java:342)
 at 
org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupport.perform(CommitAction.java:233)
 at 
org.netbeans.modules.git.client.GitProgressSupport.performIntern(GitProgressSupport.java:92)
 at 
org.netbeans.modules.git.client.GitProgressSupport.run(GitProgressSupport.java:85)
 at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) at 
org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)[catch] at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
{quote}

  was:
I've configured git globally to sign my commits. Up to 11.2 commits from inside 
netbeans were unsigned. 

In 11.3 with the updated version the behaviour changed and commits fail 
silently. The IDE log shows this:
{quote}WARNING [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call 
progress on a task that was never started at 
org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)WARNING
 [org.netbeans.modules.progress.spi.InternalHandle]: Cannot call progress on a 
task that was never started at 
org.netbeans.modules.git.client.GitProgressSupport.setProgressMessage(GitProgressSupport.java:258)SEVERE
 [org.openide.util.RequestProcessor]: Error in RequestProcessor 
org.netbeans.modules.git.ui.commit.CommitAction$CommitProgressSupportjava.lang.IllegalArgumentException:
 Invalid UTF-8 input at org.bouncycastle.util.Strings.fromUTF8ByteArray(Unknown 
Source) at org.bouncycastle.bcpg.UserIDPacket.getID(Unknown Source) at 
org.bouncycastle.openpgp.PGPPublicKey.getUserIDs(Unknown Source) at 
org.eclipse.jgit.lib.internal.BouncyCastleGpgKeyLocator.findPublicKeyInPubring(BouncyCastleGpgKeyLocator.ja