-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.sbt
51 lines (38 loc) · 1.4 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
46
47
48
49
50
import scala.xml.Group
lazy val generator = project
lazy val plugin = project
scalacOptions ++= Seq("-unchecked", "-deprecation")
javacOptions ++= Seq("-target", "1.6", "-source", "1.6")
scalaVersion := "2.11.0"
crossScalaVersions := Seq("2.9.1", "2.9.0-1", "2.9.0", "2.9.1-1", "2.9.2", "2.9.3", "2.10.0", "2.11.0")
organization in ThisBuild := "com.mojolly.scalate"
licenses in ThisBuild := Seq(
"MIT" -> new URL("https://github.com/backchatio/xsbt-scalate-generate/blob/master/LICENSE")
)
publish := {}
publishLocal := {}
// publishSigned := {}
pomExtra in ThisBuild <<= (pomExtra, name, description) {(pom, name, desc) => pom ++ Group(
<url>http://github.com/backchatio/xsbt-scalate-generate</url>
<scm>
<connection>scm:git:git://github.com/backchatio/xsbt-scalate-generate.git</connection>
<developerConnection>scm:git:git@github.com:mojolly/xsbt-scalate-generate.git</developerConnection>
<url>https://github.com/backchatio/xsbt-scalate-generate.git</url>
</scm>
<developers>
<developer>
<id>casualjim</id>
<name>Ivan Porto Carrero</name>
<url>http://flanders.co.nz/</url>
</developer>
<developer>
<id>sdb</id>
<name>Stefan De Boey</name>
<url>http://stefandeboey.be/</url>
</developer>
<developer>
<id>BowlingX</id>
<name>David Heidrich</name>
<url>http://www.myself-design.com/</url>
</developer>
</developers>) }