You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
980 B
23 lines
980 B
plugins { |
|
id "java-library" |
|
id "org.springframework.boot.conventions" |
|
} |
|
|
|
description = "Spring Boot Gradle Testing Support" |
|
|
|
dependencies { |
|
compileOnly("org.junit.jupiter:junit-jupiter") |
|
|
|
implementation(gradleTestKit()) |
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform")) |
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools")) |
|
implementation("io.spring.gradle:dependency-management-plugin") |
|
implementation("org.graalvm.buildtools:native-gradle-plugin") |
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") |
|
implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlinVersion") |
|
implementation("org.jetbrains.kotlin:kotlin-compiler-runner:$kotlinVersion") |
|
implementation("org.jetbrains.kotlin:kotlin-daemon-client:$kotlinVersion") |
|
implementation("org.apache.commons:commons-compress:$commonsCompressVersion") |
|
|
|
implementation("org.assertj:assertj-core") |
|
}
|
|
|