gradle « Development « Java I/O Q&A





1. How do I conditionally include or exclude a file from an archetype when project is generated?    stackoverflow.com

I'm creating Maven 2 archetypes for our project (Weld). I would like to be able to control which files are placed into the generated project based on the value of a ...

2. Deploy additional files in Gradle Application Plugin    stackoverflow.com

I have a small Java/Gradle project. I'm using the Application plugin to create a zip distribution (using the distZip task). Using the standard configuration I get the ...

3. Transitive file dependencies in gradle    stackoverflow.com

I would like to control which of my dependencies in a multi-project Java build are transitive. My current solution is to set up an "export" configuration in the root project:

allprojects {
 ...