remove experimental marker from stream/testkit/parsing/http-core

This commit is contained in:
Roland Kuhn 2016-01-25 14:05:54 +01:00
parent d49d2545ec
commit 607fbd6378
5 changed files with 9 additions and 13 deletions

View file

@ -2,7 +2,6 @@ import akka._
import com.typesafe.tools.mima.plugin.MimaKeys
AkkaBuild.defaultSettings
AkkaBuild.experimentalSettings
Formatting.formatSettings
OSGi.httpCore
Dependencies.httpCore

View file

@ -2,7 +2,6 @@ import akka._
import com.typesafe.tools.mima.plugin.MimaKeys
AkkaBuild.defaultSettings
AkkaBuild.experimentalSettings
Formatting.docFormatSettings
site.settings
OSGi.parsing

View file

@ -2,7 +2,6 @@ import akka._
import com.typesafe.tools.mima.plugin.MimaKeys
AkkaBuild.defaultSettings
AkkaBuild.experimentalSettings
Formatting.formatSettings
OSGi.streamTestkit
Dependencies.streamTestkit

View file

@ -3,7 +3,6 @@ import com.typesafe.tools.mima.plugin.MimaKeys
import spray.boilerplate.BoilerplatePlugin._
AkkaBuild.defaultSettings
AkkaBuild.experimentalSettings
Formatting.formatSettings
OSGi.stream
Dependencies.stream

View file

@ -201,7 +201,7 @@ object AkkaBuild extends Build {
)
lazy val httpCore = Project(
id = "akka-http-core-experimental",
id = "akka-http-core",
base = file("akka-http-core"),
dependencies = Seq(stream, parsing, streamTestkit % "test->test")
)
@ -212,12 +212,6 @@ object AkkaBuild extends Build {
dependencies = Seq(httpCore)
)
lazy val streamTestkit = Project(
id = "akka-stream-testkit",
base = file("akka-stream-testkit"), // TODO that persistence dependency
dependencies = Seq(stream, persistence % "compile;provided->provided;test->test", testkit % "compile;test->test")
)
lazy val httpTestkit = Project(
id = "akka-http-testkit-experimental",
base = file("akka-http-testkit"),
@ -266,16 +260,22 @@ object AkkaBuild extends Build {
)
lazy val parsing = Project(
id = "akka-parsing-experimental",
id = "akka-parsing",
base = file("akka-parsing")
)
lazy val stream = Project(
id = "akka-stream-experimental",
id = "akka-stream",
base = file("akka-stream"),
dependencies = Seq(actor)
)
lazy val streamTestkit = Project(
id = "akka-stream-testkit",
base = file("akka-stream-testkit"), // TODO that persistence dependency
dependencies = Seq(stream, persistence % "compile;provided->provided;test->test", testkit % "compile;test->test")
)
lazy val streamTests = Project(
id = "akka-stream-tests-experimental",
base = file("akka-stream-tests"),