外部Gradle依赖项存储在何处?

nqwrtyyt  于 2023-06-30  发布在  其他
关注(0)|答案(1)|浏览(115)

我正在使用Gradle,并给出了以下依赖项:

dependencies {
    compile 'org.slf4j:slf4j-api:1.7.13'
    compile 'org.mongodb:mongodb-driver:3.2.2'
    testCompile 'org.testng:testng:6.8.1'
    testCompile 'junit:junit:3.8.2'
}

我想下载MongoDB的驱动程序。我打字:
阶梯形结构
几秒钟后,我收到一条消息,说构建成功了。现在,我正在寻找MongoDB驱动程序的jar文件/目录,但没有找到。它应该在哪里?

ttygqcqt

ttygqcqt1#

<GRADLE_USER_HOME>/caches/modules-2/files-2.1/org.mongodb/mongodb-driver/3.2.2/<checksum of the JAR>/mongodb-driver-3.2.2.jar

相关问题