From 89b49f5ead5cd3dcbed8c2c18c20f29e94bdff1b Mon Sep 17 00:00:00 2001 From: Scott Frederick Date: Fri, 9 Jul 2021 13:21:48 -0500 Subject: [PATCH] Fix system test runtime classpath and build scan notification See gh-25824 --- ci/tasks/run-system-tests.yml | 2 ++ .../spring-boot-image-tests/build.gradle | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/ci/tasks/run-system-tests.yml b/ci/tasks/run-system-tests.yml index 5a1f6e5bd0..6d3d0b5439 100644 --- a/ci/tasks/run-system-tests.yml +++ b/ci/tasks/run-system-tests.yml @@ -2,6 +2,8 @@ platform: linux inputs: - name: git-repo +outputs: +- name: git-repo caches: - path: gradle params: diff --git a/spring-boot-system-tests/spring-boot-image-tests/build.gradle b/spring-boot-system-tests/spring-boot-image-tests/build.gradle index a81b650293..cd6bd8a4a6 100644 --- a/spring-boot-system-tests/spring-boot-image-tests/build.gradle +++ b/spring-boot-system-tests/spring-boot-image-tests/build.gradle @@ -28,7 +28,14 @@ dependencies { systemTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) systemTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")) systemTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform")) + systemTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools")) + systemTestImplementation("io.spring.gradle:dependency-management-plugin") systemTestImplementation(gradleTestKit()) + systemTestImplementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") + systemTestImplementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") + systemTestImplementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlinVersion") + systemTestImplementation("org.jetbrains.kotlin:kotlin-compiler-runner:$kotlinVersion") + systemTestImplementation("org.jetbrains.kotlin:kotlin-daemon-client:$kotlinVersion") systemTestImplementation("org.assertj:assertj-core") systemTestImplementation("org.testcontainers:junit-jupiter") systemTestImplementation("org.testcontainers:testcontainers")