Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
After restore the action, it fails now. May I ask what is the proper nexusUrl for apache snapshot? Best, tison. tison 于2023年6月25日周日 15:51写道: > Suspected related code[1]. > > and cc dev@opendal.a.o > > Best, > tison. > > [1] >

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
Suspected related code[1]. and cc dev@opendal.a.o Best, tison. [1] https://github.com/sonatype/nexus-maven-plugins/blame/d36fd861662d566071390ff75dae79846f46901c/staging/maven-plugin/src/main/java/org/sonatype/nexus/maven/staging/remote/Parameters.java#L95 tison 于2023年6月25日周日 15:50写道: > Hi,

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread Tamás Cservenák
For RAO it is https://repository.apache.org/ But using this plugin is really not recommended, even Sonatype abandoned it. Hth T On Sun, Jun 25, 2023, 10:11 tison wrote: > After restore the action, it fails now. May I ask what is the proper > nexusUrl for apache snapshot? > > Best, > tison. >

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
Aha..Unfortunately not. I use sonatype plugin and follow Netty's practice. It seems for snapshot, previously (the same version of plugin) it can auto set nexusUrl and serverId. But now it cannot: $ cat .index

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
And I remember that when I add the nexusUrl just as suggested above, the action run failed with 403: Failed to execute goal org.sonatype.plugins:nexus-staging-maven-plugin:1.6.13:deploy (default-cli) on project opendal-java: Execution default-cli of goal

Re: [VOTE] Release Apache Maven 4.0.0-alpha-7

2023-06-25 Thread Guillaume Nodet
Yes, I copied the mail I sent on friday for alpha-6, but this one is for alpha-7. I changed the checksums but forgot to change the names of the files ! I cancelled alpha-6 because of a nasty bug that could expose passwords/passphrase when doing a release with the shade plugin involved. Le dim.

nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
Hi, I don't know if it's a Maven issue or INFRA issue or plugin issue (as I saw the related part is written by the current Maven PMC chair, I posted it here). The question is, when I stage a package for multiple platforms, I use a local staging flavor that specifies -DskipRemoteStaging=true. It

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
Thanks for your information! Then I can I achieve the similar target? I need to build staging artifacts in different platforms and then merge it and deploy. Best, tison. Tamás Cservenák 于2023年6月25日周日 16:13写道: > For RAO it is https://repository.apache.org/ > > But using this plugin is really

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread Tamás Cservenák
Hm, I remember your use case as we discussed it here: https://lists.apache.org/thread/vqgbdp61y5jg5fgdhmgx4zycl4ps39s8 I had a feeling you sorted it out, and did it without the aforementioned plugin... T On Sun, Jun 25, 2023 at 10:20 AM tison wrote: > And I remember that when I add the

Re: [VOTE] Release Apache Maven 3.9.3

2023-06-25 Thread Karl Heinz Marbaise
Hi, difference between Maven 3.9.2, getting the following output: (mvn clean verify): [INFO] BUILD SUCCESS [INFO] [INFO] Total time: 2.397 s [INFO] Finished at: 2023-06-25T11:48:38+02:00 [INFO]

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
I get it now because we don't use a -SNAPSHOT suffix so the logic changes.. Let me workaround for the SNAPSHOT now and see if the formal release cause a 403. Best, tison. tison 于2023年6月25日周日 18:47写道: > Or the question can be - I have a Maven project having multiple > classifier variants to

Re: [VOTE] Release Apache Maven 4.0.0-alpha-7

2023-06-25 Thread Guillaume Nodet
Le dim. 25 juin 2023 à 12:33, Karl Heinz Marbaise a écrit : > Hi, > > I've tested several projects with it and also in relationship with Maven > 3.9.X.. > > The same as in Maven 3.9.3 .. plugins used which have issues like the > maven-site-plugin (3.12.1) and being reported via >

Re: [VOTE] Release Apache Maven 4.0.0-alpha-7

2023-06-25 Thread Karl Heinz Marbaise
Hi, I've tested several projects with it and also in relationship with Maven 3.9.X.. The same as in Maven 3.9.3 .. plugins used which have issues like the maven-site-plugin (3.12.1) and being reported via `-Dmaven.plugin.validation=VERBOSE` (in Maven 3.9.3) will not produce even a hint in Maven

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
Or the question can be - I have a Maven project having multiple classifier variants to deploy. I can build them separately on different machine. How can I finish the last mile to deploy it to Apache Nexus server. (for snapshots now). Best, tison. tison 于2023年6月25日周日 16:41写道: >

Re: HPI plugin

2023-06-25 Thread Benjamin Marwell
Hello Basil, I wrote the mail while the ITs were running. Please note the naming issue is not "minor". It will break the build very soon. There's a reason for this: SEE: https://maven.apache.org/guides/plugin/guide-java-plugin-development.html QUOTE: You will typically name your plugin

Re: HPI plugin

2023-06-25 Thread Benjamin Marwell
Hi Basil, the first issue I see when using Maven 3.9.2: [INFO] --- plugin:3.9.0:descriptor (default-descriptor) @ maven-hpi-plugin --- [WARNING] Artifact Ids of the format maven-___-plugin are reserved for plugins in the Group Id org.apache.maven.plugins Please change your artifactId to the

Re: HPI plugin

2023-06-25 Thread Basil Crow
Hi Ben, While the Jenkins project would likely accept patches fixing those issues, they seem to be of very low priority. If you discover any issues of substance that ought to be fixed, please let me know. Basil - To

Re: nexusUrl checked even skipRemoteStaging specified to true

2023-06-25 Thread tison
All works now. Removed INFRA from cc. I'd like to ask the Maven developers that if the sonatype plugin is deprecated, is there some alternatives in the community? `mvn deploy` seems limited or hard to use (works well for pure java project, I agree) at least I don't know how to release multi