Files
spring-ldap/samples/boot/build.gradle
Josh Cummings 45e3e2a87a Update Source Build to 17
- Needed for Release Plugin
- Binaries still compile to 8
2024-02-02 13:16:21 -07:00

29 lines
792 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'
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
tasks.named('test') {
useJUnitPlatform()
}