-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
41 lines (26 loc) · 1.06 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
sbtPlugin := true
organization := "com.ssachtleben"
name := """sbt-assets-define"""
version := "1.0.4"
scalaVersion := "2.10.4"
scalacOptions += "-feature"
autoScalaLibrary := false
crossPaths := false
publishArtifact in(Compile, packageDoc) := false
resolvers ++= Seq(
"Typesafe Releases Repository" at "http://repo.typesafe.com/typesafe/releases/",
Resolver.url("sbt snapshot plugins", url("http://repo.scala-sbt.org/scalasbt/sbt-plugin-snapshots"))(Resolver.ivyStylePatterns),
Resolver.sonatypeRepo("snapshots"),
"Typesafe Snapshots Repository" at "http://repo.typesafe.com/typesafe/snapshots/",
Resolver.mavenLocal
)
libraryDependencies ++= Seq(
"commons-io" % "commons-io" % "2.4",
"org.apache.commons" % "commons-lang3" % "3.3.2",
"org.webjars" % "mkdirp" % "0.3.5"
)
addSbtPlugin("com.typesafe.sbt" % "sbt-js-engine" % "1.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0")
addSbtPlugin("com.ssachtleben" % "sbt-assets-handlebars" % "1.0.0")
scriptedSettings
scriptedLaunchOpts <+= version apply { v => s"-Dproject.version=$v" }