Re: how to get latest plugin-version using mvn versions:display-plugin-updates?

2022-07-25 Thread Delany
Always force an update with the -U switch. Delany On Tue, 26 Jul 2022, 06:55 Stephan Wissel, wrote: > When I run > > mvn versions:display-plugin-updates > > on my project, I get the result: > > [*INFO*] All plugins with a version specified are using the latest > versions. > > [*INFO*] > > [*INFO

how to get latest plugin-version using mvn versions:display-plugin-updates?

2022-07-25 Thread Stephan Wissel
When I run mvn versions:display-plugin-updates on my project, I get the result: [*INFO*] All plugins with a version specified are using the latest versions. [*INFO*] [*INFO*] All plugins have a version specified. [*INFO*] [*INFO*] Project requires minimum Maven version for build of: 3.8.1 [

Re: java.lang.ClassNotFoundException: com.google.common.base.Preconditions

2022-07-25 Thread Bernd Eckenfels
The problem is how your app (or the memory measuit lib) is loading classes. It does not seem to use the classloader from your application main class (which is the one maven provides prepared with your dependencies). Maybe it helps to set the thread context classloader with the app classloader

[ANN] Maven Resources Plugin 3.3.0 released

2022-07-25 Thread Michael Osipov
Subject: [ANN] Maven Resources Plugin 3.3.0 released The Apache Maven team is pleased to announce the release of the Maven Resources Plugin version 3.3.0. https://maven.apache.org/plugins/maven-resources-plugin/ You should specify the version in your project's plugin configuration: org.ap

Re: java.lang.ClassNotFoundException: com.google.common.base.Preconditions

2022-07-25 Thread Martin Gainty
Ability to add additional jars are configured with these 2 parameters true true full example located at java - Maven exec:exec - Need additional classpath elements for plugin - Stack Overflow

Re: java.lang.ClassNotFoundException: com.google.common.base.Preconditions

2022-07-25 Thread Siddharth Jain
I understand that. But we have been using maven exec:java for other projects and did not run into this exception with them. *So we want to understand why its not working here?* the debug log also shows that guava is added to the classpath. how can we debug this issue further? could this be a bug in

[ANN] Maven Site Plugin 4.0.0-M3 released

2022-07-25 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven Site Plugin, version 4.0.0-M3. https://maven.apache.org/plugins/maven-site-plugin/ Release Notes - Maven Site Plugin - Version 4.0.0-M3 ** Dependency upgrade * [MSITE-905] - Upgrade Doxia and Maven Reporting stack *

Re: java.lang.ClassNotFoundException: com.google.common.base.Preconditions

2022-07-25 Thread Martin Gainty
He advised you to not use exec:java which uses a configured classloader He advised you use exec:exec Directions to use exec:exec provided here Exec Maven Plugin – exec:exec (mojohaus.org) Exec Maven Plugin - MojoHaus