/* * Spring-boot Examples * * Copyright (c) 2021. Elex. All Rights Reserved. * https://www.elex-project.com/ */ plugins { id("elex-spring-boot") id("org.springframework.boot") version "2.5.3" id("io.spring.dependency-management") version "1.0.11.RELEASE" } dependencies { // https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api implementation("io.jsonwebtoken:jjwt-api:0.11.2") // https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl runtimeOnly("io.jsonwebtoken:jjwt-impl:0.11.2") runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.11.2") implementation("org.springframework.boot:spring-boot-starter-mustache") implementation("org.springframework.boot:spring-boot-starter-web") implementation ("org.springframework.boot:spring-boot-starter-security") testImplementation ("org.springframework.security:spring-security-test") implementation ("org.springframework.boot:spring-boot-starter-data-jpa") runtimeOnly("com.h2database:h2") compileOnly("org.projectlombok:lombok") developmentOnly("org.springframework.boot:spring-boot-devtools") runtimeOnly("org.mariadb.jdbc:mariadb-java-client") annotationProcessor("org.springframework.boot:spring-boot-configuration-processor") annotationProcessor("org.projectlombok:lombok") testImplementation("org.springframework.boot:spring-boot-starter-test") }