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" 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-actuator' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' implementation 'org.mariadb.jdbc:mariadb-java-client' implementation "org.springframework.boot:spring-boot-starter-security" implementation "com.auth0:java-jwt:3.10.2" runtimeOnly 'com.h2database:h2' testImplementation('org.springframework.boot:spring-boot-starter-test') { exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' } } test { useJUnitPlatform() }