-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.sbt
45 lines (30 loc) · 1.11 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
42
43
44
45
sbtPlugin := true
name := "coffeescripted-sbt"
organization := "me.lessis"
version := "0.2.4-SNAPSHOT"
libraryDependencies += "org.mozilla" % "rhino" % "1.7R3"
scalacOptions += Opts.compile.deprecation
seq(scriptedSettings: _*)
seq(lsSettings:_*)
(LsKeys.tags in LsKeys.lsync) := Seq("sbt", "coffeescript")
description := "Sbt plugin for compiling CoffeeScript sources"
licenses <<= (version)(v => Seq(
("MIT", url("https://github.com/softprops/coffeescripted-sbt/blob/%s/LICENSE" format v))
))
publishTo := Some(Classpaths.sbtPluginReleases)
//publishTo := Some(Resolver.url("sbt-plugin-releases", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns))
publishArtifact in Test := false
publishMavenStyle := false
pomExtra := (
<scm>
<url>git@github.com:softprops/coffeescripted-sbt.git</url>
<connection>scm:git:git@github.com:softprops/coffeescripted-sbt.git</connection>
</scm>
<developers>
<developer>
<id>softprops</id>
<name>Doug Tangren</name>
<url>https://github.com/softprops</url>
</developer>
</developers>
)