Skip to content

Commit

Permalink
upgrade cbt
Browse files Browse the repository at this point in the history
  • Loading branch information
cvogt committed Jul 5, 2016
1 parent 66e4210 commit 3e7d820
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 17 deletions.
5 changes: 2 additions & 3 deletions build/build.scala
@@ -1,8 +1,7 @@
import cbt._
import ai.x.build.{XdotaiFreeSoftwareBuild,team}
import scala.collection.immutable.Seq
// cbt:https://github.com/cvogt/cbt.git#25e4d66e6abe5ef285849e710851ef84dc3ac700
class Build(context: cbt.Context) extends cbt.PublishBuild(context) with XdotaiFreeSoftwareBuild{
// cbt:https://github.com/cvogt/cbt.git#bc2231720d3620b5e0459fa12c467bf675fcfdf5
class Build(val context: cbt.Context) extends XdotaiFreeSoftwareBuild{
def name = "lens"
def defaultVersion = "1.0.0"
def description = "Convenient ad-hoc lens Syntax on top of Monocle"
Expand Down
9 changes: 3 additions & 6 deletions build/build/build.scala
@@ -1,14 +1,11 @@
import cbt._
import java.net.URL
import java.io.File
import scala.collection.immutable.Seq

class Build( context: Context ) extends BuildBuild( context ){
// cbt:https://github.com/cvogt/cbt.git#bc2231720d3620b5e0459fa12c467bf675fcfdf5
class Build(val context: Context) extends BuildBuild{
override def dependencies = (
super.dependencies // don't forget super.dependencies here
++
Seq(
GitDependency("https://github.com/xdotai/free-software-build.git","389913f3a8e65315a146b6c6131964df6e1318c6")
GitDependency("https://github.com/xdotai/free-software-build.git","ed68f308e211dd02cb92f1c5f98d78979b472ca8")
)
)
}
10 changes: 2 additions & 8 deletions test/build/build.scala
@@ -1,9 +1,3 @@
import cbt._
import java.net._
import java.io.File
import scala.collection.immutable.Seq

class Build(context: cbt.Context) extends cbt.BasicBuild(context) with mixins.Test{
override def defaultScalaVersion = "2.11.7"
override def scalacOptions = super.scalacOptions ++ Seq( "-language:higherKinds" )
}
// cbt:https://github.com/cvogt/cbt.git#3c2310c9d092cc2589743a081a433103ab58e59b
class Build(val context: cbt.Context) extends mixins.Test with Recommended

0 comments on commit 3e7d820

Please sign in to comment.