40 lines
1.1 KiB
Groovy
40 lines
1.1 KiB
Groovy
|
|
import org.springframework.boot.gradle.plugin.SpringBootPlugin
|
||
|
|
|
||
|
|
apply plugin: 'java'
|
||
|
|
apply plugin: 'org.springframework.boot'
|
||
|
|
apply plugin: 'io.spring.dependency-management'
|
||
|
|
|
||
|
|
description = "Feedback Service"
|
||
|
|
|
||
|
|
java {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
||
|
|
targetCompatibility = JavaVersion.VERSION_21
|
||
|
|
}
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencyManagement {
|
||
|
|
imports {
|
||
|
|
mavenBom SpringBootPlugin.BOM_COORDINATES
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
||
|
|
|
||
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
||
|
|
implementation "me.paulschwarz:spring-dotenv:4.0.0"
|
||
|
|
|
||
|
|
implementation 'com.opencsv:opencsv:5.7.1'
|
||
|
|
implementation 'edu.stanford.nlp:stanford-corenlp:4.5.9:models'
|
||
|
|
implementation 'edu.stanford.nlp:stanford-corenlp:4.5.9'
|
||
|
|
|
||
|
|
implementation 'ch.qos.logback:logback-classic:1.5.13'
|
||
|
|
implementation 'org.slf4j:slf4j-api:2.0.9'
|
||
|
|
|
||
|
|
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
|
||
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||
|
|
}
|