1
- val oauth2ProviderVersion = " 0.18.1-SNAPSHOT"
2
1
val playVersion = " 2.5.6"
3
2
val akkaVersion = " 2.4.7"
4
3
val commonDependenciesInTestScope = Seq (
@@ -11,7 +10,6 @@ lazy val scalaOAuth2ProviderSettings =
11
10
scalariformSettings ++
12
11
Seq (
13
12
organization := " com.nulab-inc" ,
14
- version := oauth2ProviderVersion,
15
13
scalaVersion := " 2.11.8" ,
16
14
crossScalaVersions := Seq (" 2.11.8" ),
17
15
scalacOptions ++= Seq (" -deprecation" , " -unchecked" , " -feature" ),
@@ -59,6 +57,7 @@ lazy val scalaOAuth2Core = Project(
59
57
settings = scalaOAuth2ProviderSettings ++ Seq (
60
58
name := " scala-oauth2-core" ,
61
59
description := " OAuth 2.0 server-side implementation written in Scala" ,
60
+ version := " 1.0.0" ,
62
61
libraryDependencies ++= commonDependenciesInTestScope
63
62
)
64
63
)
@@ -69,6 +68,7 @@ lazy val play2OAuth2Provider = Project(
69
68
settings = scalaOAuth2ProviderSettings ++ Seq (
70
69
name := " play2-oauth2-provider" ,
71
70
description := " Support scala-oauth2-core library on Playframework Scala" ,
71
+ version := " 1.0.0" ,
72
72
resolvers += " Typesafe repository" at " http://repo.typesafe.com/typesafe/maven-releases/" ,
73
73
libraryDependencies ++= Seq (
74
74
" com.typesafe.play" %% " play" % playVersion % " provided" ,
@@ -83,6 +83,7 @@ lazy val akkahttpOAuth2Provider = Project(
83
83
settings = scalaOAuth2ProviderSettings ++ Seq (
84
84
name := " akka-http-oauth2-provider" ,
85
85
description := " Support scala-oauth2-core library on akka-http" ,
86
+ version := " 1.0.0" ,
86
87
resolvers += " Typesafe repository" at " http://repo.typesafe.com/typesafe/maven-releases/" ,
87
88
libraryDependencies ++= Seq (
88
89
" com.typesafe.akka" %% " akka-http-experimental" % akkaVersion,
@@ -93,4 +94,3 @@ lazy val akkahttpOAuth2Provider = Project(
93
94
) ++ commonDependenciesInTestScope
94
95
)
95
96
) dependsOn (scalaOAuth2Core % " compile->compile;test->test" )
96
-
0 commit comments