1- val oauth2ProviderVersion = " 0.18.1-SNAPSHOT"
21val playVersion = " 2.5.6"
32val akkaVersion = " 2.4.7"
43val commonDependenciesInTestScope = Seq (
@@ -11,7 +10,6 @@ lazy val scalaOAuth2ProviderSettings =
1110 scalariformSettings ++
1211 Seq (
1312 organization := " com.nulab-inc" ,
14- version := oauth2ProviderVersion,
1513 scalaVersion := " 2.11.8" ,
1614 crossScalaVersions := Seq (" 2.11.8" ),
1715 scalacOptions ++= Seq (" -deprecation" , " -unchecked" , " -feature" ),
@@ -59,6 +57,7 @@ lazy val scalaOAuth2Core = Project(
5957 settings = scalaOAuth2ProviderSettings ++ Seq (
6058 name := " scala-oauth2-core" ,
6159 description := " OAuth 2.0 server-side implementation written in Scala" ,
60+ version := " 1.0.0" ,
6261 libraryDependencies ++= commonDependenciesInTestScope
6362 )
6463)
@@ -69,6 +68,7 @@ lazy val play2OAuth2Provider = Project(
6968 settings = scalaOAuth2ProviderSettings ++ Seq (
7069 name := " play2-oauth2-provider" ,
7170 description := " Support scala-oauth2-core library on Playframework Scala" ,
71+ version := " 1.0.0" ,
7272 resolvers += " Typesafe repository" at " http://repo.typesafe.com/typesafe/maven-releases/" ,
7373 libraryDependencies ++= Seq (
7474 " com.typesafe.play" %% " play" % playVersion % " provided" ,
@@ -83,6 +83,7 @@ lazy val akkahttpOAuth2Provider = Project(
8383 settings = scalaOAuth2ProviderSettings ++ Seq (
8484 name := " akka-http-oauth2-provider" ,
8585 description := " Support scala-oauth2-core library on akka-http" ,
86+ version := " 1.0.0" ,
8687 resolvers += " Typesafe repository" at " http://repo.typesafe.com/typesafe/maven-releases/" ,
8788 libraryDependencies ++= Seq (
8889 " com.typesafe.akka" %% " akka-http-experimental" % akkaVersion,
@@ -93,4 +94,3 @@ lazy val akkahttpOAuth2Provider = Project(
9394 ) ++ commonDependenciesInTestScope
9495 )
9596) dependsOn (scalaOAuth2Core % " compile->compile;test->test" )
96-
0 commit comments