Skip to content

Commit 8d90f00

Browse files
committed
sbt 0.11
1 parent c5736ee commit 8d90f00

19 files changed

+17
-63
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
# SBT
2-
project/boot
3-
project/target
41
target
5-
.history
62

73
# Eclipse
84
.scala_dependencies

LICENSE

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,6 @@ The image rendered by Graphviz:
101101

102102
![Diagram 1](https://github.com/sdb/scuml/raw/master/doc/images/diagram1.png)
103103

104-
## License
105-
106-
You may use this project under the terms of the [MIT License](http://www.opensource.org/licenses/mit-license.php).
107-
108104
## Contributing
109105

110106
If you want to contribute fixes and/or features then [fork](http://help.github.com/fork-a-repo/) this repository, push your changes and send me a [pull request](http://help.github.com/send-pull-requests/).

build.sbt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name := "scuml"
2+
3+
organization := "com.github.sdb"
4+
5+
libraryDependencies ++= Seq(
6+
"org.specs2" %% "specs2" % "1.6.1",
7+
"junit" % "junit" % "4.10"
8+
)
9+
10+
scalaSource in Compile <<= baseDirectory { (base) => base / "src" }
11+
12+
scalaSource in Test <<= baseDirectory { (base) => base / "test" }
13+
14+
testOptions in Test ++= Seq(Tests.Argument("junitxml"), Tests.Argument("console"))

project/BuildSettings.scala

Lines changed: 0 additions & 35 deletions
This file was deleted.

project/plugins/build.sbt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
resolvers += "gseitz@github" at "http://gseitz.github.com/maven/"
2+
3+
addSbtPlugin("com.github.gseitz" % "sbt-release" % "0.4")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)