Skip to content

Commit 2991d73

Browse files
committed
Format code in build files
1 parent 0823ffa commit 2991d73

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ext {
8282
// Mainly, to allow CI to test the latest versions of Vert.X
8383
// Example:
8484
// ./gradlew build -PvertxSqlClientVersion=4.0.0-SNAPSHOT
85-
if ( !project.hasProperty('vertxSqlClientVersion') ) {
85+
if ( !project.hasProperty( 'vertxSqlClientVersion' ) ) {
8686
vertxSqlClientVersion = '4.4.4'
8787
}
8888

integration-tests/techempower-postgres-it/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ tasks.withType( Test ).configureEach {
6161
systemProperty 'docker', project.properties['docker'] ?: true
6262
systemProperty 'org.hibernate.reactive.common.InternalStateAssertions.ENFORCE', 'true'
6363

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 {
6767
includeTestsMatching project.properties['includeTests'] ?: '*' as String
6868
}
69-
}
69+
}
7070
}
7171

7272
// Print a summary of the results of the tests (number of failures, successes and skipped)
@@ -99,7 +99,7 @@ jar {
9999
attributes 'Implementation-Version': project.version
100100
}
101101
from {
102-
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
102+
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree( it ) }
103103
}
104104
}
105105

0 commit comments

Comments
 (0)