You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.2 KiB
Groovy

3 years ago
plugins {
id 'org.springframework.boot' version '2.6.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'war'
}
group = 'cokr.xit'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = '1.8'
3 years ago
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
3 years ago
compileOnly 'org.projectlombok:lombok'
3 years ago
annotationProcessor 'org.projectlombok:lombok'
3 years ago
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
3 years ago
testImplementation 'org.springframework.boot:spring-boot-starter-test'
/* =================================================================================== */
/* External Jar.. */
/* =================================================================================== */
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.google.code.gson:gson:2.9.0'
3 years ago
}
tasks.named('test') {
useJUnitPlatform()
}