Skip to content

Commit 4e2dee5

Browse files
committed
Merge pull request skipoleschris#5 from adoptableCoho/master
supports xsbt 0.11.0 and scala 2.9.1
2 parents 593b6e2 + 99fcabe commit 4e2dee5

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.markdown

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ An [sbt 0.10](https://github.com/harrah/xsbt/wiki) plugin for running [Cucumber]
55

66
Provides the ability to run Cucumber via Cuke4Duke within the SBT environment. Originally based on the [cuke4duke-sbt-plugin](https://github.com/rubbish/cuke4duke-sbt-plugin) by rubbish and my original implementation for SBT 0.7.x. Specifics for this release:
77

8-
* Works with xsbt 0.10.1
8+
* Works with xsbt 0.11.0
99
* Works with Cucumber 1.0.0
1010
* Works with cuke4duke 0.4.4
11-
* Allows projects compiled and running against Scala 2.8.x and 2.9.x
11+
* Allows projects compiled and running against Scala 2.9.1
1212

1313
## Usage ##
1414
Install the plugin (see later). Be default features files go in a 'features' directory at the root of the project. Step definitions go in "src/test/scala'. Finally from the sbt console call the task:
@@ -75,7 +75,7 @@ To install the cucumber plugin, add entries to the build plugins file (project/p
7575

7676
resolvers += "Templemore Repository" at "http://templemore.co.uk/repo"
7777

78-
libraryDependencies += "templemore" %% "xsbt-cucumber-plugin" % "0.3"
78+
addSbtPlugin("templemore" % "xsbt-cucumber-plugin" % "0.4")
7979

8080
### Basic Configuration ###
8181
To add the cucumber plugin settings to a basic project, just add the following to the build.sbt file:
@@ -155,6 +155,9 @@ Current plan is to upgrade to the next major version of SBT and then to switch t
155155

156156
## Release History ##
157157

158+
### 0.4 ###
159+
Updated to support xsbt 0.11.0 & scala 2.9.1
160+
158161
### 0.3 ###
159162
Bug fix to correct --names parameter which should in fact be --name. Thanks to https://github.com/zvozin for the patch.
160163

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name := "xsbt-cucumber-plugin"
22

3-
version := "0.3"
3+
version := "0.4"
44

55
organization := "templemore"
66

7-
scalaVersion := "2.8.1"
7+
scalaVersion := "2.9.1"
88

99
sbtPlugin := true
1010

1111
libraryDependencies ++= Seq(
12-
"org.scalatest" %% "scalatest" % "1.5" % "test"
12+
"org.scalatest" %% "scalatest" % "1.6.1" % "test"
1313
)
1414

1515
publishTo := Some(Resolver.file("Local Repo", file((Path.userHome / ".m2" / "repository").toString)))

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.10.1
1+
sbt.version=0.11.0

0 commit comments

Comments
 (0)