2023-02-26 00:57

This commit is contained in:
2023-02-26 00:58:00 +09:00
commit d33a469d57
40 changed files with 1387 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
plugins {
`java-library`
}
version = "0.1.0"
tasks {
jar {
manifest {
attributes(
mapOf("Implementation-Title" to project.name,
"Implementation-Version" to project.version)
)
}
}
}
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")
}