-
GAYDAMAKHA MIKHAIL authoredb0a59f79
build.gradle 1.10 KiB
plugins {
id 'org.springframework.boot' version '2.5.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'war'
}
tasks {
compileJava.inputs.files(processResources)
}
group = 'fr.unistra.sil'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = "1.9"
repositories {
mavenCentral()
}
dependencies {
implementation 'org.xerial:sqlite-jdbc:3.36.0.3'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.5.6'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.thymeleaf:thymeleaf-spring5'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}
javadoc {
title = rootProject.name + " " + version + " API Specification"
options.overview = "src/main/java/overview.html"
}
test {
useJUnitPlatform()
}
targetCompatibility = JavaVersion.VERSION_1_9