Set samples to always run tests

This commit is contained in:
Chris Bono
2023-10-08 11:09:51 -05:00
parent b1b0910615
commit c0920a0f0d
6 changed files with 31 additions and 0 deletions

View File

@@ -20,6 +20,12 @@ dependencies {
implementation 'io.zipkin.reporter2:zipkin-sender-urlconnection'
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
outputs.upToDateWhen { false }
}
bootRun {
jvmArgs = [
"--add-opens", "java.base/java.lang=ALL-UNNAMED",

View File

@@ -32,6 +32,7 @@ dependencies {
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
outputs.upToDateWhen { false }
}
bootRun {

View File

@@ -17,6 +17,12 @@ dependencies {
implementation "org.springframework.cloud:spring-cloud-stream-binder-pulsar:${springCloudStreamVersion}"
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
outputs.upToDateWhen { false }
}
bootRun {
jvmArgs = [
"--add-opens", "java.base/java.lang=ALL-UNNAMED",

View File

@@ -25,6 +25,12 @@ dependencies {
implementation 'com.devskiller:jfairy:0.6.5'
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
outputs.upToDateWhen { false }
}
bootRun {
jvmArgs = [
"--add-opens", "java.base/java.lang=ALL-UNNAMED",

View File

@@ -16,6 +16,12 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-pulsar:${springBootVersion}"
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
outputs.upToDateWhen { false }
}
bootRun {
jvmArgs = [
"--add-opens", "java.base/java.lang=ALL-UNNAMED",

View File

@@ -16,6 +16,12 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-pulsar-reactive:${springBootVersion}"
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
outputs.upToDateWhen { false }
}
bootRun {
jvmArgs = [
"--add-opens", "java.base/java.lang=ALL-UNNAMED",