31 lines
786 B
Groovy
31 lines
786 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.2.6.RELEASE'
|
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
|
id "io.freefair.lombok" version "5.0.0-rc6"
|
|
id 'java'
|
|
}
|
|
|
|
group = 'de.hft'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '11'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
implementation 'org.mariadb.jdbc:mariadb-java-client'
|
|
|
|
runtimeOnly 'com.h2database:h2'
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|