aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2016-06-15 01:38:42 -0400
committerGitHub <noreply@github.com>2016-06-15 01:38:42 -0400
commit75af8c107c0b43af4cf068a076583cfbe3c80894 (patch)
tree8274f1372eced85bcde38c39135fd73bde987ab2 /README.md
parente02df8c99b9c8fa5dac3ab724a90cb138ba7dc0b (diff)
parentebff3d51b990c8f8e292084dcd5f3a0342f83f37 (diff)
downloadcbt-75af8c107c0b43af4cf068a076583cfbe3c80894.tar.gz
cbt-75af8c107c0b43af4cf068a076583cfbe3c80894.tar.bz2
cbt-75af8c107c0b43af4cf068a076583cfbe3c80894.zip
Merge pull request #143 from cvogt/publish-improvements
Publish improvements
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 94b52a8..73a0594 100644
--- a/README.md
+++ b/README.md
@@ -15,9 +15,9 @@ easy custom code. If you integrate something, consider
doing it as traits that you make available as a library that
other builds can depend on and mix in.
-Slides from CBT talk from NEScala 2016:
+Slides and video from CBT talk from NEScala 2016:
https://github.com/cvogt/talks/raw/master/2016-03-04_NEScala-2016_A-Vision-For-Scala-Builds.pdf
-(video coming soon...)
+https://www.youtube.com/watch?v=5HfKw3hgdOM
Getting started
---------------
@@ -44,13 +44,13 @@ that describes your build. Here is an example
```scala
// build/build.scala
import cbt._
-class Build(context: cbt.Context) extends PackageBuild(context){
- override def version = "0.6.1-SNAPSHOT"
+class Build(val context: cbt.Context) extends BaseBuild{
+ override def version = "0.6.1"
override def groupId = "org.cvogt"
override def artifactId = "play-json-extensions"
override def dependencies =
- super.dependencies :+
- resolver(mavenCentral).bind(
+ super.dependencies ++
+ Resolver(mavenCentral).bind(
// encouraged way to declare dependencies
ScalaDependency("com.typesafe.play", "play-json", "2.4.4"),
MavenDependency("joda-time", "joda-time", "2.9.2")