How do I create a hadoop jar that includes all dependencies in the lib folder using Gradle? Basically开发者_运维知识库, similar to what fatjar does.Figured it out! Hadoop looks for libraries inside th
How on earth can I do this in gradle: eg. want to use HTTPBuilder in a task. build.gradle: repositories {
I have a multi-project build and in each of the projects I have several packages in the main src tree which need to be packaged up separately from the rest of the src as individual EJB artifacts:
I don\'t know if I totally got the concept wrong, but I want to create several projects with dependencies to other projects which are not part of the directory structure of a parent project. I know th
I am doing a gradle/OSGi build. I have the OSGi bundle building fine, but want to automate the bundle deployment.I don\'t think there is a gradle task for this, so this becomes a groovy question.To d
I just added the hudson-artifactory plugin, and everything runmarvelously with Maven, but when I tried to build the project with gradle (I added the gradle plugin to hudson)
In gradle - how can I embed jars inside my build output jar in the lib dir开发者_C百科ectory (specifially the lib/enttoolkit.jar and lib/mail.jar)?If you have all the jars inside a directory (lets cal
With Gradle there are some default configurations such as compile, runtime etc but for various reasons I wish to use some alternative configurations.How do I tell the compilation task abou开发者_开发技
Is there any way to leave out certain paths from a Gradle fat jar. I am using: jar { from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
We have a number of products that consist of a large number of modules, some of which are shared between some of the products. They are spread out over a few version control repositories.