forked from n8han/conscript-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
32 lines (23 loc) · 770 Bytes
/
build.sbt
File metadata and controls
32 lines (23 loc) · 770 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
sbtPlugin := true
name := "conscript-plugin"
organization := "net.databinder"
description := "conscript-plugin is an sbt plugin for making conscript apps"
version := "0.3.5"
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 :_*)