blob: 494fc8bf25fddef193b42763c80bb4fda87c4a09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
plugins {
`java-library`
}
repositories {
jcenter()
}
dependencies {
api("org.apache.commons:commons-math3:3.6.1")
implementation("com.google.guava:guava:28.1-jre")
testImplementation("junit:junit:4.12")
}
|