[jira] [Updated] (NETBEANS-4100) Update asm from 7.2 to 8.0

2020-04-01 Thread ASF GitHub Bot (Jira)


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

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

> Update asm from 7.2 to 8.0
> --
>
> Key: NETBEANS-4100
> URL: https://issues.apache.org/jira/browse/NETBEANS-4100
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 12.0, 11.3
>Reporter: Jose
>Assignee: Jose
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 12.1
>
>
> Notes:
>  - New V15 constant
>  - Experimental support for PermittedSubtypes and RecordComponent
>  - Bug fixes (317885): SKIP_DEBUG now skips MethodParameters attributes
>  - Java 14 support (RecordComponent)
>  - Bug fixes (317896): Performance degradation when using dynamic constants 
> as a static paramet to another InDy/ConDy
>  
> [ASM Web Page|https://asm.ow2.io/index.html]
>  [Release Notes|https://asm.ow2.io/versions.html]



--
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] [Closed] (NETBEANS-3908) Update asm from 7.2 to 7.3.1

2020-04-01 Thread Jose (Jira)


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

Jose closed NETBEANS-3908.
--
Resolution: Information Provided

Closed in favor of NETBEANS-4100

> Update asm from 7.2 to 7.3.1
> 
>
> Key: NETBEANS-3908
> URL: https://issues.apache.org/jira/browse/NETBEANS-3908
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Libraries
>Affects Versions: 12.0, 11.2, 11.3
>Reporter: Jose
>Assignee: Jose
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 12.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Notes:
> - New V15 constant
> - Experimental support for PermittedSubtypes and RecordComponent
> - Bug fixes (317885): SKIP_DEBUG now skips MethodParameters attributes
> [ASM Web Page|https://asm.ow2.io/index.html]
> [Release Notes|https://asm.ow2.io/versions.html]



--
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-4100) Update asm from 7.2 to 8.0

2020-04-01 Thread Jose (Jira)
Jose created NETBEANS-4100:
--

 Summary: Update asm from 7.2 to 8.0
 Key: NETBEANS-4100
 URL: https://issues.apache.org/jira/browse/NETBEANS-4100
 Project: NetBeans
  Issue Type: Improvement
Affects Versions: 12.0, 11.3
Reporter: Jose
Assignee: Jose
 Fix For: 12.1


Notes:
 - New V15 constant
 - Experimental support for PermittedSubtypes and RecordComponent
 - Bug fixes (317885): SKIP_DEBUG now skips MethodParameters attributes
 - Java 14 support (RecordComponent)
 - Bug fixes (317896): Performance degradation when using dynamic constants as 
a static paramet to another InDy/ConDy

 

[ASM Web Page|https://asm.ow2.io/index.html]
 [Release Notes|https://asm.ow2.io/versions.html]



--
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-4099) Console does not allow input with Scanner class / Gradle Project

2020-04-01 Thread Noah Avelar (Jira)


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

Noah Avelar updated NETBEANS-4099:
--
Description: 
When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not allow 
user input in the console like the scanner class should normally do. Here is a 
link to a similar issue and it has not been resolved 
https://issues.apache.org/jira/browse/NETBEANS-3073

I get the following error. 

> Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> java.util.NoSuchElementException: No line found at 
> java.util.Scanner.nextLine(Scanner.java:1540) at 
> gradleproject1.Main.main(Main.java:23)
 FAILURE: Build failed with an exception.
 * What went wrong:Execution failed for task ':run'.> Process 'command 
'/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
finished with non-zero exit value 1
 * Try:Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.

 

I have tried with both Java SE Development Kit 11(LTS) and 8u241 on Netbeans 
11.0, 11.2 and the latest 11.3 Apache version and I still get the same error.

Here is some simple code below that works in Eclipse but not in Netbeans 
because of this issue. 



{code:java}
import java.util.Scanner;

/**
*
* @author noahavelar
*/
public class Main {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
Scanner input = new Scanner(System.in);
System.out.println("Enter your age");
int theNumber = Integer.parseInt(input.nextLine());

System.out.println(theNumber);

System.out.println("Enter your name");
String myName = input.nextLine();

System.out.println(myName);

 

}

}
{code}

  was:
When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not allow 
user input in the console like the scanner class should normally do. Here is a 
link to a similar issue and it has not been resolved 
https://issues.apache.org/jira/browse/NETBEANS-3073

I get the following error. 

> Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> java.util.NoSuchElementException: No line found at 
> java.util.Scanner.nextLine(Scanner.java:1540) at 
> gradleproject1.Main.main(Main.java:23)
 FAILURE: Build failed with an exception.
 * What went wrong:Execution failed for task ':run'.> Process 'command 
'/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
finished with non-zero exit value 1
 * Try:Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.

 

I have tried with both Java SE Development Kit 11(LTS) and 8u241 on Netbeans 
11.0, 11.2 and the latest 11.3 Apache version and I still get the same error.

Here is some simple code below that works in Eclipse but not in Netbeans 
because of this issue. 



import java.util.Scanner;

/**
 *
 * @author noahavelar
 */
public class Main {

/**
 * @param args the command line arguments
 */
 public static void main(String[] args) {
 // TODO code application logic here
 Scanner input = new Scanner(System.in);
 System.out.println("Enter your age");
 int theNumber = Integer.parseInt(input.nextLine());

System.out.println(theNumber);

System.out.println("Enter your name");
 String myName = input.nextLine();

System.out.println(myName);

 

}

}


> Console does not allow input with Scanner class / Gradle Project
> 
>
> Key: NETBEANS-4099
> URL: https://issues.apache.org/jira/browse/NETBEANS-4099
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0, 11.2, 11.3
> Environment: I've tried on both Macbook Pro with macOS Catalina and 
> Windows 10 and get the same issue even though the Netbeans IDE and Java SE 
> Development Kit are compatible. When I try the code on Eclipse, it works 
> perfect which shows that there is not an issue with the code, the issue is 
> with Netbeans. Must be some configuration not allowing input from the user in 
> a console.
>Reporter: Noah Avelar
>Priority: Major
>  Labels: Console, Java, Netbeans, Scanner, input
>   Original Estimate: 504h
>  Remaining Estimate: 504h
>
> When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not 
> allow user input in the console like the scanner class should normally do. 
> Here is a link to a similar issue and it has not been resolved 
> https://issues.apache.org/jira/browse/NETBEANS-3073
> I get the following error. 
> > Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> > java.util.NoSuchElementException: No line found at 
> > java.util.Scanner.nextLine(Scanner.java:1540) at 
> > 

[jira] [Updated] (NETBEANS-4099) Console does not allow input with Scanner class / Gradle Project

2020-04-01 Thread Noah Avelar (Jira)


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

Noah Avelar updated NETBEANS-4099:
--
Description: 
When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not allow 
user input in the console like the scanner class should normally do. Here is a 
link to a similar issue and it has not been resolved 
https://issues.apache.org/jira/browse/NETBEANS-3073

I get the following error. 

> Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> java.util.NoSuchElementException: No line found at 
> java.util.Scanner.nextLine(Scanner.java:1540) at 
> gradleproject1.Main.main(Main.java:23)
 FAILURE: Build failed with an exception.
 * What went wrong:Execution failed for task ':run'.> Process 'command 
'/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
finished with non-zero exit value 1
 * Try:Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.

 

I have tried with both Java SE Development Kit 11(LTS) and 8u241 on Netbeans 
11.0, 11.2 and the latest 11.3 Apache version and I still get the same error.

Here is some simple code below that works in Eclipse but not in Netbeans 
because of this issue. 



import java.util.Scanner;

/**
 *
 * @author noahavelar
 */
public class Main {

/**
 * @param args the command line arguments
 */
 public static void main(String[] args) {
 // TODO code application logic here
 Scanner input = new Scanner(System.in);
 System.out.println("Enter your age");
 int theNumber = Integer.parseInt(input.nextLine());

System.out.println(theNumber);

System.out.println("Enter your name");
 String myName = input.nextLine();

System.out.println(myName);

 

}

}

  was:
When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not allow 
user input in the console like the scanner class should normally do. Here is a 
link to a similar issue and it has not been resolved 
https://issues.apache.org/jira/browse/NETBEANS-3073

I get the following error. 

> Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> java.util.NoSuchElementException: No line found at 
> java.util.Scanner.nextLine(Scanner.java:1540) at 
> gradleproject1.Main.main(Main.java:23)
 FAILURE: Build failed with an exception.
 * What went wrong:Execution failed for task ':run'.> Process 'command 
'/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
finished with non-zero exit value 1
 * Try:Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.

 

I have tried with both Java SE Development Kit 11(LTS) and 8u241 on Netbeans 
11.0, 11.2 and the latest 11.3 Apache version and I still get the same error.


> Console does not allow input with Scanner class / Gradle Project
> 
>
> Key: NETBEANS-4099
> URL: https://issues.apache.org/jira/browse/NETBEANS-4099
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0, 11.2, 11.3
> Environment: I've tried on both Macbook Pro with macOS Catalina and 
> Windows 10 and get the same issue even though the Netbeans IDE and Java SE 
> Development Kit are compatible. When I try the code on Eclipse, it works 
> perfect which shows that there is not an issue with the code, the issue is 
> with Netbeans. Must be some configuration not allowing input from the user in 
> a console.
>Reporter: Noah Avelar
>Priority: Major
>  Labels: Console, Java, Netbeans, Scanner, input
>   Original Estimate: 504h
>  Remaining Estimate: 504h
>
> When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not 
> allow user input in the console like the scanner class should normally do. 
> Here is a link to a similar issue and it has not been resolved 
> https://issues.apache.org/jira/browse/NETBEANS-3073
> I get the following error. 
> > Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> > java.util.NoSuchElementException: No line found at 
> > java.util.Scanner.nextLine(Scanner.java:1540) at 
> > gradleproject1.Main.main(Main.java:23)
>  FAILURE: Build failed with an exception.
>  * What went wrong:Execution failed for task ':run'.> Process 'command 
> '/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
> finished with non-zero exit value 1
>  * Try:Run with --stacktrace option to get the stack trace. Run with --info 
> or --debug option to get more log output. Run with --scan to get full 
> insights.
>  
> I have tried with both Java SE Development Kit 11(LTS) and 8u241 on Netbeans 
> 11.0, 11.2 and the latest 11.3 Apache version and I still get the same error.
> 

[jira] [Updated] (NETBEANS-4099) Console does not allow input with Scanner class / Gradle Project

2020-04-01 Thread Noah Avelar (Jira)


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

Noah Avelar updated NETBEANS-4099:
--
Description: 
When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not allow 
user input in the console like the scanner class should normally do. Here is a 
link to a similar issue and it has not been resolved 
https://issues.apache.org/jira/browse/NETBEANS-3073

I get the following error. 

> Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> java.util.NoSuchElementException: No line found at 
> java.util.Scanner.nextLine(Scanner.java:1540) at 
> gradleproject1.Main.main(Main.java:23)
 FAILURE: Build failed with an exception.
 * What went wrong:Execution failed for task ':run'.> Process 'command 
'/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
finished with non-zero exit value 1
 * Try:Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.

 

I have tried with both Java SE Development Kit 11(LTS) and 8u241 on Netbeans 
11.0, 11.2 and the latest 11.3 Apache version and I still get the same error.

  was:
When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not allow 
user input in the console like the scanner class should normally do. Here is a 
link to a similar issue and it has not been resolved 
https://issues.apache.org/jira/browse/NETBEANS-3073

I get the following error. 

> Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> java.util.NoSuchElementException: No line found at 
> java.util.Scanner.nextLine(Scanner.java:1540) at 
> gradleproject1.Main.main(Main.java:23)
FAILURE: Build failed with an exception.
* What went wrong:Execution failed for task ':run'.> Process 'command 
'/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
finished with non-zero exit value 1
* Try:Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.


> Console does not allow input with Scanner class / Gradle Project
> 
>
> Key: NETBEANS-4099
> URL: https://issues.apache.org/jira/browse/NETBEANS-4099
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0, 11.2, 11.3
> Environment: I've tried on both Macbook Pro with macOS Catalina and 
> Windows 10 and get the same issue even though the Netbeans IDE and Java SE 
> Development Kit are compatible. When I try the code on Eclipse, it works 
> perfect which shows that there is not an issue with the code, the issue is 
> with Netbeans. Must be some configuration not allowing input from the user in 
> a console.
>Reporter: Noah Avelar
>Priority: Major
>  Labels: Console, Java, Netbeans, Scanner, input
>   Original Estimate: 504h
>  Remaining Estimate: 504h
>
> When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not 
> allow user input in the console like the scanner class should normally do. 
> Here is a link to a similar issue and it has not been resolved 
> https://issues.apache.org/jira/browse/NETBEANS-3073
> I get the following error. 
> > Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> > java.util.NoSuchElementException: No line found at 
> > java.util.Scanner.nextLine(Scanner.java:1540) at 
> > gradleproject1.Main.main(Main.java:23)
>  FAILURE: Build failed with an exception.
>  * What went wrong:Execution failed for task ':run'.> Process 'command 
> '/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
> finished with non-zero exit value 1
>  * Try:Run with --stacktrace option to get the stack trace. Run with --info 
> or --debug option to get more log output. Run with --scan to get full 
> insights.
>  
> I have tried with both Java SE Development Kit 11(LTS) and 8u241 on Netbeans 
> 11.0, 11.2 and the latest 11.3 Apache version and I still get the same error.



--
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-4099) Console does not allow input with Scanner class / Gradle Project

2020-04-01 Thread Noah Avelar (Jira)
Noah Avelar created NETBEANS-4099:
-

 Summary: Console does not allow input with Scanner class / Gradle 
Project
 Key: NETBEANS-4099
 URL: https://issues.apache.org/jira/browse/NETBEANS-4099
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.2, 11.0, 11.3
 Environment: I've tried on both Macbook Pro with macOS Catalina and 
Windows 10 and get the same issue even though the Netbeans IDE and Java SE 
Development Kit are compatible. When I try the code on Eclipse, it works 
perfect which shows that there is not an issue with the code, the issue is with 
Netbeans. Must be some configuration not allowing input from the user in a 
console.
Reporter: Noah Avelar


When using the scanner class, Netbeans 11.0, 11.2 and 11.3 still does not allow 
user input in the console like the scanner class should normally do. Here is a 
link to a similar issue and it has not been resolved 
https://issues.apache.org/jira/browse/NETBEANS-3073

I get the following error. 

> Task :run FAILED> Task :run FAILEDEnter your ageException in thread "main" 
> java.util.NoSuchElementException: No line found at 
> java.util.Scanner.nextLine(Scanner.java:1540) at 
> gradleproject1.Main.main(Main.java:23)
FAILURE: Build failed with an exception.
* What went wrong:Execution failed for task ':run'.> Process 'command 
'/Library/Java/JavaVirtualMachines/jdk1.8.0_241.jdk/Contents/Home/bin/java'' 
finished with non-zero exit value 1
* Try:Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.



--
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-2842) Using of deprecated pack200 tool in nbm packaging

2020-04-01 Thread Christian Lenz (Jira)


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

Christian Lenz commented on NETBEANS-2842:
--

It causes also problems while installing plugins, with external dependencies. 
NetBeans tries to call the pack200 binary to unpack the external dependency 
from my plugin, and it fails. Workaround for this: Install the plugin with a 
JDK < 14 and it works. FYI

> Using of deprecated pack200 tool in nbm packaging
> -
>
> Key: NETBEANS-2842
> URL: https://issues.apache.org/jira/browse/NETBEANS-2842
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Plugin Manager
>Affects Versions: 11.3
>Reporter: Benjamin Graf
>Priority: Critical
>
> Netbeans plugins are mostly compressed in size by the JDK internal pack200 
> tool which is deprecated since JDK 11 ([https://openjdk.java.net/jeps/336]). 
> It should be thought about an alternative as it might get removed in next JDK 
> releases.



--
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] (NETBEANSINFRA-185) Register PP3 UC in Apache NetBeans 12.0

2020-04-01 Thread Jira


[ 
https://issues.apache.org/jira/browse/NETBEANSINFRA-185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17073042#comment-17073042
 ] 

Matthias Bläsing commented on NETBEANSINFRA-185:


Sorry - misunderstanding. I think you are talking about the OAuth2 client 
credentials, but what I meant are the accounts, that were used to generate the 
client credentials.

I just checked github, there you can transfer the ownership of client 
credentials. 
On google the credentials are tied to a project, so another/multiple accounts 
can gain access to the credentials.

As my AWS account does not work anymore, I can't check there. So the question 
is different:

* is the github account used to generate the client credentials for github 
owned by a trusted person (there are only a few candidates, so I assume yes, 
but I'd like to make it explicit) and will we remember, that ownership of the 
credentials needs to be transfered, should that person decide to leave the 
Apache NetBeans project
* for the google project: is the project controlled by a trusted person (same 
reasoning as for the github account applies)

> Register PP3 UC in Apache NetBeans 12.0
> ---
>
> Key: NETBEANSINFRA-185
> URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-185
> Project: Apache NetBeans Infra
>  Issue Type: Task
>  Components: PluginPortal - infra
>Reporter: Jiří Kovalský
>Priority: Critical
>
> We need to register update center [1] of new Plugin Portal 3.0 in the Apache 
> NetBeans IDE 12.0 and either remove or rename the old one [2] to Legacy 
> Plugin Portal.
> [1] [http://netbeans-vm.apache.org/pluginportal/data/12.0/catalog.xml.gz]
> [2] 
> [http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz|http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml]



--
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-3746) [FlatLaF] Change theme for FlatLaF

2020-04-01 Thread Karl Tauber (Jira)


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

Karl Tauber commented on NETBEANS-3746:
---

Switching FlatLaf theme is Swing L switching. There is no magic in FlatLaf :)

So switching FlatLaf theme in NB without restart requires some changes in NB. 
E.g. no longer storing colors (or other theme related data) in static 
variables. And more...

I think it is doable, but requires some time...

> [FlatLaF] Change theme for FlatLaF
> --
>
> Key: NETBEANS-3746
> URL: https://issues.apache.org/jira/browse/NETBEANS-3746
> Project: NetBeans
>  Issue Type: New Feature
>  Components: FlatLaf, ide - UI, platform - OptionsSettings
> Environment: Product Version: Apache NetBeans IDE 11.1
> Updates: NetBeans IDE is updated to version NetBeans 8.2 Patch 2
> Java: 11.0.2; Java HotSpot(TM) 64-Bit Server VM 11.0.2+9-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.2+9-LTS
> System: Windows 10 version 10.0 running on amd64; Cp1252; de_DE (nb)
> User directory: C:\Users\Chrl\AppData\Roaming\NetBeans\11.1
> Cache directory: C:\Users\Chrl\AppData\Local\NetBeans\Cache\11.1
>Reporter: Christian Lenz
>Assignee: Karl Tauber
>Priority: Major
>  Labels: Look, theme
> Attachments: flat-laf-changing-theme.gif
>
>
> As far as I know, there ia theming option for FlatLaF inside the FlatLaF 
> demo. See my screencapture for more info. So it is possible via JSON to theme 
> the LaF easy and restartless. IntelliJ is doing that and it works like a 
> charm.
> The problem of NetBeans changing LaF is you often need to restart, because 
> not all components are repainted correctly. But it seems that theming of 
> FlatLaF is independent from NetBeans.
> So it would be nice, if we can switch the FlatLaF theme easy via NetBeans as 
> it is possible in the FlatLaF demo which is located here: 
> https://github.com/JFormDesigner/FlatLaf
> I already asked here: https://github.com/JFormDesigner/FlatLaf/issues/29



--
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-4098) macOS: text navigation shortcuts for Eclipse profile are setup incorrectly by default

2020-04-01 Thread Matthias Fuchs (Jira)


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

Matthias Fuchs updated NETBEANS-4098:
-
Description: 
Under macOS the following text navigation shortcuts are setup incorrectly by 
default for the eclipse profile:

 
||Description||Actual||Expected||
|Extends selection to beginning|ALT-shift-left|CMD-shift-left|
|Extend selection end of line|ALT-shift-right|CMD-shift-right|
|Extend selection to previous word| |ALT-shift-left|
|Extend selection to next word| |ALT-shift-right|
|Extend selection to beginning of document| |CMD-shift-up|
|Extend selection to end of document| |CMD-shift-down|
|Insertion point to beginning of line| |CMD-left|
|Insertion point to end of line| |CMD-right|
|Insertion point to previous word| |ALT-left|
|Insertion point to next word| |ALT-right|
|Insertion point to beginning of document| |CMD-up|
|Insertion point to end of document| |CMD-down|

 It seems that this is some weird mixture of Windows eclipse and macOS 
shortcuts. it should be pure macOS shortcuts - that's what anyone would except 
on macOS (imho ...)

 

  was:
Under macOS the following text navigation shortcuts are setup incorrectly by 
default:

 
||Description||Actual||Expected||
|Extends selection to beginning|ALT-shift-left|CMD-shift-left|
|Extend selection end of line|ALT-shift-right|CMD-shift-right|
|Extend selection to previous word| |ALT-shift-left|
|Extend selection to next word| |ALT-shift-right|
|Extend selection to beginning of document| |CMD-shift-up|
|Extend selection to end of document| |CMD-shift-down|
|Insertion point to beginning of line| |CMD-left|
|Insertion point to end of line| |CMD-right|
|Insertion point to previous word| |ALT-left|
|Insertion point to next word| |ALT-right|
|Insertion point to beginning of document| |CMD-up|
|Insertion point to end of document| |CMD-down|

 


> macOS:  text navigation shortcuts for Eclipse profile are setup incorrectly 
> by default
> --
>
> Key: NETBEANS-4098
> URL: https://issues.apache.org/jira/browse/NETBEANS-4098
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Matthias Fuchs
>Priority: Major
>  Labels: keyboard, macOS, shortcuts
>
> Under macOS the following text navigation shortcuts are setup incorrectly by 
> default for the eclipse profile:
>  
> ||Description||Actual||Expected||
> |Extends selection to beginning|ALT-shift-left|CMD-shift-left|
> |Extend selection end of line|ALT-shift-right|CMD-shift-right|
> |Extend selection to previous word| |ALT-shift-left|
> |Extend selection to next word| |ALT-shift-right|
> |Extend selection to beginning of document| |CMD-shift-up|
> |Extend selection to end of document| |CMD-shift-down|
> |Insertion point to beginning of line| |CMD-left|
> |Insertion point to end of line| |CMD-right|
> |Insertion point to previous word| |ALT-left|
> |Insertion point to next word| |ALT-right|
> |Insertion point to beginning of document| |CMD-up|
> |Insertion point to end of document| |CMD-down|
>  It seems that this is some weird mixture of Windows eclipse and macOS 
> shortcuts. it should be pure macOS shortcuts - that's what anyone would 
> except on macOS (imho ...)
>  



--
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-4098) macOS: text navigation shortcuts for Eclipse profile are setup incorrectly by default

2020-04-01 Thread Matthias Fuchs (Jira)


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

Matthias Fuchs updated NETBEANS-4098:
-
Summary: macOS:  text navigation shortcuts for Eclipse profile are setup 
incorrectly by default  (was: macOS:  text navigation shortcuts are setup 
incorrectly by default)

> macOS:  text navigation shortcuts for Eclipse profile are setup incorrectly 
> by default
> --
>
> Key: NETBEANS-4098
> URL: https://issues.apache.org/jira/browse/NETBEANS-4098
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Matthias Fuchs
>Priority: Major
>  Labels: keyboard, macOS, shortcuts
>
> Under macOS the following text navigation shortcuts are setup incorrectly by 
> default:
>  
> ||Description||Actual||Expected||
> |Extends selection to beginning|ALT-shift-left|CMD-shift-left|
> |Extend selection end of line|ALT-shift-right|CMD-shift-right|
> |Extend selection to previous word| |ALT-shift-left|
> |Extend selection to next word| |ALT-shift-right|
> |Extend selection to beginning of document| |CMD-shift-up|
> |Extend selection to end of document| |CMD-shift-down|
> |Insertion point to beginning of line| |CMD-left|
> |Insertion point to end of line| |CMD-right|
> |Insertion point to previous word| |ALT-left|
> |Insertion point to next word| |ALT-right|
> |Insertion point to beginning of document| |CMD-up|
> |Insertion point to end of document| |CMD-down|
>  



--
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-4098) macOS: text navigation shortcuts are setup incorrectly by default

2020-04-01 Thread Matthias Fuchs (Jira)


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

Matthias Fuchs updated NETBEANS-4098:
-
Description: 
Under macOS the following text navigation shortcuts are setup incorrectly by 
default:

 
||Description||Actual||Expected||
|Extends selection to beginning|ALT-shift-left|CMD-shift-left|
|Extend selection end of line|ALT-shift-right|CMD-shift-right|
|Extend selection to previous word| |ALT-shift-left|
|Extend selection to next word| |ALT-shift-right|
|Extend selection to beginning of document| |CMD-shift-up|
|Extend selection to end of document| |CMD-shift-down|
|Insertion point to beginning of line| |CMD-left|
|Insertion point to end of line| |CMD-right|
|Insertion point to previous word| |ALT-left|
|Insertion point to next word| |ALT-right|
|Insertion point to beginning of document| |CMD-up|
|Insertion point to end of document| |CMD-down|

 

  was:
Under macOS the following text navigation shortcuts are setup incorrectly by 
default:

 
||Description||Actual||Expected||
|Extends selection to beginning|ALT-shift-left|CMD-shift-left|
|Extend selection end of line|ALT-shift-right|CMD-shift-right|
|Extend selection to previous word| |ALT-shift-left|
|Extend selection to next word| |ALT-shift-right|
|Insertion point to beginning of line| |CMD-left|
|Insertion point to end of line| |CMD-right|
|Insertion point to previous word| |ALT-left|
|Insertion point to next word| |ALT-right|
|Insertion point to beginning of document| |CMD-up|
|Insertion point to end of document| |CMD-down|

 


> macOS:  text navigation shortcuts are setup incorrectly by default
> --
>
> Key: NETBEANS-4098
> URL: https://issues.apache.org/jira/browse/NETBEANS-4098
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Matthias Fuchs
>Priority: Major
>  Labels: keyboard, macOS, shortcuts
>
> Under macOS the following text navigation shortcuts are setup incorrectly by 
> default:
>  
> ||Description||Actual||Expected||
> |Extends selection to beginning|ALT-shift-left|CMD-shift-left|
> |Extend selection end of line|ALT-shift-right|CMD-shift-right|
> |Extend selection to previous word| |ALT-shift-left|
> |Extend selection to next word| |ALT-shift-right|
> |Extend selection to beginning of document| |CMD-shift-up|
> |Extend selection to end of document| |CMD-shift-down|
> |Insertion point to beginning of line| |CMD-left|
> |Insertion point to end of line| |CMD-right|
> |Insertion point to previous word| |ALT-left|
> |Insertion point to next word| |ALT-right|
> |Insertion point to beginning of document| |CMD-up|
> |Insertion point to end of document| |CMD-down|
>  



--
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-4098) macOS: text navigation shortcuts are setup incorrectly by default

2020-04-01 Thread Matthias Fuchs (Jira)


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

Matthias Fuchs updated NETBEANS-4098:
-
Description: 
Under macOS the following text navigation shortcuts are setup incorrectly by 
default:

 
||Description||Actual||Expected||
|Extends selection to beginning|ALT-shift-left|CMD-shift-left|
|Extend selection end of line|ALT-shift-right|CMD-shift-right|
|Extend selection to previous word| |ALT-shift-left|
|Extend selection to next word| |ALT-shift-right|
|Insertion point to beginning of line| |CMD-left|
|Insertion point to end of line| |CMD-right|
|Insertion point to previous word| |ALT-left|
|Insertion point to next word| |ALT-right|
|Insertion point to beginning of document| |CMD-up|
|Insertion point to end of document| |CMD-down|

 

  was:Under macOS the following text navigation shortcuts are setup incorrectly 
by default:


> macOS:  text navigation shortcuts are setup incorrectly by default
> --
>
> Key: NETBEANS-4098
> URL: https://issues.apache.org/jira/browse/NETBEANS-4098
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Matthias Fuchs
>Priority: Major
>  Labels: keyboard, macOS, shortcuts
>
> Under macOS the following text navigation shortcuts are setup incorrectly by 
> default:
>  
> ||Description||Actual||Expected||
> |Extends selection to beginning|ALT-shift-left|CMD-shift-left|
> |Extend selection end of line|ALT-shift-right|CMD-shift-right|
> |Extend selection to previous word| |ALT-shift-left|
> |Extend selection to next word| |ALT-shift-right|
> |Insertion point to beginning of line| |CMD-left|
> |Insertion point to end of line| |CMD-right|
> |Insertion point to previous word| |ALT-left|
> |Insertion point to next word| |ALT-right|
> |Insertion point to beginning of document| |CMD-up|
> |Insertion point to end of document| |CMD-down|
>  



--
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-4098) macOS: text navigation shortcuts are setup incorrectly by default

2020-04-01 Thread Matthias Fuchs (Jira)
Matthias Fuchs created NETBEANS-4098:


 Summary: macOS:  text navigation shortcuts are setup incorrectly 
by default
 Key: NETBEANS-4098
 URL: https://issues.apache.org/jira/browse/NETBEANS-4098
 Project: NetBeans
  Issue Type: Bug
Reporter: Matthias Fuchs


Under macOS the following text navigation shortcuts are setup incorrectly by 
default:



--
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] (NETBEANSINFRA-185) Register PP3 UC in Apache NetBeans 12.0

2020-04-01 Thread Jira


[ 
https://issues.apache.org/jira/browse/NETBEANSINFRA-185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17072856#comment-17072856
 ] 

Jiří Kovalský commented on NETBEANSINFRA-185:
-

The credentials are available to anyone who can login to 
{color:#ff8b00}netbeans-vm.apache.org{color} VM but it's not documented 
anywhere so I am going to create a Wiki page with this information together 
with instructions how to add admin privilege to anyone or how to deploy the 
latest changes from the repository.

> Register PP3 UC in Apache NetBeans 12.0
> ---
>
> Key: NETBEANSINFRA-185
> URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-185
> Project: Apache NetBeans Infra
>  Issue Type: Task
>  Components: PluginPortal - infra
>Reporter: Jiří Kovalský
>Priority: Critical
>
> We need to register update center [1] of new Plugin Portal 3.0 in the Apache 
> NetBeans IDE 12.0 and either remove or rename the old one [2] to Legacy 
> Plugin Portal.
> [1] [http://netbeans-vm.apache.org/pluginportal/data/12.0/catalog.xml.gz]
> [2] 
> [http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz|http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml]



--
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: [TRAVIS] Add java modules

2020-04-01 Thread hectorespert
This is an automated email from the ASF dual-hosted git repository.

hectorespert 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 6b5649e  [TRAVIS] Add java modules
 new 0401f36  Merge pull request #2032 from hectorespert/travis_java_modules
6b5649e is described below

commit 6b5649e5d5fdf994b73ae739ad5844a6372f1641
Author: Hector Espert 
AuthorDate: Wed Mar 18 19:57:02 2020 +0100

[TRAVIS] Add java modules
---
 .travis.yml | 59 +--
 1 file changed, 57 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 9f49eb5..2ee7585 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -339,7 +339,7 @@ matrix:
 - ant $OPTS build
   script:
 #- ant $OPTS -f java/ant.debugger test
-- ant $OPTS -f java/ant.freeform test
+- hide-logs.sh ant $OPTS -f java/ant.freeform test
 #- ant $OPTS -f java/ant.grammar test
 - ant $OPTS -f java/api.debugger.jpda test
 - ant $OPTS -f java/api.java test
@@ -347,12 +347,67 @@ matrix:
 #- ant $OPTS -f java/beans test
 - ant $OPTS -f java/classfile test
 - ant $OPTS -f java/dbschema test -Dtest.config=stable
+#- ant $OPTS -f java/debugger.jpda test
+- hide-logs.sh ant $OPTS -f java/debugger.jpda.js test
+- hide-logs.sh ant $OPTS -f java/debugger.jpda.projects test
+- hide-logs.sh ant $OPTS -f java/debugger.jpda.projectsui test
+#- ant $OPTS -f java/debugger.jpda.truffle test
+#- ant $OPTS -f java/debugger.jpda.ui test
+- travis_wait hide-logs.sh ant $OPTS -f java/editor.htmlui test
+#- travis_wait 30 hide-logs.sh  ant $OPTS -f java/form test
 - ant $OPTS -f java/hudson.maven test
 - ant $OPTS -f java/java.completion test
-- ant $OPTS -f java/java.hints.declarative test
+- hide-logs.sh ant $OPTS -f java/java.hints.declarative test
+#- ant $OPTS -f java/java.kit test
+#- ant $OPTS -f java/java.lexer test
+#- ant $OPTS -f java/java.lexer test
+#- ant $OPTS -f java/java.lsp.server test
+#- ant $OPTS -f java/java.metrics test
+- ant $OPTS -f java/java.module.graph test
+- ant $OPTS -f java/java.navigation test
+#- ant $OPTS -f java/java.openjdk.project test
+- ant $OPTS -f java/java.platform test
+- ant $OPTS -f java/java.platform.ui test
+- ant $OPTS -f java/java.preprocessorbridge test
+- hide-logs.sh ant $OPTS -f java/java.project test
+#- ant $OPTS -f java/java.project.ui test
+#- ant $OPTS -f java/java.source test
+#- ant $OPTS -f java/java.source.ant test
 - ant $OPTS -f java/java.source.base test
+- ant $OPTS -f java/java.source.compat8 test
+- ant $OPTS -f java/java.source.nbjavac test
+- ant $OPTS -f java/java.source.queriesimpl test
+#- ant $OPTS -f java/java.sourceui test
+- ant $OPTS -f java/java.testrunner test
+- ant $OPTS -f java/java.testrunner.ant test
+#- ant $OPTS -f java/javadoc test
+- ant $OPTS -f java/javawebstart test
+#- ant $OPTS -f java/jellytools.java test
+#- ant $OPTS -f java/jshell.support test
+#- ant $OPTS -f java/junit test
+- ant $OPTS -f java/junit.ant.ui test
+- ant $OPTS -f java/lib.nbjavac test
+#- ant $OPTS -f java/maven test
+#- ant $OPTS -f java/maven.embedder test
+- ant $OPTS -f java/maven.grammar test
+#- ant $OPTS -f java/maven.hints test
+#- ant $OPTS -f java/maven.htmlui test
+- ant $OPTS -f java/maven.indexer test
+- ant $OPTS -f java/maven.junit test
+- ant $OPTS -f java/maven.model test
+- ant $OPTS -f java/maven.osgi test
+#- ant $OPTS -f java/performance test
+#- ant $OPTS -f java/performance.java test
+#- ant $OPTS -f java/projectimport.eclipse.core test
+#- ant $OPTS -f java/refactoring.java test
+- ant $OPTS -f java/spellchecker.bindings.java test
 #- ant $OPTS -f java/spi.java.hints test
 - ant $OPTS -f java/spring.beans test
+- ant $OPTS -f java/testng test
+#- ant $OPTS -f java/testng.ant test
+#- ant $OPTS -f java/testng.ui test
+- ant $OPTS -f java/whitelist test
+- ant $OPTS -f java/xml.jaxb test
 
 - name: Test Java modules with nb-javac on Java 11
   jdk: openjdk8


-
To unsubscribe, 

[jira] [Updated] (NETBEANS-3870) Smooth scrolling for FlatLaF inside the editor is hacky/lacky

2020-04-01 Thread ASF GitHub Bot (Jira)


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

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

> Smooth scrolling for FlatLaF inside the editor is hacky/lacky
> -
>
> Key: NETBEANS-3870
> URL: https://issues.apache.org/jira/browse/NETBEANS-3870
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - UI
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3-beta2
> Updates: Updates available to version NetBeans 8.2 Patch 2
> Java: 11.0.2; Java HotSpot(TM) 64-Bit Server VM 11.0.2+9-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.2+9-LTS
> System: Windows 10 version 10.0 running on amd64; Cp1252; de_DE (nb)
> User directory: C:\Users\Chrl\AppData\Roaming\NetBeans\11.3-beta2
> Cache directory: C:\Users\Chrl\AppData\Local\NetBeans\Cache\11.3-beta2
>Reporter: Christian Lenz
>Assignee: Karl Tauber
>Priority: Major
>  Labels: pull-request-available
>
> I use the latest 11.3 beta 2 with the new Flat LaF. The smooth scrolling 
> works perfect inside of those UI elements:
> - Navigator
> - Options (tested with Editor and Team tab)
> - Project View
> - Files View 
> - Services View
> But the smooth scrolling is hacky/lacky in the editor. I use Windows 10 64 
> bit with a Surface Book and the touchpad on it, no extra mouse.
> We can make a skype session or I will try to make a little video, a 
> screencapture (gif) will not work well here. I already commented about the 
> problem here: https://issues.apache.org/jira/browse/NETBEANS-49. The problem 
> happens with the implementation of [~ebakke] for the default NetBeans LaF.
> Please let me know, what you need from my site :)



--
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-3580) Expression Lambdas cannot be debugged

2020-04-01 Thread Akhilesh Singh (Jira)


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

Akhilesh Singh commented on NETBEANS-3580:
--

PR raised for this defect fix [https://github.com/apache/netbeans/pull/2055]

> Expression Lambdas cannot be debugged
> -
>
> Key: NETBEANS-3580
> URL: https://issues.apache.org/jira/browse/NETBEANS-3580
> Project: NetBeans
>  Issue Type: Improvement
>  Components: debugger - Java
>Affects Versions: 11.2, 11.3
>Reporter: Jan Lahoda
>Assignee: Akhilesh Singh
>Priority: Critical
>  Labels: debug, lambda, pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Consider this source code:
> {{package org.netbeans.modules.learning.lambda.code.completion;}}
> {{import java.util.Arrays;}}
> {{public class NewClass {}}
> {{    public static void main(String... args) {}}
>  {{    Arrays.stream(new String[] \{"a", "", "b"})}}
>  {{  .filter(s -> !s.isEmpty()) //breakpoint here}}
>  {{  .forEach(System.err::println);}}
>  \{{    }}}
>  {{}}}
>  
> Add a breakpoint at the marked line, and run the code under the debugger. The 
> debugger will stop on the breakpoint for the "filter" method invocation (OK), 
> but it will not stop there for the lambda invocation (bad). So with a code 
> like this, one does not see the lambda parameters, cannot step inside, etc. 
> Workaround is to place the expression on a new line:
> {\{ .filter(s -> }}
>  \{{ !s.isEmpty()) //breakpoint here}}
> But that requires a change to the code just for debugging - and that defies 
> the purpose of debugging (which is to inspect the code *without* changes).
> The IDE is a fully updated Apache NetBeans 11.2, with nb-javac installed 
> running on JDK 13:
> Product Version: Apache NetBeans IDE 11.2
> Java: 13.0.1; OpenJDK 64-Bit Server VM 13.0.1+9
> Runtime: OpenJDK Runtime Environment 13.0.1+9
> System: Linux version 4.15.0-72-generic running on amd64; UTF-8; en_US (nb)
> User directory: /tmp/nbuser.lambda.test
> Cache directory: /tmp/nbuser.lambda.test/var/cache



--
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-4097) HintsInvoker ... assertion Analyzer error

2020-04-01 Thread Ernie Rael (Jira)


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

Ernie Rael updated NETBEANS-4097:
-
Attachment: StackTrace.log

> HintsInvoker ... assertion Analyzer error
> -
>
> Key: NETBEANS-4097
> URL: https://issues.apache.org/jira/browse/NETBEANS-4097
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 11.3
> Environment: NB-11.3, jdk1.8_241, nb-javac-2.0,Win7
>Reporter: Ernie Rael
>Priority: Minor
> Attachments: StackTrace.log
>
>
> I've only seen this a few times; this specific failure might be new in 11.3. 
> The code it fails on is ancient. This failure happened when setting project 
> group to "(none)" and it happened in a file that was not opened (at least not 
> being edited).
> {code:java}
> java.lang.AssertionError: Analyzer error when processing: private static 
> final Runnable updateKeymap = new Runnable(){
> 
> () {
> super();
> }
> 
> @Override
> public void run() {
> bindingList = null;
> firePropertyChange(KEY_BINDINGS, null, null);
> }
> }
>   at com.sun.tools.javac.util.Assert.error(Assert.java:162)
>   at com.sun.tools.javac.comp.Analyzer.doAnalysis(Analyzer.java:578)
>   at com.sun.tools.javac.comp.Analyzer$2.flush(Analyzer.java:549)
> {code}
> stacktrace 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] [Created] (NETBEANS-4097) HintsInvoker ... assertion Analyzer error

2020-04-01 Thread Ernie Rael (Jira)
Ernie Rael created NETBEANS-4097:


 Summary: HintsInvoker ... assertion Analyzer error
 Key: NETBEANS-4097
 URL: https://issues.apache.org/jira/browse/NETBEANS-4097
 Project: NetBeans
  Issue Type: Bug
  Components: java - Compiler
Affects Versions: 11.3
 Environment: NB-11.3, jdk1.8_241, nb-javac-2.0,Win7
Reporter: Ernie Rael


I've only seen this a few times; this specific failure might be new in 11.3. 
The code it fails on is ancient. This failure happened when setting project 
group to "(none)" and it happened in a file that was not opened (at least not 
being edited).
{code:java}
java.lang.AssertionError: Analyzer error when processing: private static final 
Runnable updateKeymap = new Runnable(){

() {
super();
}

@Override
public void run() {
bindingList = null;
firePropertyChange(KEY_BINDINGS, null, null);
}
}
at com.sun.tools.javac.util.Assert.error(Assert.java:162)
at com.sun.tools.javac.comp.Analyzer.doAnalysis(Analyzer.java:578)
at com.sun.tools.javac.comp.Analyzer$2.flush(Analyzer.java:549)
{code}
stacktrace 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-3870) Smooth scrolling for FlatLaF inside the editor is hacky/lacky

2020-04-01 Thread Christian Lenz (Jira)


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

Christian Lenz commented on NETBEANS-3870:
--

Cool thx :)

> Smooth scrolling for FlatLaF inside the editor is hacky/lacky
> -
>
> Key: NETBEANS-3870
> URL: https://issues.apache.org/jira/browse/NETBEANS-3870
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - UI
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3-beta2
> Updates: Updates available to version NetBeans 8.2 Patch 2
> Java: 11.0.2; Java HotSpot(TM) 64-Bit Server VM 11.0.2+9-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.2+9-LTS
> System: Windows 10 version 10.0 running on amd64; Cp1252; de_DE (nb)
> User directory: C:\Users\Chrl\AppData\Roaming\NetBeans\11.3-beta2
> Cache directory: C:\Users\Chrl\AppData\Local\NetBeans\Cache\11.3-beta2
>Reporter: Christian Lenz
>Assignee: Karl Tauber
>Priority: Major
>
> I use the latest 11.3 beta 2 with the new Flat LaF. The smooth scrolling 
> works perfect inside of those UI elements:
> - Navigator
> - Options (tested with Editor and Team tab)
> - Project View
> - Files View 
> - Services View
> But the smooth scrolling is hacky/lacky in the editor. I use Windows 10 64 
> bit with a Surface Book and the touchpad on it, no extra mouse.
> We can make a skype session or I will try to make a little video, a 
> screencapture (gif) will not work well here. I already commented about the 
> problem here: https://issues.apache.org/jira/browse/NETBEANS-49. The problem 
> happens with the implementation of [~ebakke] for the default NetBeans LaF.
> Please let me know, what you need from my site :)



--
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-3870) Smooth scrolling for FlatLaF inside the editor is hacky/lacky

2020-04-01 Thread Karl Tauber (Jira)


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

Karl Tauber commented on NETBEANS-3870:
---

Finally I'm able to reproduce this and also found the reason for the 
inconsistent behavior.

Some views (e.g. Output and Debugging) implement wheel scrolling themselves, 
but do not use precise rotation values.

In the editors there is a check for the "unprecise" rotation value (which is 
often zero when using touchpad) and if it is zero then the original wheel 
listeners (e.g. from FlatLaf) are not invoked.

A PR is coming...

FYI don't have a Surface Book here. But I'm using a MacBookPro running Win 10 
in BootCamp with precision Touchpad driver from here: 
https://github.com/imbushuo/mac-precision-touchpad

> Smooth scrolling for FlatLaF inside the editor is hacky/lacky
> -
>
> Key: NETBEANS-3870
> URL: https://issues.apache.org/jira/browse/NETBEANS-3870
> Project: NetBeans
>  Issue Type: Improvement
>  Components: FlatLaf, ide - UI
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3-beta2
> Updates: Updates available to version NetBeans 8.2 Patch 2
> Java: 11.0.2; Java HotSpot(TM) 64-Bit Server VM 11.0.2+9-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.2+9-LTS
> System: Windows 10 version 10.0 running on amd64; Cp1252; de_DE (nb)
> User directory: C:\Users\Chrl\AppData\Roaming\NetBeans\11.3-beta2
> Cache directory: C:\Users\Chrl\AppData\Local\NetBeans\Cache\11.3-beta2
>Reporter: Christian Lenz
>Assignee: Karl Tauber
>Priority: Major
>
> I use the latest 11.3 beta 2 with the new Flat LaF. The smooth scrolling 
> works perfect inside of those UI elements:
> - Navigator
> - Options (tested with Editor and Team tab)
> - Project View
> - Files View 
> - Services View
> But the smooth scrolling is hacky/lacky in the editor. I use Windows 10 64 
> bit with a Surface Book and the touchpad on it, no extra mouse.
> We can make a skype session or I will try to make a little video, a 
> screencapture (gif) will not work well here. I already commented about the 
> problem here: https://issues.apache.org/jira/browse/NETBEANS-49. The problem 
> happens with the implementation of [~ebakke] for the default NetBeans LaF.
> Please let me know, what you need from my site :)



--
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-4096) Hibernate tools version update?

2020-04-01 Thread D Burbridge (Jira)
D Burbridge created NETBEANS-4096:
-

 Summary: Hibernate tools version update?
 Key: NETBEANS-4096
 URL: https://issues.apache.org/jira/browse/NETBEANS-4096
 Project: NetBeans
  Issue Type: Wish
  Components: javaee - Hibernate
Affects Versions: 11.3
Reporter: D Burbridge


When I run the Hibernate Tools wizard in Netbeans (right-click on project - New 
- Hibernate Mapping Files and POJOs from Database...) the resultant java file 
includes the comment "// Generated  by Hibernate Tools 4.3.1".

This is despite the fact that I'm using Hibernate 5.4 throughout! (pom.xml uses 
version 5.4.13.Final, and Tools - Libraries contains version 5.4.11.Final jar 
files).

I can only assume that Netbeans has a set of Hibernate tools built-in, which 
can't be changed by the user?

(In Tools - Plugins - Installed I've apparently got a Hibernate Plugin (version 
1.35.0.1) but there's no update to that, indeed I can't even see it listed on 
plugins.netbeans.org, so I've no idea whether it's anything relevant or not?)

The reason I'm asking is that the treatment of date/time fields is apparently 
improved in Hibernate 5, such that they map better to Java date/time types.



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