[ANN] Apache Maven Archiver 3.6.0 released

2022-06-26 Thread Tamás Cservenák
The Apache Maven team is pleased to announce the release of the Apache Maven Archiver, version 3.6.0. https://maven.apache.org/shared/maven-archiver/ Release Notes - Maven Shared Components - Version maven-archiver-3.6.0 ** Task * [MSHARED-991] - Require Java 8 * [MSHARED-1081] - Drop

Re: maven-shade-plugin not including dependencies

2022-06-26 Thread Alexander Kriegisch
> I get a build success, but when I inspect the generated jar, I don’t > see the junit classes Firstly, you are not crerating a test JAR but a regular JAR with application classes, so of course test-scoped dependencies like JUnit are not going to be contained in the uber JAR. Secondly, you are

[ANN] Apache Maven Wagon 3.5.2 released

2022-06-26 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Apache Maven Wagon, version 3.5.2. https://maven.apache.org/wagon/ Release Notes - Maven Wagon - Version 3.5.2 ** Bug * [WAGON-627] - Maven deploy fails with 401 Unauthorized when using £ in password * [WAGON-628] -

[ANN] Maven Site Plugin 4.0.0-M2 released

2022-06-26 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven Site Plugin, version 4.0.0-M2. https://maven.apache.org/plugins/maven-site-plugin/ Release Notes - Maven Site Plugin - Version 4.0.0-M2 ** Bug * [MSITE-901] - If preceding standalone report has been run, site:jar does

maven-shade-plugin not including dependencies

2022-06-26 Thread Désilets , Alain
I am trying to use maven-shade-plugin for the first time to create an uber-jar and I can’t even get the simplest example to work. For example, I created a simple pom based on the example at the top of this page: