-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·39 lines (20 loc) · 947 Bytes
/
build.sbt
File metadata and controls
executable file
·39 lines (20 loc) · 947 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
35
36
37
38
39
name := "keycloak"
organization in ThisBuild := "com.kreactive"
scalaVersion in Global := "2.12.4"
crossScalaVersions in ThisBuild := Seq("2.11.11", "2.12.4")
scalacOptions in ThisBuild ++= Seq("-deprecation")
lazy val basicModel = project in file("BasicModel")
lazy val authenticator = project in file("authenticator") dependsOn basicModel aggregate basicModel
bintrayReleaseOnPublish in ThisBuild := false
bintrayOrganization in ThisBuild := Some("kreactive")
licenses in ThisBuild := List(
("Apache-2.0",
url("https://www.apache.org/licenses/LICENSE-2.0"))
)
homepage in ThisBuild := Some(url("https://github.com/kreactive"))
publishTo := Some("kreactive bintray" at "https://api.bintray.com/maven/kreactive/maven/keycloak")
credentials += Credentials(Path.userHome / ".sbt" / ".credentials")
publishMavenStyle := true
publishArtifact := false
// don't publish root artifact
packagedArtifacts in file(".") := Map.empty