Re: Groovy -jar

2025-02-25 Thread Tommy
s would need to be replaced > whenever a new Groovy version becomes the standard which is MUCH more > involved. > > > Regards, > Per > > From: "steve.etchel...@gmail.com" > Reply to: "users@groovy.apache.org" > Date: Monday, 24 February 2025 a

RE: Groovy -jar

2025-02-24 Thread steve.etchelecu
you and others have very different backgrounds/environments so thanks for the feedback. From: Per Nyfelt Sent: Monday, February 24, 2025 11:38 AM To: users@groovy.apache.org Subject: Re: Groovy -jar The reasons are: 1. Storage: I can easily package an analysis into a simple

Re: Groovy -jar

2025-02-24 Thread Per Nyfelt
rds, Per From: "steve.etchel...@gmail.com" Reply to: "users@groovy.apache.org" Date: Monday, 24 February 2025 at 01:52 To: "users@groovy.apache.org" Subject: RE: Groovy -jar You don't often get email from steve.etchel...@gmail.com. Learn

Re: Groovy -jar

2025-02-23 Thread o...@ocs.cz
cz > Sent: Sunday, February 23, 2025 11:27 AM > To: users@groovy.apache.org > Subject: Re: Groovy -jar > > Per, > > we sort of have debated this some time ago, when groovy-all.jar was, sadly, > removed. > > We use a similar approach, nevertheless, we need much more

RE: Groovy -jar

2025-02-23 Thread steve.etchelecu
Per, Out of curiosity why wouldn’t you want to include groovy jars in every jar bundle. Is it the maintenance of groovy security patches? It isn’t the storage is it? From: o...@ocs.cz Sent: Sunday, February 23, 2025 11:27 AM To: users@groovy.apache.org Subject: Re: Groovy -jar

Re: Groovy -jar

2025-02-23 Thread o...@ocs.cz
Per, we sort of have debated this some time ago, when groovy-all.jar was, sadly, removed. We use a similar approach, nevertheless, we need much more complex classpath. On the other hand, since we deploy WebObjects, we just could take the standard NeXT/Apple WO launch script and very slightly c

Re: Groovy -jar

2025-02-23 Thread Per Nyfelt
Thanks for this! For the use case you mention it makes perfect sense to do it that way. Since I don't want to include groovy jars in every jar bundle, I ended up with this instead: https://github.com/Alipsa/groovyjar/blob/main/groovyjar I still think something similar would be nice and usefu

RE: Groovy -jar

2025-02-22 Thread steve.etchelecu
Hi Per, I have had (very) good luck with a slightly different approach. Rather than 'groovy -jar myapp.jar' I went with 'java -jar myapp.jar'. And this had another, somewhat unexpected, benefit. Building my app with shadowJar (thanks to the help I receiv