2020-04-04 19:59:18 +02:00
|
|
|
plugins {
|
2020-04-30 21:08:16 +02:00
|
|
|
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"
|
|
|
|
id "java"
|
2020-04-04 19:59:18 +02:00
|
|
|
}
|
|
|
|
|
2020-04-30 21:08:16 +02:00
|
|
|
group = "de.hft"
|
|
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
sourceCompatibility = "11"
|
2020-04-04 19:59:18 +02:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
2020-04-22 20:36:34 +02:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
2020-05-01 19:57:30 +02:00
|
|
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
2020-05-09 19:12:43 +02:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
|
2020-05-01 19:57:30 +02:00
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
2020-04-26 15:52:50 +02:00
|
|
|
implementation 'org.mariadb.jdbc:mariadb-java-client'
|
2020-06-12 03:29:47 +02:00
|
|
|
implementation 'org.postgresql:postgresql'
|
2020-04-22 20:36:34 +02:00
|
|
|
|
2020-05-01 19:57:30 +02:00
|
|
|
implementation "org.springframework.boot:spring-boot-starter-security"
|
|
|
|
implementation "com.auth0:java-jwt:3.10.2"
|
|
|
|
|
2020-04-14 10:20:15 +02:00
|
|
|
runtimeOnly 'com.h2database:h2'
|
2020-05-01 19:57:30 +02:00
|
|
|
|
2020-04-04 19:59:18 +02:00
|
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|