under construction
This commit is contained in:
42
linkback/build.gradle.kts
Normal file
42
linkback/build.gradle.kts
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* 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.7")
|
||||
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user