Skip to content

Commit

Permalink
reference fixed version of cbt
Browse files Browse the repository at this point in the history
  • Loading branch information
cvogt committed Nov 8, 2017
1 parent 2ab3402 commit 52736f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/library-test/build/build.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import cbt._

// cbt:https://github.com/cvogt/cbt.git#f11b8318b85f16843d8cfa0743f64c1576614ad6
// cbt:https://github.com/cvogt/cbt.git#2ab3402e4899e722905a3a5a0825c5af38706303
class Build(val context: Context) extends BaseBuild with PackageJars{
def groupId = "cbt.test"
def version = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion test/simple-fixed-cbt/build/build.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import cbt._

// cbt:https://github.com/cvogt/cbt.git#f11b8318b85f16843d8cfa0743f64c1576614ad6
// cbt:https://github.com/cvogt/cbt.git#2ab3402e4899e722905a3a5a0825c5af38706303
class Build(val context: cbt.Context) extends PackageJars{
override def dependencies = super.dependencies ++ Seq(
DirectoryDependency( context.cbtHome ++ "/test/library-test" )
Expand Down
2 changes: 1 addition & 1 deletion test/simple-fixed/build/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Build(context: cbt.Context) extends BasicBuild(context){
super.dependencies
++
Seq(
GitDependency("https://github.com/cvogt/cbt.git", "f11b8318b85f16843d8cfa0743f64c1576614ad6", Some("test/library-test"))
GitDependency("https://github.com/cvogt/cbt.git", "2ab3402e4899e722905a3a5a0825c5af38706303", Some("test/library-test"))
)
)
}

0 comments on commit 52736f4

Please sign in to comment.