chore: add gradle for development with idea

This commit is contained in:
Ryan Wang
2022-11-02 12:05:34 +08:00
parent 5f31a2437e
commit 1d34ac250f
7 changed files with 346 additions and 0 deletions

14
build.gradle Normal file
View File

@@ -0,0 +1,14 @@
plugins {
id 'java'
}
group 'run.halo'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
implementation('org.thymeleaf:thymeleaf:3.0.12.RELEASE')
}