Files
spring-ldap/samples/boot/build.gradle
Josh Cummings aca3280f20 Add Spring Boot Example
Closes gh-558
2022-02-09 14:19:22 -07:00

24 lines
679 B
Groovy

plugins {
id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management'
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-ldap'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.security:spring-security-ldap'
implementation 'com.unboundid:unboundid-ldapsdk'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}
tasks.named('test') {
useJUnitPlatform()
}