forked from yetu/securesocial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
securesocial.sbt
40 lines (23 loc) · 955 Bytes
/
securesocial.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
import bintray.Keys._
import sbt._
name := """securesocial-parent"""
organization := "com.yetu"
version := Common.version
scalaVersion := Common.scalaVersion
lazy val core = project.in( file("module-code") ).enablePlugins(PlayScala)
lazy val root = project.in( file(".") ).aggregate(core) .settings(
aggregate in update := false
)
// ----------- publishing settings -----------------------------------
// http://www.scala-sbt.org/0.13.5/docs/Detailed-Topics/Publishing.html
// -------------------------------------------------------------------
// sbt-release plugin settings:
releaseSettings
publishMavenStyle := true
publishArtifact in (Test, packageBin) := true
// settings for bintray publishing
bintrayPublishSettings
repository in bintray := "maven"
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0"))
packageLabels in bintray := Seq("oauth2", "yetu")
bintrayOrganization in bintray := Some("yetu")