-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ExNexu/master
Version 0.1.2: Scala version updated to 2.10.3
- Loading branch information
Showing
3 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters