Guest User

Untitled

a guest
May 8th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Running JBehave from gradle?
  2. task spec << {
  3. ant.taskdef(
  4. name: 'jbehave',
  5. classname: 'org.jbehave.ant.RunStoriesAsEmbeddables',
  6. classpath: configurations.jbehave.asPath)
  7.  
  8. ant.jbehave(
  9. includes: 'src/main/specs',
  10. generateViewAfterStories: true
  11. )
  12. }
  13.  
  14. configurations { jbehave }
  15. dependencies {
  16. jbehave ...
  17. }
Advertisement
Add Comment
Please, Sign In to add comment