From ef6506e527f565183dcdbc91ef9d0af6c1159e71 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Fri, 21 Jul 2023 21:32:06 -0500 Subject: [PATCH] Allow integration tests to use Spring Boot - The integration-tests module uses SB dependencies for test setup. This is problematic when attempting a non-snapshot release as non-snapshot releases do not include `repos.spring.io/snapshot`. This commit treats the `integration-tests` module like the samples module and always includes central, milestone, and snapshot repos. --- integration-tests/integration-tests.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/integration-tests/integration-tests.gradle b/integration-tests/integration-tests.gradle index 77a134af..8c445307 100644 --- a/integration-tests/integration-tests.gradle +++ b/integration-tests/integration-tests.gradle @@ -6,6 +6,12 @@ plugins { description = 'Spring Pulsar Integration Tests' +repositories { + mavenCentral() + maven { url 'https://repo.spring.io/milestone' } + maven { url 'https://repo.spring.io/snapshot' } +} + dependencies { intTestImplementation project(':spring-pulsar-test') intTestRuntimeOnly 'ch.qos.logback:logback-classic'