Skip to content

Commit

Permalink
Merge pull request #3 from ExNexu/master
Browse files Browse the repository at this point in the history
Version 0.1.2: Scala version updated to 2.10.3
  • Loading branch information
fayimora committed Oct 6, 2013
2 parents 3f34424 + a17809f commit 2e2aded
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
This is a [giter8](https://github.com/n8han/giter8) template for generating a new scala project. It
comes bundled with:
This is a [giter8](https://github.com/n8han/giter8) template for generating a new scala project. It comes bundled with:

* `main` and `test` source directories
* [ScalaTest](http://www.scalatest.org/)
* SBT configuration for `0.13.0`, scala `2.10.2`, and `scalatest` dependencies
* SBT configuration for `0.13.0`, Scala `2.10.3`, and `Scalatest` dependencies
* project `name`, `organization` and `version` customizable as variables

## CHANGELOG

### 0.1.2
* Scala 2.10.3

### 0.1.1
* scalatest 1.9.2 for testing
* sbt 0.13.0
* Scalatest 1.9.2 for testing
* Sbt 0.13.0

### 0.1.0 (Initial release!)
* scalatest 1.9.1 for testing
* sbt 0.12.4
* scala 2.10.2
* Scalatest 1.9.1 for testing
* Sbt 0.12.4
* Scala 2.10.2

3 changes: 2 additions & 1 deletion project/project/plugins.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sbt._

object PluginDef extends Build {
lazy val root = Project("plugins", file(".")) dependsOn( g8plugin )
lazy val root = Project("plugins", file(".")) dependsOn (g8plugin)
lazy val g8plugin =
ProjectRef(uri("git://github.com/n8han/giter8#0.5.3"), "giter8-plugin")
}
2 changes: 1 addition & 1 deletion src/main/g8/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "$organization$"

version := "$version$"

scalaVersion := "2.10.2"
scalaVersion := "2.10.3"

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "1.9.2" % "test"
Expand Down

0 comments on commit 2e2aded

Please sign in to comment.