有没有办法从 Gradle fat jar 中省略某些路径。
我在用:
jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
从
http://docs.codehaus.org/display/GRADLE/Cookbook
如果可能的话,想省略 META-INF 目录。
谢谢!米莎
有没有办法从 Gradle fat jar 中省略某些路径。
我在用:
jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
从
http://docs.codehaus.org/display/GRADLE/Cookbook
如果可能的话,想省略 META-INF 目录。
谢谢!米莎