forked from gafter/google-rfc-2445
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
40 lines (29 loc) · 1.01 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
name := "google-rfc-2445"
organization := "com.greenfossil"
version := "1.1.0"
//Do not append scala versions to the generated artifacts
crossPaths := false
//This forbids including scala related libraries into the dependency
autoScalaLibrary := false
lazy val rfc2445 = (project in file(".")).settings(
publishArtifact in (Compile, packageDoc) := false,
publishArtifact in packageDoc := false,
sources in (Compile, doc) := Seq.empty
)
publishMavenStyle := true
pomIncludeRepository := { _ => false }
pomExtra :=
<licenses>
<license>
<name>Greenfossil License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
resolvers ++= Seq(
"GF Release" at "http://www.greenfossil.com:8081/nexus/content/groups/public/",
"GF Snapshot" at "http://www.greenfossil.com:8081/nexus/content/groups/public-snapshots/",
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
)
libraryDependencies ++= Seq(
)