Commit 198131f5 authored by dreis2211's avatar dreis2211 Committed by Andy Wilkinson

Remove redundant compiler arguments in Gradle build files

See gh-22488
parent 2063c242
...@@ -146,14 +146,6 @@ dependencies { ...@@ -146,14 +146,6 @@ dependencies {
testRuntimeOnly("org.springframework.security:spring-security-saml2-service-provider") testRuntimeOnly("org.springframework.security:spring-security-saml2-service-provider")
} }
compileJava {
options.compilerArgs << "-parameters"
}
compileTestJava {
options.compilerArgs << "-parameters"
}
test { test {
outputs.dir("${buildDir}/generated-snippets") outputs.dir("${buildDir}/generated-snippets")
} }
......
...@@ -89,11 +89,3 @@ dependencies { ...@@ -89,11 +89,3 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher") testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testRuntimeOnly("org.hsqldb:hsqldb") testRuntimeOnly("org.hsqldb:hsqldb")
} }
compileJava {
options.compilerArgs << "-parameters"
}
compileTestJava {
options.compilerArgs << "-parameters"
}
\ No newline at end of file
...@@ -82,14 +82,6 @@ dependencies { ...@@ -82,14 +82,6 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher") testRuntimeOnly("org.junit.platform:junit-platform-launcher")
} }
compileJava {
options.compilerArgs << "-parameters"
}
compileTestJava {
options.compilerArgs << "-parameters"
}
test { test {
include "**/*Tests.class" include "**/*Tests.class"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment