Skip to content

Instantly share code, notes, and snippets.

@yogonza524
Created April 23, 2020 16:21
Show Gist options
  • Save yogonza524/86fe80adb498d4e7384094501a164a98 to your computer and use it in GitHub Desktop.
Save yogonza524/86fe80adb498d4e7384094501a164a98 to your computer and use it in GitHub Desktop.
plugins {
id 'java-library'
}
repositories {
jcenter()
}
dependencies {
api 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.google.guava:guava:28.0-jre'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.1'
testCompile "org.testcontainers:testcontainers:1.12.5"
testCompile "org.testcontainers:junit-jupiter:1.12.5"
}
test {
useJUnitPlatform()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment