-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
36 lines (28 loc) · 804 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
sbtPlugin := true
organization := "net.arya"
name := "newfangled"
enablePlugins(GitVersioning)
enablePlugins(GitBranchPrompt)
git.useGitDescribe := true
sonatypeProfileName := "net.arya"
pomExtra := {
<url>http://github.com/refried/newfangled</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/refried/newfangled</connection>
<developerConnection>scm:git:[email protected]:refried/newfangled</developerConnection>
<url>github.com/refried/newfangled</url>
</scm>
<developers>
<developer>
<id>arya</id>
<name>Arya Irani</name>
<url>https://github.com/refried</url>
</developer>
</developers>
}