Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. 1068173:Oct 28 19:33:24 <mharrah> pwhite: right, you have to create the tasks properly, like I was saying about dependsOn
  2. 1068174:Oct 28 19:33:40 <mharrah> b.dependsOn(c) is a new task
  3. 1068175:Oct 28 19:34:02 <mharrah> if you do dependsOn(b, b.dependsOn(c)), you now have two tasks that will run b's action
  4. 1068176:Oct 28 19:34:13 <mharrah> if you want to modify b's dependencies:
  5. 1068177:Oct 28 19:34:28 <mharrah> override def b = super.b dependsOn(c)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement