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.
This commit is contained in:
Chris Bono
2023-07-21 21:32:06 -05:00
committed by Chris Bono
parent 7950df0ea9
commit ef6506e527

View File

@@ -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'