Skip to content

Commit 7cf10ac

Browse files
committed
Updated to version 0.4.1 to publish for sbt versions 0.11.0, 0.11.1 and 0.11.2
1 parent 8073dcb commit 7cf10ac

File tree

11 files changed

+18
-36
lines changed

11 files changed

+18
-36
lines changed

.idea/misc.xml

-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.markdown

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
xsbt-cucumber-plugin
22
====================
33

4-
An [sbt 0.11.0](https://github.com/harrah/xsbt/wiki) plugin for running [Cucumber](http://cukes.info) features under [cuke4duke](http://github.com/aslakhellesoy/cuke4duke).
4+
An [sbt 0.11.x](https://github.com/harrah/xsbt/wiki) plugin for running [Cucumber](http://cukes.info) features under [cuke4duke](http://github.com/aslakhellesoy/cuke4duke).
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.11.0
8+
* Works with xsbt 0.11.0, 0.11.1 and 0.11.2
99
* Works with Cucumber 1.0.0
1010
* Works with cuke4duke 0.4.4
1111
* Allows projects compiled and running against Scala 2.9.1
@@ -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-
addSbtPlugin("templemore" % "xsbt-cucumber-plugin" % "0.4")
78+
addSbtPlugin("templemore" % "xsbt-cucumber-plugin" % "0.4.1")
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,10 @@ Current plan is to upgrade to the next major version of SBT and then to switch t
155155

156156
## Release History ##
157157

158+
159+
### 0.4.1 ###
160+
Updated to build versions for xsbt 0.11.0, 0.11.1 and 0.11.2
161+
158162
### 0.4 ###
159163
Updated to support xsbt 0.11.0 & scala 2.9.1
160164

TODO.markdown

-7
This file was deleted.

build.sbt

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

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

55
organization := "templemore"
66

77
scalaVersion := "2.9.1"
88

99
sbtPlugin := true
1010

11+
resolvers += "sonatype-snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
12+
1113
libraryDependencies ++= Seq(
12-
"org.jruby" % "jruby-complete" % "1.6.4" % "test",
14+
"info.cukes" % "cucumber-core" % "1.0.0-SNAPSHOT" % "test",
1315
"org.scalatest" %% "scalatest" % "1.6.1" % "test"
1416
)
1517

project/build.properties

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

testProjects/multiModuleTestProject/project/Build.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import templemore.xsbt.cucumber.CucumberPlugin
55
object BuildSettings {
66
val buildOrganization = "templemore"
77
val buildScalaVersion = "2.9.1"
8-
val buildVersion = "0.4"
8+
val buildVersion = "0.4.1"
99

1010
val buildSettings = Defaults.defaultSettings ++
1111
Seq (organization := buildOrganization,
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sbt.version=0.11.0
1+
sbt.version=0.11.2
22

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
resolvers += Resolver.file("Local Repo", file((Path.userHome / ".m2" / "repository").toString))
22

3-
addSbtPlugin("templemore" % "xsbt-cucumber-plugin" % "0.4")
3+
addSbtPlugin("templemore" % "xsbt-cucumber-plugin" % "0.4.1")

testProjects/testProject/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "test-project"
22

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

55
organization := "templemore"
66

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.11.0
1+
sbt.version=0.11.2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
resolvers += Resolver.file("Local Repo", file((Path.userHome / ".m2" / "repository").toString))
22

3-
addSbtPlugin("templemore" % "xsbt-cucumber-plugin" % "0.4")
3+
addSbtPlugin("templemore" % "xsbt-cucumber-plugin" % "0.4.1")

0 commit comments

Comments
 (0)