-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (19 loc) · 840 Bytes
/
build.gradle
File metadata and controls
24 lines (19 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
plugins {
id 'java'
id 'org.springframework.boot' version "${springBootVersion}"
}
repositories {
mavenCentral()
}
sourceCompatibility = sourceJavaVersion
targetCompatibility = targetJavaVersion
dependencies {
implementation "org.springframework.boot:spring-boot-starter-web:${springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-security:${springBootVersion}"
implementation "org.springframework.security:spring-security-ldap:${springSecurityVersion}"
implementation "io.jsonwebtoken:jjwt:${jwtVersion}"
implementation "io.springfox:springfox-swagger2:${swaggerVersion}"
implementation "io.springfox:springfox-swagger-ui:${swaggerVersion}"
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
}