diff options
| author | Nathan Perry <nathan@meta.sc> | 2016-04-30 13:22:33 -0400 |
|---|---|---|
| committer | Nathan Perry <nathan@meta.sc> | 2016-04-30 13:22:33 -0400 |
| commit | 9988e0e8e1ec1d08f703e10f9d9ccc3ad85edf90 (patch) | |
| tree | c00bf130e8a6a649620e26d8dafbaba2ed253441 /build.sbt | |
initial commitscala
Diffstat (limited to 'build.sbt')
| -rwxr-xr-x | build.sbt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt new file mode 100755 index 0000000..c14f31d --- /dev/null +++ b/build.sbt @@ -0,0 +1,17 @@ +lazy val root = (project in file("."))
+
+libraryDependencies ++= Seq(
+ "com.github.austinv11" % "Discord4J" % "2.4.6",
+ "org.slf4j" % "slf4j-simple" % "1.7.9",
+ "org.yaml" % "snakeyaml" % "1.17",
+ "org.scala-lang" % "scala-reflect" % "2.11.8"
+)
+
+resolvers ++= Seq(
+ "jcenter-bintray" at "http://jcenter.bintray.com",
+ "jitpack.io" at "https://jitpack.io"
+)
+
+scalacOptions ++= Seq("-deprecation", "-feature", "-language:implicitConversions")
+
+scalaVersion := "2.11.8"
|
