您好,我想知道如何将 Trove4j 库导入到我的 gradle 项目中。
谢谢你。
我的 build.gradle 文件
plugins {
id 'java'
id 'application'
}
sourceCompatibility = 1.11
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.mockito:mockito-core:2.+'
testCompile group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.0'
testCompile group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.0'
implementation("com.google.guava:guava:29.0-jre")
}
run{
standardInput = System.in
}