Paul Verest

Results 401 comments of Paul Verest

Do you have preferences for all colors?

well, I have not experimented that much to show the case

This project now looks abandoned

Can it be that it fails because project has folder configured in `settings.gradle` ? ``` gradle project(':bee.base').projectDir = new File('bee/bee.base') ```

@Favorlock Thanks, but as in above code snippet > all 3 exclude above have no effect. including `exclude(project(':bee.base'))`

Project names are as base package in that modules. That helps a lot when there is really a lot of modules. Thanks for hint, will try this week.

@kastork well, that the only idea that comes to my mind @johnrengelman Can't really understand that code.

All processing there is implemented using `org.codehaus.plexus.util.IOUtil`, but it has only `copy` methods http://grepcode.com/file/repo1.maven.org/maven2/org.codehaus.plexus/plexus-utils/3.0.22/org/codehaus/plexus/util/IOUtil.java#123 Is there handy way to remove file within jar/zip ?

Specifically for `META-INF/MANIFEST.MF` I managed to do it with prepared file ``` gradle jar { manifest { def manifestFile = "${projectDir}/META-INF/MANIFEST.MF" if ( new File( manifestFile ).exists() ) from (...