我想在 build.gradle 中的根项目之外添加 jar文件。
我知道我可以在root项目下添加 jar 文件。 例如:
dependencies {
compile fileTree('MyLibs')
}
它将包含root.Project.name/MyLibs
下的所有jar文件我想要的是包括我的jar文件在root.Project.name目录之外。 示例:在我的MacOSX上
/Users/MyJava/MyLibs/alllibs.jar
到目前为止,我确实尝试了以下内容:
dependencies {
compile fileTree('/Users/MyJava/MyLibs')
}
但它不起作用。
以上所有jars文件都在我的本地文件系统(My MacOSX)中。
如果想知道,这是我的完整build.gradle文件。
group 'try_gradle'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.5
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}
dependencies {
compile fileTree('/Users/MyJava/MyLibs')
}