[ANN] Apache Maven Build cache extension

2024-05-12 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Build cache extension, version 1.2.0 Build cache is an extension that makes large Maven builds more efficient. A combination of features achieves that: - Incremental builds work on the modified part of the project graph

[ANN] Apache Maven Toolchains Plugin 3.2.0

2024-04-21 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Toolchains Plugin, version 3.2.o The Toolchains Plugins enable sharing tool configuration across plugins. For example, to make sure that plugins like compiler, surefire, and javadoc all use the same JDK for execution,

[ANN] Apache Maven Invoker Plugin 3.6.1 Released

2024-04-01 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Invoker Plugin, version 3.6.1 The Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project execution is successful and can optionally verify the output generated from a

Re: Build a maven-plugin on JDK-22 with Maven 3.9.6

2024-03-03 Thread Olivier Lamy
Sorry for the confusion but you simply need to upgrade maven-plugin-tools version in your pom as last version already include the upgraded asm version It's usually a good practice to declare in your pom every plugins you are using. On Mon, 4 Mar 2024 at 16:07, Olivier Lamy wrote: > > ac

Re: Build a maven-plugin on JDK-22 with Maven 3.9.6

2024-03-03 Thread Olivier Lamy
actually this need a version of this https://github.com/apache/maven-plugin-tools which have the necessary upgrade of asm. (maybe you can test locally a snapshot to be sure it works) But bear in mind if you are using maven-invoker-plugin with some groovy scripts to verify, you will have some

Re: Publishing to Maven Central and non-OSS plugin dependencies

2024-02-29 Thread Olivier Lamy
users will not be able to rebuild from sources. is it a requirement? No real idea as already said in this thread, you need to ask Sonatype. But it breaks the concept of opensource as you cannot build from the sources :) On Fri, 1 Mar 2024 at 02:25, Florent Biville wrote: > > The real plugin is

Re: Strange behavior using maven build-cache extension in maven-release-plugin goals

2024-01-25 Thread Olivier Lamy
interesting. is the deploy goal executed twice as well when you run "mvn deploy"? (as you marked as it as alwaysRun) On Sun, 21 Jan 2024 at 23:00, Javier Gómez wrote: > > Hi all, > > We are starting to apply the build-cache maven extension in our local and CI > environment, and we have seen

Re: what javac is actually used?

2023-12-03 Thread Olivier Lamy
Hi, If by javac you mean the cli, per default m-compiler-p is not using exactly this but in the process javax.tools.JavaCompiler. If you want to really use javac (and so forking the compilation) you must configure it via the fork option

[ANN] Apache Maven Build Cache Extension 1.1.0

2023-11-29 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Build Cache Extension 1.1.0. Build cache is an extension that makes large Maven builds more efficient. https://maven.apache.org/extensions/maven-build-cache-extension/ Release Notes - Maven Build Cache Extension -

Re: Re: How to log in surefire which test classes are executed in which surefire thread?

2023-09-14 Thread Olivier Lamy
can reproduce it in a small project. In the meantime, if I >> can share some debug logs from surefire which can help in debugging the >> issue let me know, and I can do that. >> >> Also, if there are any open issues related to this in Surefire, can you >> please shar

Re: Re: How to log in surefire which test classes are executed in which surefire thread?

2023-09-12 Thread Olivier Lamy
5 Version > = 5.10.0 and surefire 3.1.2 > > On Tue, Sep 12, 2023 at 6:34 PM Debraj Manna > wrote: > > > Olivier > > > > Can you please let me know what version of Surefire and JUnit5 you are > > using? > > > > Thanks > > > > On Tue, Sep 1

Re: Re: How to log in surefire which test classes are executed in which surefire thread?

2023-09-12 Thread Olivier Lamy
Maybe concurrent access to files in surefire I'm using this extensively but only with 3 max parallel test. Can you try junit.jupiter.execution.parallel.config.fixed.parallelism=3 And see if you still have the issues. If not and if increasing this number is causing the issue. This sound like a

Re: Maven Compiler plugins does not support 21 yet?

2023-09-12 Thread Olivier Lamy
Hi Please run your build using option -e and have a look at the stack. I use 21, and it works fine. This might be some restrictions with spring boot parent. Or, according to the error message "error: release version 21 not supported" you might not using a jdk 21. On Tue, 12 Sept 2023 at 17:16,

Re: maven-build-cache: extra attached directories output of target

2023-08-27 Thread Olivier Lamy
Hi On Sat, 26 Aug 2023 at 04:40, Ben Tatham wrote: > > Hello, > Is it possible to add extra attached directories that are not within the > project build output directory (ie not in ./target?) Currently no. A possible solution could be to create an extra artifact containing what you need and

Re: CVE-2021-26291 in maven-bundle plugin

2023-08-19 Thread Olivier Lamy
Hi This plugin is maintained by the Apache Felix project so please refer to them for any questions. Anyway please read the description of the CVE so it's very unlikely you are subject to a real security issue here. Remember scanner is just "stupidly" looking at dependencies and most of the time

Re: Questions about the build cache plugin

2023-06-18 Thread Olivier Lamy
the output cache for that new input checksum. > > Really nice feedback on build cache extension in real life! > > Thanks a lot to the contributor to this great feature > > Regards, > > Hervé > > Le mardi 13 juin 2023, 07:11:50 CEST Olivier Lamy a écrit : > > On Mo

Re: Questions about the build cache plugin

2023-06-12 Thread Olivier Lamy
On Mon, 12 Jun 2023 at 21:38, Benjamin Marwell wrote: > > Am Mo., 12. Juni 2023 um 12:08 Uhr schrieb Olivier Lamy : > > > On Mon, 12 Jun 2023 at 18:53, Benjamin Marwell wrote: > > > > > > Hello everyone! > > > > > > First of all t

Re: Questions about the build cache plugin

2023-06-12 Thread Olivier Lamy
On Mon, 12 Jun 2023 at 18:53, Benjamin Marwell wrote: > > Hello everyone! > > First of all thank you everyone working on the build cache plugin! It > is amazing! > > At least some of the following questions seem to be of interest to > most users and might end up on the documentation, So here's a

[ANN] Apache Maven Build Cache extension 1.0.1

2023-06-08 Thread Olivier Lamy
Hi, The Apache Maven team is pleased to announce the release of Apache Maven Build Cache extension 1.0.1. The Build cache is an extension targeted to simplify and make more efficient work with large builds in Maven. With features such as incremental builds work on the modified part of the project

Re: MavenCLI failing in Jenkins

2023-04-19 Thread Olivier Lamy
Hi How are you running Maven in Jenkins? Pipeline? Maven job type? On Thu, 20 Apr 2023 at 07:43, Javier Ortiz Bultron wrote: > > Code works perfectly on my Mac but not on Jenkins. I'm running this on the > Maven official image: maven:3.9.1-eclipse-temurin-11 > > I'm trying to figure out how to

Re: [External] : Re: NPE Exception with Surefire3.0.0

2023-04-17 Thread Olivier Lamy
Hi Do you really need the dependencies section within the plugin section? just use org.apache.maven.plugins maven-surefire-plugin 3.0.0 On Tue, 18 Apr 2023 at 15:56, Sirisha Alla wrote: > >

Re: some feedback

2023-04-16 Thread Olivier Lamy
On Mon, 17 Apr 2023 at 03:07, Nicolas Delsaux wrote: > > Hi all, > > I've met Hervé Boutemy at Devoxx last week (well, I hope Hervé remember > we discussed this subject wednesday evening), and we discussed about > some maven subjects. > > Namely, Hervé was looking for some "interesting" projects.

Re: How does reuseFork and forkCount behaves with maven parallel builds?

2023-03-23 Thread Olivier Lamy
ld 2 modules in parallel using this jvm But surefire will fork 1 jvm per module so 1 + (2*1) = 3 > > On Wed, Mar 22, 2023 at 4:51 PM Olivier Lamy wrote: > > > Hi. > > -Tx option will not change anything about how surefire works. > > using this configuration (which is t

Re: How does reuseFork and forkCount behaves with maven parallel builds?

2023-03-22 Thread Olivier Lamy
Hi. -Tx option will not change anything about how surefire works. using this configuration (which is the default): 1 true means surefire will create only one fork and reuse it BUT only for the same maven module. With -T2 you will have a maximum of 2 maven modules building

Re: maven-surefire-plugin add artifact as additionalClasspathElement

2023-02-16 Thread Olivier Lamy
On Thu, 16 Feb 2023 at 20:52, Olivier Lamy wrote: > > On Thu, 16 Feb 2023 at 20:07, Delany wrote: > > > > Hi Stephane, > > > > You can do like this > > > > > > maven-surefire-plugin > > 3.0.0-M9 > >

Re: maven-surefire-plugin add artifact as additionalClasspathElement

2023-02-16 Thread Olivier Lamy
On Thu, 16 Feb 2023 at 20:07, Delany wrote: > > Hi Stephane, > > You can do like this > > > maven-surefire-plugin > 3.0.0-M9 > > > org.apache.commons > commons-email > 1.5 > > >

[ANN] Release Apache Maven Surefire 3.0.0-M9

2023-02-13 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the availability of Maven Surefire 3.0.0-M9. Release Notes - Maven Surefire - Version 3.0.0-M9 ** Bug * [SUREFIRE-2065] - Test Reports Inconsistencies with Parameterized and junit4 * [SUREFIRE-2095] - Fork crash doesn't fail build with

[ANN] Maven Invoker Plugin 3.4.0

2022-12-20 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Invoker Plugin, version 3.4.0 The Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project execution is successful, and optionally can verify the output generated from a given

Re: Modular path vs. class path determination

2022-10-17 Thread Olivier Lamy
On Sat, 1 Oct 2022 at 01:22, Ceki Gülcü wrote: > > > Hello all, > > The logback is attempting to migrate to Junit 5. As a consequence of > this migration, a handful of tests that were previously successful, now > fail. > > For example, the ch.qos.logback.classic.net.DilutedSMTPAppenderTest >

Re: Plans to deprecate or change the default value of maven compiler plugin's showWarnings

2022-09-22 Thread Olivier Lamy
On Thu, 15 Sept 2022 at 00:52, Florent Biville wrote: > Hi everyone, > > A colleague of mine recently stumbled upon this > < > https://stackoverflow.com/questions/9192613/how-do-i-get-a-java-maven-build-to-fail-for-compiler-warnings/33823355#33823355 > > > . > > Quoting the above Stackoverflow

Re: maven-shade-plugin: relocation of package names in resource files (unfortunately not in META-INF/services dir)

2022-09-05 Thread Olivier Lamy
You can create your own transformer implementation and add it as a dependency of the plugin (see sources there [1] to see what interface to implement). not tested but should work Maybe you can use a feature of the resources plugin see

Re: m-javadoc-plugin with JPMS

2022-07-19 Thread Olivier Lamy
On Tue, 19 Jul 2022 at 16:42, Maxim Solodovnik wrote: > On Tue, 19 Jul 2022 at 13:16, Daniel Widdis wrote: > > > > > The only problem of having both is redundancy :) > > > > Technically speaking, you always have an automatic module name even if > you don't explicitly name it. It will use your

Re: JPMS – Test sources extra Java SE module dependencies

2022-07-10 Thread Olivier Lamy
be careful with " module-info.test in your test directory" it's not supported by all IDE On Sun, 3 Jul 2022 at 15:57, Stanimir Stamenkov wrote: > Thank you for the wonderful reference and summary, Daniel! > > While I'm parsing the information along with all its references, indeed > it seems a

[ANN] Apache Maven Surefire 3.0.0-M7 Released

2022-06-06 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Surefire version 3.0.0-M7. https://maven.apache.org/surefire/index.html Apache Maven Surefire is a test framework which include the surefire plugin which is used during the test phase of your build.

Re: question java 1.7 support

2022-03-25 Thread Olivier Lamy
On Sat, 26 Mar 2022 at 2:06 pm, Nils Breunese wrote: > Olivier Lamy wrote: > > > should be 1.7 not 1.17 ;) > > No, 1.7 is for Java 7. For Java 17 it should be just 17. The email subject says “ question java 1.7 support” But yeah should be simply 17 Use release flag r

Re: question java 1.7 support

2022-03-25 Thread Olivier Lamy
should be 1.7 not 1.17 ;) On Sat, 26 Mar 2022 at 13:48, Alexander Ushakov < alexander.ushakov.em...@gmail.com> wrote: > Hello! > > I am trying to play with Apache Kafka and craft next pom.xml > > ```xml > > xmlns="http://maven.apache.org/POM/4.0.0; >

[ANN] Apache Maven Compiler Plugin 3.10.1 Released

2022-03-10 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Compiler Plugin, version 3.10.1 The Compiler Plugin is used to compile the sources of your project. https://maven.apache.org/plugins/maven-compiler-plugin/ You should specify the version in your project's plugin

[ANN] Apache Maven Compiler Plugin 3.10.0 Released

2022-02-14 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Compiler Plugin, version 3.10.0 The Compiler Plugin is used to compile the sources of your project. https://maven.apache.org/plugins/maven-compiler-plugin/ You should specify the version in your project's plugin

Re: Need help for maven site plugin for Apache Helix

2021-11-20 Thread Olivier Lamy
Thanks Hervé!. @Junkai I have merged Hervé's PR On Sat, 20 Nov 2021 at 20:31, Hervé BOUTEMY wrote: > FYI, on the "SiteToolException: Error parsing site descriptor: TEXT must > beimmediately followed by END_TAG and not START_TAG" error, the key Maven > Site > Plugin version is version 3.5,

Re: Need help for maven site plugin for Apache Helix

2021-11-17 Thread Olivier Lamy
not sure what is the content of your ~/.m2/settings.xml but it may have some references to some repositories? such http://restlet.talend.com , http://repository.apache.org/snapshots. note this http the recent change might be you upgrading to the last maven core version? [*INFO*] Generating

Re: jakarta ee 9 ear compatibility

2021-06-14 Thread Olivier Lamy
n. > > Thanks in advance. > Dionysos > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Authentication Header (maven-metadata.xml)

2021-06-08 Thread Olivier Lamy
y phase when the artifact is > snapshot? > > Eduardo Souza > eduardomatoso...@gmail.com > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: HTTP/2 support in Maven

2020-10-23 Thread Olivier Lamy
HTTP/2 support in Maven. I > haven't found such an option. > > If not: Are there any plans to add the support? > > Regards, > Kuba > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Javadoc aggregate fails with MDEP-187 with dependency plugin

2020-06-02 Thread Olivier Lamy
ue. > > Any suggestions on how to resolve this? > > using maven-dependency-plugin 3.0.0 and maven-javadoc-plugin 3.2.0 > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: slf4j-jcl-1.0.1: Checksum validation failed

2020-05-24 Thread Olivier Lamy
Total SpentLeft > Speed > 100 394 100 3940 0 4061 0 --:--:-- --:--:-- --:--:-- > 4104 > c5c0a3fff6071a4c720f1b7aa1b66cb9d0b26a21 - > > So from my perspective, the discrepancy is in line with the Maven warning > message. Maven Central is hosting invalid checksum files. Does anyone know >

Re: Accessing a nexus repository requiring a client certificate

2020-05-17 Thread Olivier Lamy
eep hacking away when i have time. Looks like it'll have to > merged in order... > wagon > resolver > maven proper > > assuming i can get it to work > > > On Sun, May 17, 2020 at 8:15 PM Olivier Lamy wrote: > > > Aether is now maven-resolver project so mai

Re: Accessing a nexus repository requiring a client certificate

2020-05-17 Thread Olivier Lamy
kets are freed and the peer has to handle broken connections. > > > > M > > > > Am 2020-05-17 um 23:42 schrieb Olivier Lamy: > > > Oh Yes I agree the current API would need major (breaking?) changes. > > > But openConnectionInternal creating client would

Re: Accessing a nexus repository requiring a client certificate

2020-05-17 Thread Olivier Lamy
gt; >>> https://issues.apache.org/jira/browse/MNG-1560 > >>>> which references setting maven options for javax.net.ssl.* settings. > >>>> Considering the environment, i'll probably need to be able to specify > >>> the > >>>> key alias name too, just in case there's multiple certificates > >>> available. > >>>> > >>> > >>> MNG-5583. I have intentionally closed this one since no was willing to > >>> work on it. If someone wants to work on it, I'd be happy to discuss. > >>> > >> > > > > > - > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Launching full Maven programmatically

2020-04-17 Thread Olivier Lamy
wants a way to programatically load a POM object. I guess he wants a > way to load a correctly resolved POM not a partially resolved one. > > On Fri, Apr 17, 2020 at 11:02 AM Olivier Lamy wrote: > > > yes maybe some stuff to fix (feel free to send a PR :P ) > > But it's

Re: Launching full Maven programmatically

2020-04-17 Thread Olivier Lamy
---[ jar > ]- > ... > > This is not particular to jgitver but to any core extension (takari > polyglot, tycho pom less, ...). > The way this jenkins project loads the Maven Project Object Model is > somehow wrong or at least not complete. &g

Re: Launching full Maven programmatically

2020-04-16 Thread Olivier Lamy
o stuff */ } > > > > Of course I'm making up these types and method names as I do not know if > > something like this exist or not, hence why I'm asking here. > > > > Thanks in advance. > > > > Cheers > > Andres > > > > > -- > Regards, > Tomo > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

[ANN] Apache Maven Javadoc Plugin 3.2.0 Released

2020-03-16 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Javadoc Plugin, version 3.2.0 The Javadoc Plugin uses the Javadoc tool to generate javadocs for the specified project https://maven.apache.org/plugins/maven-javadoc-plugin/ You should specify the version in your

[ANN] Apache Maven Javadoc Plugin 3.1.1 Released

2019-07-08 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Javadoc Plugin, version 3.1.1 https://maven.apache.org/plugins/maven-javadoc-plugin/ You should specify the version in your project's plugin configuration: org.apache.maven.plugins maven-javadoc-plugin 3.1.1 You can

Re: Maven 3.6.1 & Central Sync Requirements

2019-05-09 Thread Olivier Lamy
0/lombok-maven-1.18.8.0.pom Unknown attribute > 'child.scm.url.inherit.append.path' for tag 'scm' (position: START_TAG seen > .../modules>\n\n scm child.scm.url.inherit.append.path="false">... > @39:50) > > Who needs to fix this? Is this on anyones radar? > > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: windows 10 scm git authentication

2018-12-18 Thread Olivier Lamy
rocess.java:136) > at org.eclipse.jgit.transport.FetchProcess.execute > (FetchProcess.java:122) > at org.eclipse.jgit.transport.Transport.fetch (Transport.java:1138) > at org.eclipse.jgit.api.FetchCommand.call (FetchCommand.java:130) > > > --- > This email has been checked for viruses by Avast antivirus software. > https://www.avast.com/antivirus > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

[ANN] Apache Maven Shade Plugin 3.2.1 Released

2018-11-11 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Shade Plugin, version 3.2.1 Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes or removing unused classes.

[ANN] Maven Plugin Tools 3.6.0

2018-11-01 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Plugin Plugin, version 3.6.0 The Maven Plugin Plugin is used to create a Maven plugin descriptor for any Mojo's found in the source tree, to include in the JAR https://maven.apache.org/plugins/maven-plugin-plugin/

[ANN] Apache Maven PMD Plugin 3.11.0 Released

2018-10-26 Thread Olivier Lamy
The Maven team is pleased to announce the release of the Apache Maven PMD Plugin, version 3.11.0 A Maven plugin for the PMD toolkit, that produces a report on both code rule violations and detected copy and paste fragments, as well as being able to fail the build based on these metrics.

[ANN] Apache Maven Invoker Plugin 3.1.0 Released

2018-05-30 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Invoker Plugin, version 3.1.0 The Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project execution is successful, and optionally can verify the output generated from a

Re: Maven Plugin Testing Tools deprecated

2018-03-01 Thread Olivier Lamy
s-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Olivier Lamy
try a dav url such dav:http(s)://my.webdav.server/ On 27 February 2018 at 21:52, Svensson, Lars <l.svens...@dnb.de> wrote: > On Tuesday, February 27, 2018 12:34 PM, Olivier Lamy [mailto: > ol...@apache.org] wrote: > > > On 27 February 2018 at 21:29, Svensson, Lars <

Re: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Olivier Lamy
On 27 February 2018 at 21:29, Svensson, Lars <l.svens...@dnb.de> wrote: > Hi Olivier and thanks for your quick reply! > > On Tuesday, February 27, 2018 11:54 AM, Olivier Lamy [mailto: > ol...@apache.org] wrote: > > > webdav is not a plugin but a protocol supported by w

Re: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Olivier Lamy
g.codehaus.mojo:wagon-maven-plugin:1.0:upload are missing or invalid -> > [Help 1] > > Any help on the correct configuration would be very helpful. > > [1] https://maven.apache.org/guides/mini/guide-configuring- > plugins.html#Configuring_Build_Plugins > > Thanks, > > Lars > > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Running tomcat maven plugin in a multi modules project

2018-01-13 Thread Olivier Lamy
in other module, for example, add a new entity > >> class in module domain, I have to install the ROOT to local repo first > >> before I run tomcat:run within module web, otherwise a error: cannot > find > >> symbol will be reported if I run tomcat:run directly. > >> > >> So how can I install other modules first before I run tomcat:run within > >> module web if I change something in other modules? > >> > >> Thanks in advance. > >> > >> Best regards. > >> > > > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Best way to deploy a specific file and declare its dependencies

2017-11-30 Thread Olivier Lamy
> clean > > > > > > > > > > > > > -- > Sent from: http://maven.40175.n5.nabble.com/Maven-Users-f40176.html > > - > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Maven-Indexer 6.0 Release

2017-11-26 Thread Olivier Lamy
Hi, Sounds good. Sorry I haven't tested that but can we still read Central index? On 27 November 2017 at 08:23, Tamás Cservenák <ta...@cservenak.net> wrote: > More fixes made by Hervé and me. > > Are we ready for 6.0.0? > > On Sun, Nov 26, 2017, 01:10 Olivier Lamy <

Re: Maven-Indexer 6.0 Release

2017-11-25 Thread Olivier Lamy
hink would be "nice thing to do", and would ease later PR > reviews too, by having codestyle aligned across whole project. > > WDYT? > > T > > On Fri, Nov 24, 2017 at 11:01 AM Olivier Lamy <ol...@apache.org> wrote: > > > sounds good! > >

Re: Maven-Indexer 6.0 Release

2017-11-24 Thread Olivier Lamy
t; FWIW, I'm also quite keen on proper release of 6.0 (currently working > > with a locally-built 6.0 snapshot). > > > > Best wishes, > > > > Andreas > > > > > > > > -- > Thanks, > ~t~ > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Maven classloader change / Maven integrator contacts?

2017-09-01 Thread Olivier Lamy
-integration.html) Bamboo (Atlassian) BuildHive (CloudBees) CODESHIP? Cruise Control? Hudson Jenkins [QA] Sonar Qube -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: maven-plugin-testing-harness

2017-08-23 Thread Olivier Lamy
- > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

[ANN] Apache Maven Wagon 3.0.0

2017-08-09 Thread Olivier Lamy
Hi, The Apache Maven team is pleased to announce the Apache Maven Wagon version 3.0.0 Maven Wagon is a transport abstraction that is used in Maven's artifact and repository handling code. Website: http://maven.apache.org/components/wagon/ Release Notes - Maven Wagon - Version 3.0.0 **

[ANN] Apache Maven Compiler Plugin 3.6.2

2017-07-31 Thread Olivier Lamy
Hi The Apache Maven team is pleased to announce the release of the Apache Maven Compiler plugin, version 3.6.2. http://maven.apache.org/plugins/maven-compiler-plugin/ You should specify the version in your project's plugin configuration: org.apache.maven.plugins maven-compiler-plugin 3.6.2

[ANN] Apache Maven Invoker plugin 3.0.1 Released

2017-07-21 Thread Olivier Lamy
Hi, The Apache Maven team is pleased to announce the release of the Apache Maven Invoker Plugin, version 3.0.1 The Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project execution is successful, and optionally can verify the output generated from a

[ANN] Apache Maven Shade Plugin 3.0.0 Released

2017-01-28 Thread Olivier Lamy
Hi, The Apache Maven team is pleased to announce the release of the Apache Maven Shade Plugin, version 3.0.0 This plugin provides the capability to package the artifact in an uber-jar, including its dependencies and to shade - i.e. rename - the packages of some of the dependencies.

[ANN] Apache Maven Assembly Plugin 3.0.0 Released

2016-11-12 Thread Olivier Lamy
Hi, The Apache Maven team is pleased to announce the release of the Apache Maven Assembly Plugin, version 3.0.0 The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its dependencies, modules, site documentation, and other files into a

Re: Jenkins and Maven

2016-10-13 Thread Olivier Lamy
Hehe Thanks Benson to put some coins in the troll machine :-) Well if evil is really ease the user's life so this plugin can be considered evil :-) You have some very convenient features such building dependent projects, javadoc etc.. So it's just a matter of not spending too long on configuring

Re: Mojos that instrument classes

2016-09-15 Thread Olivier Lamy
CESS_CLASSES / PROCESS_TEST_CLASSES, or should it > be COMPILE / TEST_COMPILE? > > > - > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > > -- O

Re: Cobertura Maven Plugin works locally, but not in Jenkins

2016-07-12 Thread Olivier Lamy
Hi Do you have a sample project to reproduce the issue? On Wednesday, 13 July 2016, Hohl, Gerrit wrote: > Hello everyone, > > > > I faced an odd problem today: > > We have a Maven Build which also includes the creation of a > documentation. > > One of the plugins creating the

Re: SCM APIs cause "ref HEAD is not a symbolic ref"

2016-06-15 Thread Olivier Lamy
t; http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.maven.scm%22%20AND%20a%3A%22maven-scm-provider-gitexe%22 > > > http://people.apache.org/~simonetripodi/ > http://twitter.com/simonetripodi > > On Wed, Jun 15, 2016 at 1:49 PM, Olivier Lamy <ol...@apache.org> w

Re: SCM APIs cause "ref HEAD is not a symbolic ref"

2016-06-15 Thread Olivier Lamy
n > on how to modify the operations sequence in order to make it working, when > checking out a tag? > > Many thanks in advance, all the best! > -Simo > > http://people.apache.org/~simonetripodi/ > http://twitter.com/simonetripodi > -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: how can i upload version 1.1.0.1 of tomcat-jdbc

2015-08-24 Thread Olivier Lamy
by email reply. -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Codehaus Mojo repository

2015-06-03 Thread Olivier Lamy
in search of the documentation formerly hosted at codehaus: some/most of it can be found at http://www.mojohaus.org Cheers, Wolf -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: Codehaus Mojo repository

2015-06-03 Thread Olivier Lamy
in the meantime? Thanks, Curtis -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: 409 Error Code with deploy-file

2015-05-21 Thread Olivier Lamy
] Finished at: Wed May 20 22:58:20 PDT 2015 [INFO] Final Memory: 3M/227M [INFO] On Wed, May 20, 2015 at 8:59 PM, Olivier Lamy ol...@apache.org wrote: I think you need to have a look at your repository manager (which

Re: 409 Error Code with deploy-file

2015-05-20 Thread Olivier Lamy
:825) at org.sonatype.aether.connector.wagon.WagonRepositoryConnector.put(WagonRepositoryConnector.java:465) ... 26 more [ERROR] -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: about source and target in maven-compiler-plugin

2015-03-29 Thread Olivier Lamy
plugin artifactIdmaven-compiler-plugin/artifactId version2.3.2/version configuration source1.5/source target1.5/target /configuration /plugin thanks in advance, Lin -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

[ANN] Apache Archiva 2.2.0 Released

2015-03-02 Thread Olivier Lamy
The Apache Archiva team is pleased to announce the release of Archiva 2.2.0. Archiva is available for download from the web site. Archiva is an application for managing one or more remote repositories, including administration, artifact handling, browsing and searching. If you have any

Re: takari-plugin-integration-testing requires one takari-jar project ?

2015-02-26 Thread Olivier Lamy
and tell him to ask in the place where this project is hosted and to the people who maintained it. It's probably better to have more accurate answers. Manfred Olivier Lamy wrote on 25.02.2015 18:23: Hi, AFAIK this Takari project is not hosted neither maintained here at Apache

Re: takari-plugin-integration-testing requires one takari-jar project ?

2015-02-25 Thread Olivier Lamy
and IT in the same plugin project ? thanks, Cristiano - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org -- Olivier Lamy http://twitter.com/olamy | http

Re: Jitpack?

2015-02-19 Thread Olivier Lamy
On 20 February 2015 at 13:19, Laird Nelson ljnel...@gmail.com wrote: Has anyone else seen this? https://jitpack.io/ Or am I just living under a rock as usual? Anyway, I thought it was kind of interesting. Yup interesting Best, Laird -- http://about.me/lairdnelson -- Olivier

Re: E-Book Beter Builds with Maven seems to be missing

2014-11-24 Thread Olivier Lamy
://www.fuzzyfacetheater.com/misfile/! - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org -- Olivier Lamy http://twitter.com/olamy | http

Re: [ANN] Apache Maven Wagon 2.8

2014-11-17 Thread Olivier Lamy
2.7 or 2.8? 2014-11-17 1:15 GMT+01:00 Olivier Lamy ol...@apache.org: Hi, The Apache Maven team is pleased to announce the release of Apache Maven Wagon 2.8. Apache Maven Wagon is a transport abstraction that is used in Maven's artifact and repository handling code. Web site: http

[ANN] Apache Maven Wagon 2.8

2014-11-16 Thread Olivier Lamy
Hi, The Apache Maven team is pleased to announce the release of Apache Maven Wagon 2.8. Apache Maven Wagon is a transport abstraction that is used in Maven's artifact and repository handling code. Web site: http://maven.apache.org/wagon/ Release Notes - Maven Wagon - Version 2.8 ** Bug *

Re: Need help regarding apache maven

2014-10-01 Thread Olivier Lamy
- To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org -- Olivier Lamy http://twitter.com/olamy | http://linkedin.com/in/olamy

[ANN] Apache Maven Wagon 2.7 Released

2014-09-17 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of Apache Maven Wagon 2.7. Maven Wagon is a transport abstraction that is used in Maven's artifact and repository handling code. http://maven.apache.org/wagon/ Release Notes - Maven Wagon - Version 2.7 ** New Feature * [WAGON-420] -

Re: nonProxyHosts not working

2014-09-08 Thread Olivier Lamy
the error. I know everything else is correct because if I set active=false, the deploy succeeds. Thanks John -- Olivier Lamy Ecetera: http://ecetera.com.au http://twitter.com/olamy | http://linkedin.com/in/olamy

[ANN] Apache Archiva 2.1.1 Released

2014-09-04 Thread Olivier Lamy
The Apache Archiva team is pleased to announce the release of Archiva 2.1.1. Archiva is available for download from the web site. Archiva is an application for managing one or more remote repositories, including administration, artifact handling, browsing and searching. If you have any

[ANN] Apache Archiva 2.1.0

2014-07-19 Thread Olivier Lamy
Hi, The Apache Archiva team would like to announce the release of Archiva 2.1.0. Archiva is available for download from the web site ( http://archiva.apache.org ) Archiva is an application for managing one or more remote repositories, including administration, artifact handling, browsing and

Re: Unable to download maven ant tasks

2014-05-21 Thread Olivier Lamy
I just fixed that. Cheers Olivier On 21 May 2014 21:52, Andreas Sandberg andreasf...@hotmail.com wrote: http://maven.apache.org/ant-tasks/download.cgi When trying to download the latest Maven ant tasks Ant plugin I retrieve an 403 forbidden error. BR! // Andreas -- Olivier Lamy

[ANN] Apache Maven Shade Plugin 2.3 Released

2014-05-01 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven Shade Plugin, version 2.3. This plugin provides the capability to package the artifact in an uber-jar, including its dependencies and to shade - i.e. rename - the packages of some of the dependencies.

  1   2   3   4   5   6   7   8   9   10   >