File tree 2 files changed +6
-6
lines changed
integration-tests/techempower-postgres-it
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 82
82
// Mainly, to allow CI to test the latest versions of Vert.X
83
83
// Example:
84
84
// ./gradlew build -PvertxSqlClientVersion=4.0.0-SNAPSHOT
85
- if ( ! project. hasProperty(' vertxSqlClientVersion' ) ) {
85
+ if ( ! project. hasProperty( ' vertxSqlClientVersion' ) ) {
86
86
vertxSqlClientVersion = ' 4.4.4'
87
87
}
88
88
Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ tasks.withType( Test ).configureEach {
61
61
systemProperty ' docker' , project. properties[' docker' ] ?: true
62
62
systemProperty ' org.hibernate.reactive.common.InternalStateAssertions.ENFORCE' , ' true'
63
63
64
- if ( project. hasProperty( ' includeTests' ) ) {
65
- // Example: ./gradlew testAll -PincludeTests=DefaultPortTest
66
- filter {
64
+ if ( project. hasProperty( ' includeTests' ) ) {
65
+ // Example: ./gradlew testAll -PincludeTests=DefaultPortTest
66
+ filter {
67
67
includeTestsMatching project. properties[' includeTests' ] ?: ' *' as String
68
68
}
69
- }
69
+ }
70
70
}
71
71
72
72
// Print a summary of the results of the tests (number of failures, successes and skipped)
99
99
attributes ' Implementation-Version' : project. version
100
100
}
101
101
from {
102
- configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it ) }
102
+ configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree( it ) }
103
103
}
104
104
}
105
105
You can’t perform that action at this time.
0 commit comments