added jmath library

This commit is contained in:
2023-05-14 15:38:15 +08:00
parent 99a557f192
commit 9b09c6bd73
25 changed files with 1592 additions and 25 deletions

18
jmath/build.gradle Normal file
View File

@@ -0,0 +1,18 @@
plugins {
id 'java-library'
alias(catalog.plugins.lombok)
id 'maven-publish'
}
dependencies {
implementation project(':')
}
java {
withJavadocJar()
withSourcesJar()
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}