feat: 添加数据库日志功能

This commit is contained in:
2023-08-04 19:33:33 +08:00
parent 0cadbd2ca3
commit d7e477dd3f
19 changed files with 193 additions and 59 deletions

View File

@@ -1,10 +1,11 @@
//file:noinspection VulnerableLibrariesLocal
plugins {
id 'java'
id 'maven-publish'
}
group 'cn.hamster3'
version '2.0.12-SNAPSHOT'
version '2.1.0'
repositories {
maven {
@@ -42,7 +43,7 @@ jar {
destinationDir(rootProject.buildDir)
}
tasks.withType(JavaCompile) {
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:unchecked"
}
@@ -62,7 +63,7 @@ javadoc {
publishing {
publications {
mavenJava(MavenPublication) {
create("mavenJava", MavenPublication.class) {
artifactId = "HamsterCurrency"
artifact jar
artifact sourcesJar