Add gradle task to copy resources to out folder

This commit is contained in:
Andrea Boriero 2017-10-23 11:40:23 +01:00
parent 20422cd76a
commit f92bffae43
1 changed files with 15 additions and 0 deletions

View File

@ -268,6 +268,21 @@ subprojects { subProject ->
// }
}
/*
The latest versions of IntelliJ copy and use the test resources into out/test/resources
this occurs before the placeholder in the test config file are substituted
with the testing values.
This behaviour prevents the execution of the hibernate tests from inside the IDE.
A solution is to enable the 'After Build' Execution of the copyResourcesToIntelliJOutFolder task
from the 'Gradle project' IntelliJ tool window ( The task can be found under hibernate-orm > Task > other)
*/
task copyResourcesToIntelliJOutFolder(type: Copy) {
from "$subProject.buildDir/resources/test"
into 'out/test/resources'
}
processTestResources.doLast( {
copy {
from( sourceSets.test.java.srcDirs ) {