This repository has been archived on 2024-02-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
asgard__/sitemap/build.gradle.kts
2021-08-20 18:07:12 +09:00

35 lines
723 B
Kotlin

/*
* Project Asgard
*
* Copyright (c) 2021. Elex. All Rights Reserved.
* https://www.elex-project.com/
*/
plugins {
id("elex-springboot")
id("org.springframework.boot") version "2.5.3"
id("io.spring.dependency-management") version "1.0.11.RELEASE"
}
version = "1.0.0"
description = "Sitemap builder"
tasks.bootJar{
enabled = false
}
tasks.jar {
enabled = true
}
dependencies {
implementation("com.github.spullara.mustache.java:compiler:0.9.10")
implementation("org.springframework.boot:spring-boot-starter")
compileOnly("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}