Skip to content

Commit

Permalink
Delegate clean and testQuick to all sub-projects
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Jun 25, 2020
1 parent 49188dc commit ea6a50f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,20 @@ lazy val thehive = (project in file("."))
case other => other
}
},
clean := {
(clean in scalligraph).value
(clean in thehiveCore).value
(clean in thehiveDto).value
(clean in thehiveClient).value
(clean in thehiveFrontend).value
(clean in thehiveCortex).value
(clean in thehiveMisp).value
(clean in cortexClient).value
(clean in mispClient).value
(clean in thehiveMigration).value
(clean in clientCommon).value
(clean in cortexDto).value
},
test := {
(test in Test in scalligraph).value
(test in Test in thehiveCore).value
Expand All @@ -105,6 +119,20 @@ lazy val thehive = (project in file("."))
(test in Test in thehiveMigration).value
(test in Test in clientCommon).value
(test in Test in cortexDto).value
},
testQuick := {
(testQuick in Test in scalligraph).evaluated
(testQuick in Test in thehiveCore).evaluated
(testQuick in Test in thehiveDto).evaluated
(testQuick in Test in thehiveClient).evaluated
(testQuick in Test in thehiveFrontend).evaluated
(testQuick in Test in thehiveCortex).evaluated
(testQuick in Test in thehiveMisp).evaluated
(testQuick in Test in cortexClient).evaluated
(testQuick in Test in mispClient).evaluated
(testQuick in Test in thehiveMigration).evaluated
(testQuick in Test in clientCommon).evaluated
(testQuick in Test in cortexDto).evaluated
}
)

Expand Down

0 comments on commit ea6a50f

Please sign in to comment.