Skip to content

Commit 0280306

Browse files
committed
Add SBT build, .gitignore.
1 parent 25e0986 commit 0280306

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

build.sbt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name := "dotty"
2+
3+
organization := "lamp"
4+
5+
scalaVersion := "2.10.0"
6+
7+
scalaSource in Compile <<= baseDirectory / "src"
8+
9+
scalacOptions in Global ++= Seq("-feature", "-deprecation", "-language:_")
10+
11+
libraryDependencies <+= scalaVersion ( sv => "org.scala-lang" % "scala-reflect" % sv )
12+
13+
scalaSource in Test <<= baseDirectory / "test"

gitignore.SAMPLE

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
.idea_modules
3+
.gitignore
4+
target
5+
project/local-plugins.sbt

project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=0.12.2

project/plugins.sbt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Add personal SBT plugins for IDEs, etc to `local-plugins.sbt`
2+
//
3+
// e.g. addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.1.0")

0 commit comments

Comments
 (0)