Switch to Gradle and update project structure

Replaced Maven with Gradle, updating configurations and dependencies to reflect the change. Added IntelliJ IDEA project settings and updated `.gitignore` for Gradle, IDE, and OS-specific files. Refactored package names and added enhancements such as compiler arguments and environmental versioning.
This commit is contained in:
dalbodeule
2025-05-14 22:07:02 +09:00
parent e4ea60fd85
commit 2e3e11aafb
18 changed files with 236 additions and 350 deletions

View File

@@ -53,7 +53,7 @@ dependencies {
}
group = "space.mori.dalbodeule"
version = "0.4.1"
version = env.VERSION.value
description = "SnapAdmin"
java.sourceCompatibility = JavaVersion.VERSION_17
@@ -65,6 +65,7 @@ publishing {
tasks.withType<JavaCompile>() {
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
tasks.withType<Javadoc>() {