Skip to content

Commit

Permalink
remove experimental marker from stream/testkit/parsing/http-core
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuhn committed Jan 25, 2016
1 parent d49d254 commit 607fbd6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
1 change: 0 additions & 1 deletion akka-http-core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import akka._
import com.typesafe.tools.mima.plugin.MimaKeys

AkkaBuild.defaultSettings
AkkaBuild.experimentalSettings
Formatting.formatSettings
OSGi.httpCore
Dependencies.httpCore
Expand Down
1 change: 0 additions & 1 deletion akka-parsing/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import akka._
import com.typesafe.tools.mima.plugin.MimaKeys

AkkaBuild.defaultSettings
AkkaBuild.experimentalSettings
Formatting.docFormatSettings
site.settings
OSGi.parsing
Expand Down
1 change: 0 additions & 1 deletion akka-stream-testkit/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import akka._
import com.typesafe.tools.mima.plugin.MimaKeys

AkkaBuild.defaultSettings
AkkaBuild.experimentalSettings
Formatting.formatSettings
OSGi.streamTestkit
Dependencies.streamTestkit
Expand Down
1 change: 0 additions & 1 deletion akka-stream/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions project/AkkaBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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")
)
Expand All @@ -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"),
Expand Down Expand Up @@ -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"),
Expand Down

0 comments on commit 607fbd6

Please sign in to comment.