Skip to content

Commit

Permalink
adding build file for jbehave
Browse files Browse the repository at this point in the history
  • Loading branch information
kensipe committed Nov 3, 2010
1 parent 3f953b9 commit 765e2e5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions jbehave.gradle
@@ -0,0 +1,23 @@
configurations {
jbehave
}

dependencies {
jbehave group: 'org.jbehave', name: 'jbehave-ant', version: '3.0.3'
}

repositories {
mavenCentral()
}

task spec << {
ant.taskdef(
name: 'jbehave',
classname: 'org.jbehave.ant.RunStoriesAsEmbeddables',
classpath: configurations.jbehave.asPath)

ant.jbehave(
includes: 'src/test/specs',

generateViewAfterStories: true)
}

0 comments on commit 765e2e5

Please sign in to comment.