Gradle dependencies with file directories

二次信任 提交于 2019-12-21 05:08:08

问题


I'm writing an EJB jar module for a jboss ear application. I'm using gradle and I don't want to try to declare all of the different dependencies that the jar would rely on at runtime from JBoss. Is there a way to declare dependencies on all files within a directory tree.


回答1:


In the dependencies section of your build.gradle file you can use a FileTree reference. For example:

dependencies {
    compile fileTree(dir: "${jbossDir}/client", includes: ['*.jar'])
}

This will include all of the JAR files in the JBoss / client directory as compile-time dependencies.



来源:https://stackoverflow.com/questions/11638555/gradle-dependencies-with-file-directories

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!