Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.

Commit 672ceec

Browse files
committed
init sbt
0 parents  commit 672ceec

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
sbt-launch.jar
2+
project/target/
3+
target/

build.sbt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name := "sfdc-docset-generator"
2+
3+
version := "1.0"
4+
5+
scalaVersion := "2.10.1"
6+
7+
scalacOptions ++= Seq("-feature")
8+
9+
libraryDependencies ++= Seq(
10+
"org.rogach" %% "scallop" % "0.9.1"
11+
)

project/build.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=0.12.3

project/plugins.sbt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
resolvers += Classpaths.typesafeResolver
2+
3+
resolvers += "sbt-idea-repo" at "http://mpeltonen.github.com/maven/"
4+
5+
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.4.0")

0 commit comments

Comments
 (0)