Skip to content
Snippets Groups Projects
build.gradle 787 B
Newer Older
BEAUVAIS ANTOINE's avatar
BEAUVAIS ANTOINE committed
plugins {
	id 'org.springframework.boot' version '2.5.4'
	id 'io.spring.dependency-management' version '1.0.11.RELEASE'
	id 'java'
	id 'war'
}

group = 'fr.unistra.sil'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
	mavenCentral()
}

dependencies {
    implementation 'org.xerial:sqlite-jdbc:3.36.0.3'
    implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
BEAUVAIS ANTOINE's avatar
BEAUVAIS ANTOINE committed
	implementation 'org.springframework.boot:spring-boot-starter-web'
	providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

BEAUVAIS ANTOINE's avatar
BEAUVAIS ANTOINE committed
javadoc {
    title = rootProject.name + " " + version + " API Specification"
BEAUVAIS ANTOINE's avatar
BEAUVAIS ANTOINE committed
    options.overview = "src/main/java/overview.html"
}

BEAUVAIS ANTOINE's avatar
BEAUVAIS ANTOINE committed
test {
	useJUnitPlatform()
}