feat: added mathematic calculators

This commit is contained in:
zihluwang
2024-09-14 02:02:47 +08:00
parent 846c25a098
commit 2ee29059b5
5 changed files with 147 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
plugins {
id("java")
}
group = "com.onixbyte"
version = "unspecified"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}