Re: Question for Maven Plugin developers/maintainers

2022-02-01 Thread Hervé BOUTEMY
= the maven-script part of https://maven.apache.org/plugin-tools/index.html Le mardi 1 février 2022, 09:16:36 CET Tamás Cservenák a écrit : > Howdy, > > Yes, the reason for this question was to deprecate the "scripting" bit of > maven-plugin-tools, as many of us did not see such a beast in a

Re: Question for Maven Plugin developers/maintainers

2022-02-01 Thread Tamás Cservenák
Howdy, Yes, the reason for this question was to deprecate the "scripting" bit of maven-plugin-tools, as many of us did not see such a beast in a while T On Tue, Feb 1, 2022 at 2:10 AM Manfred Moser wrote: > Fair enough and good examples for using beanshell in the pom. My point was >

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

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: 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

Re: Question for Maven Plugin developers/maintainers

2022-01-30 Thread Maarten Mulders
On 28/01/2022 14:52, Tamás Cservenák wrote: Howdy, We'd like to get some feedback from anyone who implemented, maintained or plans to implement a Maven Plugin (Mojo): Did any of you see a Maven Plugin that is NOT implemented in Java (but uses Ant or Beanshell scripting)? If I recall

Re: Question for Maven Plugin developers/maintainers

2022-01-28 Thread Karl Heinz Marbaise
On 28.01.22 14:52, Tamás Cservenák wrote: Howdy, We'd like to get some feedback from anyone who implemented, maintained or plans to implement a Maven Plugin (Mojo): Did any of you see a Maven Plugin that is NOT implemented in Java (but uses Ant or Beanshell scripting)? No... Currently

Question for Maven Plugin developers/maintainers

2022-01-28 Thread Tamás Cservenák
Howdy, We'd like to get some feedback from anyone who implemented, maintained or plans to implement a Maven Plugin (Mojo): Did any of you see a Maven Plugin that is NOT implemented in Java (but uses Ant or Beanshell scripting)? Currently implementing Maven Plugins with these scripting solutions