Files
spring-ldap/samples/boot/build.gradle
Josh Cummings d4de04f2fd Update to Boot 3.2.2
Closes gh-860
2024-02-01 16:02:32 -07:00

24 lines
679 B
Groovy

plugins {
id 'org.springframework.boot' version '3.2.2'
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()
}