Skip to content

Commit ef6506e

Browse files
committed
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.
1 parent 7950df0 commit ef6506e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

integration-tests/integration-tests.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ plugins {
66

77
description = 'Spring Pulsar Integration Tests'
88

9+
repositories {
10+
mavenCentral()
11+
maven { url 'https://repo.spring.io/milestone' }
12+
maven { url 'https://repo.spring.io/snapshot' }
13+
}
14+
915
dependencies {
1016
intTestImplementation project(':spring-pulsar-test')
1117
intTestRuntimeOnly 'ch.qos.logback:logback-classic'

0 commit comments

Comments
 (0)