How to implement auto-indent for PlantUML plugin

2023-07-31 Thread Vladimir Machat
Hello, I started using PlantUML plugin recently (https://github.com/matthiasblaesing/plantuml-nb) . As I am also learning Netbeans platform programming, as an exercise I fixed the auto-complete. Now I would like to implement auto-indent but I seem to be stuck on this one, I can't find any

Re: maven-surefire-plugin 2.20 and newer doesn't work with Test Result window

2022-09-27 Thread Vladimir Machat
Should be fine after that. Nb. version omitted On 20 Sep 2022, at 20:40, Vladimir Machat wrote: Hi, just FYI I tried it with the git version of Netbeans and it seems to be working there. So I guess we will have to wait for Netbeans 16 to have testing fully working again :) On 20/09/2022 13:54

Re: maven-surefire-plugin 2.20 and newer doesn't work with Test Result window

2022-09-20 Thread Vladimir Machat
with NB 12 (or even 11 not sure). I still don't know why it is failling. Sorry not beining able to help you. Please file an issue on Github but make sure there not already one. Best regards, JM On Sun, Sep 18, 2022 at 9:49 PM Vladimir Machat wrote: I have been trying to figure out how to get

Re: maven-surefire-plugin 2.20 and newer doesn't work with Test Result window

2022-09-20 Thread Vladimir Machat
but make sure there not already one. Best regards, JM On Sun, Sep 18, 2022 at 9:49 PM Vladimir Machat wrote: I have been trying to figure out how to get JUnit 5 tests working correctly in Netbeans 15. with maven-surefire-plugin version 2.19.1 and lower it works but with versions starting

maven-surefire-plugin 2.20 and newer doesn't work with Test Result window

2022-09-18 Thread Vladimir Machat
I have been trying to figure out how to get JUnit 5 tests working correctly in Netbeans 15. with maven-surefire-plugin version 2.19.1 and lower it works but with versions starting 2.20 the Test Result window in Netbeans just says 'No tests executed' even though in the Output window I can see

Re: No main manifest attribute in jar in Maven project

2022-02-16 Thread Vladimir Machat
g.com/executable-jar-with-maven El 16/2/22 a las 11:43, Vladimir Machat escribió: Hi all, I was just wondering, is Netbeans supposed to fill out the main attribute in MANIFEST.MF that goes to the jar file, when building Maven project? At the moment it doesn't do it, which means that the resulting ja

No main manifest attribute in jar in Maven project

2022-02-16 Thread Vladimir Machat
Hi all, I was just wondering, is Netbeans supposed to fill out the main attribute in MANIFEST.MF that goes to the jar file, when building Maven project? At the moment it doesn't do it, which means that the resulting jar can't be executed just by $ java -jar App.jar I would expect

Re: UTF-8 characters + Maven project + Windows = not working

2022-01-23 Thread Vladimir Machat
Helmut Leininger Diese Nachricht wurde von meinem Android-Gerät mit K-9 Mail gesendet. Am 23. Jänner 2022 11:27:44 MEZ schrieb Vladimir Machat: Hi all, Trying to print out special Czech characters on Windows: System.out.prinltn("ěščřžýáé"); results only in just a bunch of ques

UTF-8 characters + Maven project + Windows = not working

2022-01-23 Thread Vladimir Machat
Hi all, Trying to print out special Czech characters on Windows: System.out.prinltn("ěščřžýáé"); results only in just a bunch of question marks in the output window. I am pretty sure, that some time ago, when I wrote here about problems with input in Maven project (which was promptly

Re: Maven bundled with Netbeans breaks user input

2021-12-09 Thread Vladimir Machat
Dec 2021 at 12:34, Vladimir Machat wrote: I did some experimenting and it seems to be fixed in version 3.8.2 and newer. Are there any plans to upgrade the version of Maven in the near future? Yes, but 3.8.2 was even more broken for NetBeans! Should be 3.8.4 in NetBeans 13. Seehttps://github.com

Maven bundled with Netbeans breaks user input

2021-12-08 Thread Vladimir Machat
Hi all, The version 3.6.3, which is currently bundled with Netbeans, has a bug that breaks input when using print and printf, for example when trying to run following code: Scanner in = new Scanner(System.in, "UTF-8"); System.out.print("Enter a word: "); String word = in.nextLine();

Re: UTF-8 input is broken in Maven project

2021-10-31 Thread Vladimir Machat
, thats in the hand of the reviewers. best regards, michael On 30.10.21 12:19, Vladimir Machat wrote: Hi Michael, yes I have tried that, but nothing changed :( On 30/10/2021 11:10, Michael Bien wrote: Hi Vladimir, thats interesting. Since you are on linux, UTF-8 should be the default as far

Re: UTF-8 input is broken in Maven project

2021-10-30 Thread Vladimir Machat
(netbeans_default_options property)? regards, michael On 30.10.21 11:55, Vladimir Machat wrote: Hi All, When I create a Java with Maven Project and try to run simple code like this: Scanner sc = new Scanner(System.in, "UTF-8"); System.out.println("Enter text: "); Strin

UTF-8 input is broken in Maven project

2021-10-30 Thread Vladimir Machat
Hi All, When I create a Java with Maven Project and try to run simple code like this: Scanner sc = new Scanner(System.in, "UTF-8"); System.out.println("Enter text: "); String text = sc.nextLine(); System.out.println("You have entered: " + text); If I enter anything containing letters like

Maven archetype for Java Application

2021-04-07 Thread Vladimir Machat
Hi, I have been trying to figure out what maven archetype is used when creating a new project choosing Java with Maven - Java Application. I always assumed it was the org.apache.maven.archetypes:maven-archetype-quickstart, but only recently I realised it's not, as it doesn't create the