-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.sbt
More file actions
34 lines (24 loc) · 824 Bytes
/
build.sbt
File metadata and controls
34 lines (24 loc) · 824 Bytes
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
sbtPlugin := true
name := "conscript-plugin"
organization := "net.databinder"
description := "conscript-plugin is an sbt plugin for making conscript apps"
version := "0.3.5"
scalacOptions ++= Seq("-deprecation", "-language:_")
homepage := Some(url("https://github.com/n8han/conscript"))
publishTo :=
Some("releases" at
"https://oss.sonatype.org/service/local/staging/deploy/maven2")
licenses := Seq("LGPL v3" -> url("http://www.gnu.org/licenses/lgpl.txt"))
pomExtra := (
<scm>
<url>git@github.com:n8han/conscript-plugin.git</url>
<connection>scm:git:git@github.com:n8han/conscript-plugin.git</connection>
</scm>
<developers>
<developer>
<id>n8han</id>
<name>Nathan Hamblen</name>
<url>http://github.com/n8han</url>
</developer>
</developers>)
seq(lsSettings :_*)