Re: Can the jar plugin respect .gitignore?

2023-11-13 Thread Karl Heinz Marbaise
On 10.11.23 19:42, Joseph Kessselman wrote: (Or, equivalently be told to take exclude list from a file in .gitignore syntax and then be told .gitignore was that file.) If not, I'd consider that worth adding. - To unsubscribe, e

Re: Can the jar plugin respect .gitignore?

2023-11-12 Thread Piotr P. Karwasz
Hi Joseph, On Sat, 11 Nov 2023 at 17:27, Joseph Kesselman wrote: > > ... Right. I was thinking specifically about source assembly, where a good > initial approximation is to include the same files checked into git. > Obviously that's wrong for binary assembly, but having the option of "import

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Joseph Kesselman
gn /\ Stamp out HTML mail! From: Alexander Kriegisch Sent: Saturday, November 11, 2023 7:31:25 PM To: users@maven.apache.org Subject: Re: Can the jar plugin respect .gitignore? Let me also chime in, telling an "old war story" from my early days in Aspe

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Joseph Kesselman
s@maven.apache.org Subject: Re: Can the jar plugin respect .gitignore? Hello, Joseph Kesselman wrote on 11. Nov 2023 17:27 (GMT +01:00): > ... Right. I was thinking specifically about source assembly, where a good > initial approximation is to include the same files checked into git.

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Joseph Kesselman
__ From: Greg Chabala Sent: Saturday, November 11, 2023 6:32:13 PM To: Maven Users List Subject: Re: Can the jar plugin respect .gitignore? I hesitate to bring it up, but this seems as good a time as any. You've mentioned several times your intent to massage the Xalan Maven build to pro

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Alexander Kriegisch
Let me also chime in, telling an "old war story" from my early days in AspectJ: It used to be a very complex and convoluted Ant multi-module monster. I never dared to even try and understand the build or contribute to the project. Then one day, Andy Clement converted the project to a Maven project,

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Bernd Eckenfels
Hello, Joseph Kesselman wrote on 11. Nov 2023 17:27 (GMT +01:00): > ... Right. I was thinking specifically about source assembly, where a good > initial approximation is to include the same files checked into git. If you stick to the maven way, this is pretty trivial: you only need to exclude th

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Greg Chabala
I hesitate to bring it up, but this seems as good a time as any. You've mentioned several times your intent to massage the Xalan Maven build to produce artifacts at parity with the existing Ant build, and not just the contents of artifacts but also where they end up in the directory structure, for

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Joseph Kesselman
2023 12:38:05 PM To: Maven Users List Subject: Re: Can the jar plugin respect .gitignore? I have no first hand experience using it, and only know of its existence as it's mentioned at the bottom the Reproducible Builds docs: https://reproducible-builds.org/docs/jvm/ Notably the maven-assem

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Greg Chabala
I have no first hand experience using it, and only know of its existence as it's mentioned at the bottom the Reproducible Builds docs: https://reproducible-builds.org/docs/jvm/ Notably the maven-assembly-plugin documentation mentions a predefined 'project' descriptor which may also do just what yo

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Joseph Kessselman
On 11/11/2023 11:44 AM, Greg Chabala wrote: Use the sourceReleaseAssemblyDescriptor of maven-assembly-plugin: https://maven.apache.org/apache-resource-bundles/source-release/ Thanks; hadn't seen that one. Definitely a fan of not reinventing wheels. Can that be configured to write the archives

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Greg Chabala
> > I was thinking specifically about source assembly, where a good initial > approximation is to include the same files checked into git. > Use the sourceReleaseAssemblyDescriptor of maven-assembly-plugin: https://maven.apache.org/apache-resource-bundles/source-release/

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread Joseph Kesselman
() Plaintext Ribbon Campaign /\ Stamp out HTML mail! From: John Patrick Sent: Saturday, November 11, 2023 6:18:43 AM To: Maven Users List Subject: Re: Can the jar plugin respect .gitignore? my .gitignore includes target, so that would probably cause more issues with

Re: Can the jar plugin respect .gitignore?

2023-11-11 Thread John Patrick
my .gitignore includes target, so that would probably cause more issues with the assembly plugin. On Fri, 10 Nov 2023 at 21:34, wrote: > I think there are two issues with this, first of all git is not the only > SCM, so why prefer it’s file. > > But secondly it is very common that binary result

Re: Can the jar plugin respect .gitignore?

2023-11-10 Thread ecki
I think there are two issues with this, first of all git is not the only SCM, so why prefer it’s file. But secondly it is very common that binary result artifacts are git ignored and exactly the stuff you want to package. For example target/ Are you thinking about -src archives, only? Having

Re: Can the jar plugin respect .gitignore?

2023-11-10 Thread Joseph Kessselman
... Actually, correction -- not the jar plugin, the assembly plugin. (sigh) On 11/10/2023 1:42 PM, Joseph Kessselman wrote: (Or, equivalently be told to take exclude list from a file in .gitignore syntax and then be told .gitignore was that file.) If not, I'd consider that worth adding.

Can the jar plugin respect .gitignore?

2023-11-10 Thread Joseph Kessselman
(Or, equivalently be told to take exclude list from a file in .gitignore syntax and then be told .gitignore was that file.) If not, I'd consider that worth adding. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org Fo