Files
spring-ldap/samples/boot/build.gradle
dependabot[bot] 20fe5cd881 Bump org.springframework.boot from 3.2.11 to 3.2.12
Bumps org.springframework.boot from 3.2.11 to 3.2.12.

---
updated-dependencies:
- dependency-name: org.springframework.boot
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-07 13:47:52 -07:00

24 lines
680 B
Groovy

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