-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
38 lines (31 loc) · 998 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
version := "1.2.0"
sbtPlugin := true
name := "xsbt-profile"
organization := "com.scalaone"
scalacOptions ++= Seq("-deprecation", "-unchecked")
publishTo := {
if (isSnapshot.value)
Some("snapshots" at "https://oss.sonatype.org/content/repositories/snapshots")
else
Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
}
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
pomExtra := <url>https://github.com/scalaone/xsbt-profile</url>
<licenses>
<license>
<name>BSD-style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:scalaone/xsbt-profile.git</url>
<connection>scm:git:[email protected]:scalaone/xsbt-profile.git</connection>
</scm>
<developers>
<developer>
<id>haha1903</id>
<name>haha1903</name>
<url>http://scalaone.com</url>
</developer>
</developers>