我的项目有一个“资源”库(不是基于java的)。它只包含多个java项目使用的文件层次结构
library
files
binaries
etc
在我的一个java项目中,我想将这些文件包含在已组装的jar文件中
// current definition of a sample project
project("java_project") {
// dependencies omitted
jar {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
manifest {
attributes("Main-Class": "mymainclass")
}
}
}
project("library") {
// is in settings.gradle
}
如何使用其他项目资源更新jar?我需要在项目之外使用它们,因为多个项目共享相同的资源。
答案 0 :(得分:0)
也许有人会有更好的解决方案,但我将以下内容添加到jar闭包中:
from { fileTree(dir: "library") }
然后,我可以使用exclude和include过滤器控制文件:
http://www.gradle.org/docs/current/userguide/working_with_files.html