Skip to content

Commit

Permalink
Added full exception logging to the test task of each project (#708)
Browse files Browse the repository at this point in the history
Co-authored-by: Marius Oehler <[email protected]>
  • Loading branch information
ivansenic and mariusoe authored Apr 30, 2020
1 parent 76df89e commit 6817916
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/inspectit-ocelot-eum-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ bootJar {

test {
useJUnitPlatform()

testLogging {
exceptionFormat = 'full'
}
}

dependencies {
Expand Down
4 changes: 4 additions & 0 deletions inspectit-ocelot-agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ evaluationDependsOn(':inspectit-ocelot-core')

test {
useJUnitPlatform()

testLogging {
exceptionFormat = 'full'
}
}

sourceCompatibility = 1.8
Expand Down
4 changes: 4 additions & 0 deletions inspectit-ocelot-bootstrap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ dependencies {

test {
useJUnitPlatform()

testLogging {
exceptionFormat = 'full'
}
}

sourceCompatibility = 1.8
Expand Down
4 changes: 4 additions & 0 deletions inspectit-ocelot-config/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ apply plugin: "maven" //for publishing to the local maven repository

test {
useJUnitPlatform()

testLogging {
exceptionFormat = 'full'
}
}

repositories {
Expand Down
4 changes: 4 additions & 0 deletions inspectit-ocelot-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ configurations {

test {
useJUnitPlatform()

testLogging {
exceptionFormat = 'full'
}
}

sourceCompatibility = 1.8
Expand Down

0 comments on commit 6817916

Please sign in to comment.