Skip to content

Commit 4352276

Browse files
authored
Remove useEmbeddedTomcat property and other support for standalone builds (#314)
1 parent a3283a9 commit 4352276

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

SequenceAnalysis/build.gradle

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -185,19 +185,15 @@ if (project.findProject(BuildUtils.getTestProjectPath(project.gradle)) != null &
185185
})
186186
task.destinationDir = configDir
187187

188-
if (BuildUtils.useEmbeddedTomcat(project)) {
189-
rootProject.allprojects {
190-
task.mustRunAfter tasks.withType(DoThenSetup)
191-
}
188+
rootProject.allprojects {
189+
task.mustRunAfter tasks.withType(DoThenSetup)
192190
}
193191
}
194192
testProject.tasks.named("startTomcat").configure {
195193
dependsOn(createPipelineConfigTask)
196-
if (BuildUtils.useEmbeddedTomcat(project)) {
197-
it.doFirst {
198-
new File(new File(BuildUtils.getEmbeddedConfigPath(project)), "application.properties")
199-
<< "\ncontext.pipelineConfig=${configDir.getAbsolutePath().replace("\\", "\\\\")}"
200-
}
194+
it.doFirst {
195+
new File(new File(BuildUtils.getEmbeddedConfigPath(project)), "application.properties")
196+
<< "\ncontext.pipelineConfig=${configDir.getAbsolutePath().replace("\\", "\\\\")}"
201197
}
202198
}
203199
}

0 commit comments

Comments
 (0)