We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34811c3 commit 08200ceCopy full SHA for 08200ce
SequenceAnalysis/build.gradle
@@ -195,13 +195,10 @@ if (project.findProject(BuildUtils.getTestProjectPath(project.gradle)) != null &
195
})
196
task.destinationDir = configDir
197
198
- rootProject.allprojects {
199
- task.mustRunAfter tasks.withType(DoThenSetup)
200
- }
201
}
202
- testProject.tasks.named("startTomcat").configure {
+ testProject.tasks.withType(DoThenSetup).configureEach {
203
dependsOn(createPipelineConfigTask)
204
- it.doFirst {
+ it.doLast {
205
new File(new File(BuildUtils.getEmbeddedConfigPath(project)), "application.properties")
206
<< "\ncontext.pipelineConfig=${configDir.getAbsolutePath().replace("\\", "\\\\")}"
207
0 commit comments