33 lines
626 B
Kotlin
33 lines
626 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 = "Address Finder"
|
|
|
|
tasks.bootJar{
|
|
enabled = false
|
|
}
|
|
tasks.jar {
|
|
enabled = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
|
|
compileOnly("org.projectlombok:lombok")
|
|
annotationProcessor("org.projectlombok:lombok")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
}
|