Browse Source

Remove redundant compiler arguments in Gradle build files

See gh-22488
pull/22996/head
dreis2211 6 years ago committed by Andy Wilkinson
parent
commit
198131f5e4
  1. 8
      spring-boot-project/spring-boot-actuator-autoconfigure/build.gradle
  2. 8
      spring-boot-project/spring-boot-actuator/build.gradle
  3. 8
      spring-boot-project/spring-boot-test-autoconfigure/build.gradle

8
spring-boot-project/spring-boot-actuator-autoconfigure/build.gradle

@ -146,14 +146,6 @@ dependencies { @@ -146,14 +146,6 @@ dependencies {
testRuntimeOnly("org.springframework.security:spring-security-saml2-service-provider")
}
compileJava {
options.compilerArgs << "-parameters"
}
compileTestJava {
options.compilerArgs << "-parameters"
}
test {
outputs.dir("${buildDir}/generated-snippets")
}

8
spring-boot-project/spring-boot-actuator/build.gradle

@ -89,11 +89,3 @@ dependencies { @@ -89,11 +89,3 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testRuntimeOnly("org.hsqldb:hsqldb")
}
compileJava {
options.compilerArgs << "-parameters"
}
compileTestJava {
options.compilerArgs << "-parameters"
}

8
spring-boot-project/spring-boot-test-autoconfigure/build.gradle

@ -82,14 +82,6 @@ dependencies { @@ -82,14 +82,6 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
compileJava {
options.compilerArgs << "-parameters"
}
compileTestJava {
options.compilerArgs << "-parameters"
}
test {
include "**/*Tests.class"
}

Loading…
Cancel
Save