mirror of
https://github.com/halo-dev/theme-earth.git
synced 2025-08-29 09:29:55 +00:00

#### What this PR does? Add build script into Makefile to build the theme conviniently. See README.md for more. /kind feature ```release-note None ```
16 lines
222 B
Groovy
16 lines
222 B
Groovy
// This script is only for IntelliSense of thymeleaf.
|
|
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'run.halo'
|
|
version '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation('org.thymeleaf:thymeleaf:3.0.12.RELEASE')
|
|
}
|