こんにちは、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
}