-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
44 lines (29 loc) · 876 Bytes
/
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
import bintray.Keys._
sbtPlugin := true
organization := "net.eamelink.sbt"
name := "sbt-purescript"
version := "0.5.0-SNAPSHOT"
scalaVersion := "2.10.4"
scalacOptions += "-feature"
addSbtPlugin("com.typesafe.sbt" % "sbt-web" % "1.0.2")
publishMavenStyle := false
bintrayPublishSettings
repository in bintray := "sbt-plugins"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
bintrayOrganization in bintray := None
pomExtra := (
<scm>
<url>git@github.com:eamelink/sbt-purescript.git</url>
<connection>scm:git:git@github.com:eamelink/sbt-purescript.git</connection>
</scm>
<developers>
<developer>
<id>eamelink</id>
<name>Erik Bakker</name>
<url>https://github.com/eamelink</url>
</developer>
</developers>
)
ScriptedPlugin.scriptedSettings
scriptedLaunchOpts ++= Seq(
"-Dplugin.version=" + version.value)