Skip to content

Commit

Permalink
server build does not need flow engine
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-matthewb committed Feb 25, 2025
1 parent cff5539 commit a115484
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions flow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,8 @@ project.tasks.register("engineJar", Jar) {
}

project.tasks.named('engineJar').configure { dependsOn(project.engineClasses) }
project.tasks.named('assemble').configure { dependsOn(project.tasks.engineJar) }
project.tasks.named('module').configure { dependsOn(project.tasks.engineJar) }

// The server build does not need flow_engine.jar
// however it is a useful tool for a labkey flow develop for inspecting workspaces and FCS files
//project.tasks.named('assemble').configure { dependsOn(project.tasks.engineJar) }
//project.tasks.named('module').configure { dependsOn(project.tasks.engineJar) }

0 comments on commit a115484

Please sign in to comment.