Build: move generated-resources to build (#30366)
This commit moves the generated-resources directory to be within the build directory for the openldap-tests and saml-idp-tests projects. Both projects create a generated-resources directory that should have been in the build directory but were instead at the same level as the build directory.
This commit is contained in:
parent
51fa8739ea
commit
37bb8f8075
|
@ -14,7 +14,7 @@ task openLdapFixture {
|
|||
dependsOn "vagrantCheckVersion", "virtualboxCheckVersion", idpFixtureProject.up
|
||||
}
|
||||
|
||||
String outputDir = "generated-resources/${project.name}"
|
||||
String outputDir = "${project.buildDir}/generated-resources/${project.name}"
|
||||
task copyIdpTrust(type: Copy) {
|
||||
from idpFixtureProject.file('src/main/resources/certs/idptrust.jks');
|
||||
into outputDir
|
||||
|
|
|
@ -16,7 +16,7 @@ task idpFixture {
|
|||
dependsOn "vagrantCheckVersion", "virtualboxCheckVersion", idpFixtureProject.up
|
||||
}
|
||||
|
||||
String outputDir = "generated-resources/${project.name}"
|
||||
String outputDir = "${project.buildDir}/generated-resources/${project.name}"
|
||||
task copyIdpCertificate(type: Copy) {
|
||||
from idpFixtureProject.file('src/main/resources/certs/ca.crt');
|
||||
into outputDir
|
||||
|
|
Loading…
Reference in New Issue