Skip to content

Commit

Permalink
Upgrade template to 0.1.3. See changelog for details of changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fayimora committed Jan 29, 2015
1 parent 4567824 commit 796c4d3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@ This is a [giter8](https://github.com/n8han/giter8) template for generating a ne
* `main` and `test` source directories
* [ScalaTest](http://www.scalatest.org/)
* [Scalacheck](http://www.scalacheck.org/)
* SBT configuration for `0.13.0`, `Scala 2.10.3`, and `ScalaTest 2.0` dependencies
* SBT configuration for `0.13.7`, `Scala 2.11.5`, and `ScalaTest 2.2.1` dependencies
* project `name`, `organization` and `version` customizable as variables

## CHANGELOG

### 0.1.3
* Scala 2.11.5
* ScalaTest 2.2.1
* SBT 0.13.7
* ScalaCheck 1.12.1

### 0.1.2
* Scala 2.10.3

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.0
sbt.version=0.13.7
2 changes: 1 addition & 1 deletion project/project/plugins.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import sbt._
object PluginDef extends Build {
lazy val root = Project("plugins", file(".")) dependsOn (g8plugin)
lazy val g8plugin =
ProjectRef(uri("git://github.com/n8han/giter8#0.5.3"), "giter8-plugin")
ProjectRef(uri("git://github.com/n8han/giter8#0.6.7"), "giter8-plugin")
}
6 changes: 3 additions & 3 deletions src/main/g8/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ organization := "$organization$"

version := "$version$"

scalaVersion := "2.10.3"
scalaVersion := "2.11.5"

libraryDependencies ++= Seq(
"org.scalatest" % "scalatest_2.10" % "2.0" % "test" withSources() withJavadoc(),
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test" withSources() withJavadoc()
"org.scalatest" % "scalatest_2.10" % "2.2.1" % "test" withSources() withJavadoc(),
"org.scalacheck" %% "scalacheck" % "1.12.1" % "test" withSources() withJavadoc()
)

initialCommands := "import $organization$.$name;format="lower,word"$._"
Expand Down

0 comments on commit 796c4d3

Please sign in to comment.