43 lines
1.2 KiB
Kotlin
43 lines
1.2 KiB
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 = "Linkback"
|
|
|
|
tasks.bootJar{
|
|
enabled = false
|
|
}
|
|
tasks.jar {
|
|
enabled = true
|
|
}
|
|
|
|
dependencies {
|
|
// https://mvnrepository.com/artifact/org.jsoup/jsoup
|
|
implementation("org.jsoup:jsoup:1.14.2")
|
|
|
|
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml
|
|
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml")
|
|
// https://mvnrepository.com/artifact/com.github.spullara.mustache.java/compiler
|
|
//implementation("com.github.spullara.mustache.java:compiler:0.9.10")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter")
|
|
//implementation("org.springframework.boot:spring-boot-starter-mustache")
|
|
|
|
compileOnly("org.projectlombok:lombok")
|
|
//runtimeOnly("org.mariadb.jdbc:mariadb-java-client")
|
|
|
|
annotationProcessor("org.projectlombok:lombok")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
}
|