aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-11-09 22:13:41 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2016-11-09 22:13:41 -0500
commit75310e0cb942883545f0a142b2e7b61dbb1134b4 (patch)
treec4a8d7b52809616d54eba1330616a2916c65a9ce
parentfe04889a6c3fe73ccdb4b19b44ac62e2b1a96f7d (diff)
downloadcbt-75310e0cb942883545f0a142b2e7b61dbb1134b4.tar.gz
cbt-75310e0cb942883545f0a142b2e7b61dbb1134b4.tar.bz2
cbt-75310e0cb942883545f0a142b2e7b61dbb1134b4.zip
Upgrade references cbt versions after binary incompatible Context change
part 2
-rw-r--r--README.md2
-rw-r--r--test/library-test/build/build.scala2
-rw-r--r--test/simple-fixed-cbt/build/build.scala2
-rw-r--r--test/simple-fixed/build/build.scala2
-rw-r--r--test/simple/build/build.scala2
5 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index a9df2d7..c22b5e6 100644
--- a/README.md
+++ b/README.md
@@ -323,7 +323,7 @@ When you specify a particular version, CBT will use that one instead of the inst
You can specify one by adding one line right before `class Build`. It looks like this:
```
-// cbt:https://github.com/cvogt/cbt.git#bf4e2c5971adadf4506cacb22094225ceae5a8c1
+// cbt:https://github.com/cvogt/cbt.git#fe04889a6c3fe73ccdb4b19b44ac62e2b1a96f7d
class Build...
```
diff --git a/test/library-test/build/build.scala b/test/library-test/build/build.scala
index ffdd0a5..85c09ac 100644
--- a/test/library-test/build/build.scala
+++ b/test/library-test/build/build.scala
@@ -1,6 +1,6 @@
import cbt._
-// cbt:https://github.com/cvogt/cbt.git#bf4e2c5971adadf4506cacb22094225ceae5a8c1
+// cbt:https://github.com/cvogt/cbt.git#fe04889a6c3fe73ccdb4b19b44ac62e2b1a96f7d
class Build(val context: Context) extends BaseBuild with PackageJars{
def groupId = "cbt.test"
def version = "0.1"
diff --git a/test/simple-fixed-cbt/build/build.scala b/test/simple-fixed-cbt/build/build.scala
index 665a1a7..857f6b7 100644
--- a/test/simple-fixed-cbt/build/build.scala
+++ b/test/simple-fixed-cbt/build/build.scala
@@ -1,6 +1,6 @@
import cbt._
-// cbt:https://github.com/cvogt/cbt.git#bf4e2c5971adadf4506cacb22094225ceae5a8c1
+// cbt:https://github.com/cvogt/cbt.git#fe04889a6c3fe73ccdb4b19b44ac62e2b1a96f7d
class Build(val context: cbt.Context) extends PackageJars{
override def dependencies = super.dependencies ++ Seq(
DirectoryDependency( context.cbtHome ++ "/test/library-test" )
diff --git a/test/simple-fixed/build/build.scala b/test/simple-fixed/build/build.scala
index 1dd7923..a0b192a 100644
--- a/test/simple-fixed/build/build.scala
+++ b/test/simple-fixed/build/build.scala
@@ -5,7 +5,7 @@ class Build(context: cbt.Context) extends BasicBuild(context){
super.dependencies
++
Seq(
- GitDependency("https://github.com/cvogt/cbt.git", "bf4e2c5971adadf4506cacb22094225ceae5a8c1", Some("test/library-test"))
+ GitDependency("https://github.com/cvogt/cbt.git", "fe04889a6c3fe73ccdb4b19b44ac62e2b1a96f7d", Some("test/library-test"))
)
++
Resolver(mavenCentral).bind(
diff --git a/test/simple/build/build.scala b/test/simple/build/build.scala
index 62433e1..3d0e105 100644
--- a/test/simple/build/build.scala
+++ b/test/simple/build/build.scala
@@ -5,7 +5,7 @@ class Build(val context: cbt.Context) extends BaseBuild{
super.dependencies
++
Seq(
- GitDependency("https://github.com/cvogt/cbt.git", "bf4e2c5971adadf4506cacb22094225ceae5a8c1", Some("test/library-test"))
+ GitDependency("https://github.com/cvogt/cbt.git", "fe04889a6c3fe73ccdb4b19b44ac62e2b1a96f7d", Some("test/library-test"))
) ++
// FIXME: make the below less verbose
Resolver( mavenCentral ).bind(