HHH-14199 fix the error when running 'setDataBase' gradle task
This commit is contained in:
parent
b36803cecf
commit
68acb2edfa
|
@ -299,16 +299,12 @@ task copyResourcesToIntelliJOutFolder {
|
|||
|
||||
Afterward, you can run any test from the IDE against that particular DB.
|
||||
*/
|
||||
task setDataBase {
|
||||
inputs.property( "db", db )
|
||||
doLast {
|
||||
processTestResources
|
||||
copyResourcesToIntelliJOutFolder
|
||||
|
||||
println( 'Setting current database to ' + db )
|
||||
}
|
||||
task setDataBase dependsOn( processTestResources, copyResourcesToIntelliJOutFolder ) {
|
||||
println( 'Setting current database to ' + db )
|
||||
}
|
||||
|
||||
copyResourcesToIntelliJOutFolder.mustRunAfter processTestResources
|
||||
|
||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Report configs
|
||||
|
||||
|
|
Loading…
Reference in New Issue