plugins { id 'java-library' } dependencies { api 'org.springframework.boot:spring-boot-starter' api 'org.springframework.boot:spring-boot-starter-web' api 'org.springframework.boot:spring-boot-starter-validation' api 'org.springframework.boot:spring-boot-starter-security' api 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3' api 'io.swagger.core.v3:swagger-annotations-jakarta:2.2.27' implementation 'io.jsonwebtoken:jjwt-api:0.11.5' runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5' implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16' implementation 'org.springframework.boot:spring-boot-starter-data-redis' runtimeOnly 'org.mariadb.jdbc:mariadb-java-client' runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre11' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' testImplementation 'org.springframework.boot:spring-boot-starter-test' } jar { enabled = true }