Re: source directory layout for multirelease jars

2020-04-29 Thread Benjamin Marwell
Hi, to make the story a bit shorter - for most libraries it would be sufficient to add a way to include a module descriptor at "META-INF/versions/9/module-info.class" while still staying at java 8. Most libraries will stick to java 8 or even 7 for quite a time. Sadly, you cannot just add executio

Re: Maven Filtering Plugin should avoid overwriting even when filtering

2020-04-29 Thread Robert Scholte
I prefer to see an in memory solution. Key should be to detect if filtering is applied, which is done in the  MultiDelimiterInterpolatorFilterReaderLineEnding[1] Once a value has been interpolated, you must rewrite the file, otherwise you shouldn't. I hope this is a push in the right direction fo

Re: [VOTE] Release Apache Maven Assembly Plugin version 3.3.0

2020-04-29 Thread Hervé BOUTEMY
+1 this build is reproducible with JDK 8 and CRLF newlines for example, on my Linux box, extracting from the -source-release.zip archive (to have CRLF newlines on source): rm DEPENDENCIES LICENSE NOTICE && mvn -Papache-release,run-its -Dgpg.skip verify buildinfo:buildinfo -Dreference.repo=https

Re: [VOTE] Release Apache Maven Assembly Plugin version 3.3.0

2020-04-29 Thread Robert Scholte
I need more PMC votes. This version contains an improvement to make it easier to keep to maven and maven-wrapper scripts in sync. thanks, Robert On 29-4-2020 20:28:08, Robert Scholte wrote: +1 On 27-4-2020 20:19:41, Robert Scholte wrote: Hi, We solved 10 issues: https://issues.apache.org/jir

Re: Maven Minify - Add already minified during merge

2020-04-29 Thread Bakary Dialaya DJIBA
Hi Tamás, Thank you. I was there. I will ask for help. Regards, On Wed, Apr 29, 2020 at 8:13 PM Tamás Cservenák wrote: > Hi Bakary, > > this is the wrong list for question like these: this list is about core > Maven development, and it's core plugins, which minify maven plugin > certainly is

Re: Maven Filtering Plugin should avoid overwriting even when filtering

2020-04-29 Thread Robert Oxspring
> On 29 Apr 2020, at 14:43, Tobias wrote: > > Hi, > > I just came across this issue the other day, too. A mvn install after a > mvn clean install, i.e. nothing has to be compiled, results in a jar > being created for one module which takes one minute. This is due to > filtered resources being

Re: [VOTE] Release Apache Maven Assembly Plugin version 3.3.0

2020-04-29 Thread Robert Scholte
+1 On 27-4-2020 20:19:41, Robert Scholte wrote: Hi, We solved 10 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317220&version=12344774&styleName=Text There are still a couple of issues left in JIRA: https://issues.apache.org/jira/issues/?jql=project%20%3D%201231722

Re: Maven Minify - Add already minified during merge

2020-04-29 Thread Tamás Cservenák
Hi Bakary, this is the wrong list for question like these: this list is about core Maven development, and it's core plugins, which minify maven plugin certainly is not. Look around and ask here for help: https://samaxes.github.io/minify-maven-plugin/ HTH, T On Wed, Apr 29, 2020 at 6:54 PM Bakar

Maven Minify - Add already minified during merge

2020-04-29 Thread Bakary Dialaya DJIBA
Hi team, I am using minify-maven-plugin v1.7.6 to minify css and js files. In some cases I have some of js or css files already minified. So I want to exclude minified but add them in the final output file. As I understand with the minify module, I can merge files without minify (good, if all my

Re: Maven Filtering Plugin should avoid overwriting even when filtering

2020-04-29 Thread Tobias
Hi, I just came across this issue the other day, too. A mvn install after a mvn clean install, i.e. nothing has to be compiled, results in a jar being created for one module which takes one minute. This is due to filtered resources being overwriten though this is not necessary. This happens for mu