Skip to content

Commit

Permalink
Fix minor formatting issues in build.gradle (#7265)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamintboyle committed May 8, 2021
1 parent a5dad0c commit aeb5e68
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ javadoc {
options.stylesheetFile = project.file("gradle/stylesheet.css")

options.links(
"https://docs.oracle.com/javase/8/docs/api/",
"http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/"
"https://docs.oracle.com/javase/8/docs/api/",
"http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/"
)

finalizedBy javadocCleanup
Expand Down Expand Up @@ -124,13 +124,13 @@ test {
}

task testNG(type: Test) {
useTestNG()
useTestNG()
}

check.dependsOn testNG

tasks.withType(Test) {
testLogging {
testLogging {
events = ["skipped", "failed"]
exceptionFormat = "full"

Expand Down Expand Up @@ -165,7 +165,7 @@ checkstyle {
configFile = project.file("config/checkstyle/checkstyle.xml")
configProperties = [
"checkstyle.suppressions.file": project.file("config/checkstyle/suppressions.xml"),
"checkstyle.header.file": project.file("config/license/HEADER_JAVA")
"checkstyle.header.file" : project.file("config/license/HEADER_JAVA")
]
}

Expand Down

0 comments on commit aeb5e68

Please sign in to comment.