在我的一个app服务中,我需要访问我编译的一些依赖项版本,但是我找不到在运行时访问依赖项的方法。
BuildConfig.groovy
dependencies {
runtime 'com.oracle:ojdbc14:10.2.0.2.0'
runtime 'com.google.guava:guava:11.0.1'
runtime 'com.thoughtworks.xstream:xstream:1.2.2'
runtime 'org.apache.httpcomponents:httpcore:4.3.1'
}
我需要访问任何dependecies版本... 有什么想法吗?