gradle
Create a hadoop jar with external dependencies using Gradle
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[详细]
2023-01-16 20:48 分类:问答Gradle Task Dependencies
How on earth can I do this in gradle: eg. want to use HTTPBuilder in a task. build.gradle: repositories {[详细]
2023-01-16 18:09 分类:问答How do I create several ejb jars in a Gradle build project?
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:[详细]
2023-01-14 19:08 分类:问答Can Gradle handle local dependencies to other than sub-directories?
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[详细]
2023-01-12 18:59 分类:问答automating telnet with Groovy
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[详细]
2023-01-11 18:39 分类:问答Error in the build of project with gradle from Hudson and its deployment in artifactory
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)[详细]
2023-01-11 10:39 分类:问答gradle - how do I build a jar with a lib dir with other jars in it?
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[详细]
2023-01-11 01:40 分类:问答Alternative configurations in Gradle for compiling Java
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开发者_开发技[详细]
2023-01-10 14:35 分类:问答Gradle fat jar _leaving out_ META-INF from child jars?
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) }[详细]
2023-01-04 15:52 分类:问答Declarative dependency handling for multi-module source projects in version-control
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.[详细]
2023-01-04 00:18 分类:问答