Netbeans/Maven/Lombok & JavaDoc

2024-05-03 Thread Arbol One
After setting up Lombok in Netbeans 21 Maven project, I noticed that 
JavaDoc does not produce  a full description of the Lombok tags.

For instance for:

*protected @Getter @Setter @NonNull String message;*

JavaDoc only recognizes the @NonNull tag, omitting the other tags, i.e. :

|protected @NonNullString 
|

|message|

I'd like all the tags to appear in the documentation, how can I do this?


Thanks in advance

--
*/ArbolOne.ca/* Using Fire Fox and Thunderbird. ArbolOne is composed of 
students and volunteers dedicated to providing free services to 
charitable organizations. ArbolOne on Java Development is in progress [ í ]

Re: Less info please.

2024-05-03 Thread Tomo Suzuki
“-ntp” (no transfer progress) is my favorite command line option.

Regards,
Tomo


On Fri, May 3, 2024 at 06:32 Arbol One  wrote:

> Debian 12
> NetBeans 21
> Apache Maven 3.8.7
>
> Hello.
>
> The Ant tool produces very little information regarding its work. On the
> other hand, Maven displays lots and lots of output telling me what's
> happening under the hood.
> I am not interested in so much data about what Maven does in the
> background, all I need to know, for now, is that there are not errors
> and what the compilation output is.
>
> What can I do to make Maven display less data about what it does under
> the hood?
>
> Thanks in advance!
>
> --
> */ArbolOne.ca/* Using Fire Fox and Thunderbird. ArbolOne is composed of
> students and volunteers dedicated to providing free services to
> charitable organizations. ArbolOne on Java Development is in progress [ í ]


Re: Less info please.

2024-05-03 Thread Bernd Eckenfels
I am afraid there is no good concept to get
only relevant output (it’s not trivial) but you
can use maven daemon I feel it compresses
the output better for interactive consumption.

In addition to that some plugins might be
especially bad (for your use case) - I would
communicate that to the plugin project it’s
nothing maven parent project has control over
in all cases.

And finally warnings should be actually
addressed. 

Gruß
Bernd

Arbol One wrote on 3. May 2024 12:32 (GMT +02:00):

> Debian 12
> NetBeans 21
> Apache Maven 3.8.7
> 
> Hello.
> 
> The Ant tool produces very little information regarding its work. On the 
> other hand, Maven displays lots and lots of output telling me what's 
> happening under the hood.
> I am not interested in so much data about what Maven does in the 
> background, all I need to know, for now, is that there are not errors 
> and what the compilation output is.
> 
> What can I do to make Maven display less data about what it does under 
> the hood?
> 
> Thanks in advance!
> 
> -- 
> */ArbolOne.ca/* Using Fire Fox and Thunderbird. ArbolOne is composed of 
> students and volunteers dedicated to providing free services to 
> charitable organizations. ArbolOne on Java Development is in progress [ í
> ]


Gruß
Bernd
— 
https://bernd.eckenfels.net

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



Re: Maven && NetBeans && outputWindow && colours

2024-05-03 Thread Nils Breunese
Maven colors logging output by default when possible (`--color=auto`, see 
https://maven.apache.org/ref/3.8.7/maven-embedder/cli.html), so Maven code 
(including plugins) should log errors via the logging API used by Maven (SLF4J, 
see https://maven.apache.org/maven-logging.html) instead of `System.err`.

Or are you looking to colorize errors from your application when it is run by 
Maven, instead of errors logged by Maven or one of its plugins?

Nils.

> Op 3 mei 2024 om 12:25 heeft Arbol One  het volgende 
> geschreven:
> 
> Debian 12
> NetBeans 21
> Apache Maven 3.8.7
> 
> Hello.
> 
> When using the Ant tool System.err.println() displays data in red, however, 
> when using Maven, the same expression does not produce a coloured output.
> I'd very much like the ..err.. output be in red colour. So, what can I do to 
> make Maven display ..err.. outputs in red?
> 
> 
> --
> */ArbolOne.ca/* Using Fire Fox and Thunderbird. ArbolOne is composed of 
> students and volunteers dedicated to providing free services to charitable 
> organizations. ArbolOne on Java Development is in progress [ í ]


Re: Less info please.

2024-05-03 Thread Nils Breunese
See https://maven.apache.org/maven-logging.html for information on how to 
configure Maven logging. You can either configure this globally or for a 
specific project or Maven invocation. When using the default SLF4J Simple 
logging implementation, you can override the 
`org.slf4j.simpleLogger.defaultLogLevel` property to change which messages get 
logged based on their log level. Set it to `error` to only see messages with 
level `error` or higher.

Nils.

> Op 3 mei 2024 om 12:32 heeft Arbol One  het volgende 
> geschreven:
> 
> Debian 12
> NetBeans 21
> Apache Maven 3.8.7
> 
> Hello.
> 
> The Ant tool produces very little information regarding its work. On the 
> other hand, Maven displays lots and lots of output telling me what's 
> happening under the hood.
> I am not interested in so much data about what Maven does in the background, 
> all I need to know, for now, is that there are not errors and what the 
> compilation output is.
> 
> What can I do to make Maven display less data about what it does under the 
> hood?
> 
> Thanks in advance!
> 
> --
> */ArbolOne.ca/* Using Fire Fox and Thunderbird. ArbolOne is composed of 
> students and volunteers dedicated to providing free services to charitable 
> organizations. ArbolOne on Java Development is in progress [ í ]


Less info please.

2024-05-03 Thread Arbol One

Debian 12
NetBeans 21
Apache Maven 3.8.7

Hello.

The Ant tool produces very little information regarding its work. On the 
other hand, Maven displays lots and lots of output telling me what's 
happening under the hood.
I am not interested in so much data about what Maven does in the 
background, all I need to know, for now, is that there are not errors 
and what the compilation output is.


What can I do to make Maven display less data about what it does under 
the hood?


Thanks in advance!

--
*/ArbolOne.ca/* Using Fire Fox and Thunderbird. ArbolOne is composed of 
students and volunteers dedicated to providing free services to 
charitable organizations. ArbolOne on Java Development is in progress [ í ]

Maven && NetBeans && outputWindow && colours

2024-05-03 Thread Arbol One

Debian 12
NetBeans 21
Apache Maven 3.8.7

Hello.

When using the Ant tool System.err.println() displays data in red, 
however, when using Maven, the same expression does not produce a 
coloured output.
I'd very much like the ..err.. output be in red colour. So, what can I 
do to make Maven display ..err.. outputs in red?



--
*/ArbolOne.ca/* Using Fire Fox and Thunderbird. ArbolOne is composed of 
students and volunteers dedicated to providing free services to 
charitable organizations. ArbolOne on Java Development is in progress [ í ]

[ANN] Apache Maven Script Interpreter version 1.6 Released

2024-05-03 Thread Slawomir Jaranowski
The Apache Maven team is pleased to announce the release of the Apache
Maven Script Interpreter version 1.6

This component provides some utilities to interpret/execute some scripts
for various implementations: Groovy or BeanShell.

https://maven.apache.org/shared/maven-script-interpreter/

You should specify the version in your project's dependency configuration:


  org.apache.maven.shared
  maven-script-interpreter
  1.6


You can download the appropriate sources etc. from the download page:
https://maven.apache.org/shared/maven-script-interpreter/download.cgi

Release Notes - Maven Shared Components - Version
maven-script-interpreter-1.6

** Improvement
* [MSHARED-1386] - Context ClassLoader for current thread should be
managed

** Dependency upgrade
* [MSHARED-1383] - Upgrade Parent to 42
* [MSHARED-1384] - Bump commons-io:commons-io from 2.16.0 to 2.16.1
* [MSHARED-1385] - Bump org.apache.groovy:groovy from 4.0.20 to 4.0.21

Enjoy,

-The Apache Maven team