Re: aggregator project types

2022-01-31 Thread Delany
Hi Mantas, The children are dependents, not dependencies - as in human relations. This isn't really an issue since the three aspects of project aggregation, configuration inheritance, and dependency management are separate. I hope you no longer think there's a problem with build order? I want my

Re: aggregator project types

2022-01-31 Thread Mantas Gridinas
Seems reasonable to be honest. I would make a guess that aggregators with their own sources would need to decide what to do with their children: should they be treated as additional dependencies, what should be the build order of such module. But if you treat children as dependencies then you intro

Re: aggregator project types

2022-01-31 Thread Delany
Yes but why? Why should I have to make separate projects just for the purpose of aggregating other projects? This isn't the case in g*. Delany On Tue, 1 Feb 2022 at 00:47, Nils Breunese wrote: > You can create a multi-module project, with one of the modules using its > sibling modules as de

Re: Question for Maven Plugin developers/maintainers

2022-01-31 Thread Manfred Moser
Fair enough and good examples for using beanshell in the pom. My point was mostly that there are alternatives. Also from all I understand Tamás asked about implementing part of a plugin in beanshell. That is what you are avoiding by doing it in the POM. And if you were to implement a plugin I w

Re: Question for Maven Plugin developers/maintainers

2022-01-31 Thread Alexander Kriegisch
I am replying to Manfred rather than to Tamás, because I am only contributing to one plugin, and it is not using any Beanshell stuff. But I do use Beanshell scripting in a few projects where it is difficult too avoid, because I have not found any proper plugins to do what I need. Examples include:

Re: aggregator project types

2022-01-31 Thread Nils Breunese
You can create a multi-module project, with one of the modules using its sibling modules as dependencies. The parent pom.xml would be of type ‘pom’ and contain the list of all modules in the project of type ‘jar’. Nils. > Op 31 jan. 2022 om 13:58 heeft Delany het > volgende geschreven: > > 

Re: Possible protocol error, handshake_error when using Maven

2022-01-31 Thread Nils Breunese
christopher.mil...@gd-ms.com wrote: > Yes, we have a local Nexus repo where I can use curl command to > upload/download without errors. When you have issues it’s when Maven is trying to download something directly from repo.maven.apache.org? So you don’t use your Nexus instance as a proxy for

Re: Question for Maven Plugin developers/maintainers

2022-01-31 Thread Manfred Moser
I think beanshell is long dead. Any plugin that uses it would be for a very old Maven version and would need a lot of work when upgrading. So we should be okay to deprecate And in terms of ANT .. if there are any out there.. similar things will apply and https://maven.apache.org/plugins/maven-a

RE: Possible protocol error, handshake_error when using Maven

2022-01-31 Thread christopher.mil...@gd-ms.com
Yes, we have a local Nexus repo where I can use curl command to upload/download without errors. -Original Message- From: Nils Breunese Sent: Friday, January 28, 2022 3:23 PM To: Maven Users List Subject: Re: Possible protocol error, handshake_error when using Maven Can you

Re: Possible protocol error, handshake_error when using Maven

2022-01-31 Thread Nils Breunese
I’m not sure, but I suspect RHEL 8.1 might have some outdated CA certificates. I think that updating to the latest RHEL update (8.4?) might resolve this issue. Nils. > Op 31 jan. 2022, om 16:01 heeft christopher.mil...@gd-ms.com het volgende > geschreven: > > > Here is the java output: > >

RE: Possible protocol error, handshake_error when using Maven

2022-01-31 Thread christopher.mil...@gd-ms.com
Here is the java output: $ java -version openjdk version "1.8.0_302" OpenJDK Runtime Environment (build 1.8.0_302-b08) OpenJDK 64-Bit Server VM (build 25.302-b08, mixed mode) $ echo JAVA_HOME /etc/alternatives/java_sdk_1.8.0_openjdk I'm chatting with a few co-workers and they might be havi

aggregator project types

2022-01-31 Thread Delany
Can someone remind me why a type JAR project can't have modules? Is it unreasonable to expect a JAR project to produce its own JAR artifact, and then act as an aggregator of other projects? Thanks, Delany