Fix a couple of build issues.
* fix sample project names * remove experimental tag from stream tests * do not publish stream tck tests
This commit is contained in:
parent
429ec5556d
commit
d718f8978e
6 changed files with 6 additions and 9 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
name := "akka-docs-java-lambda"
|
name := "akka-sample-fsm-java-lambda"
|
||||||
|
|
||||||
version := "2.4-SNAPSHOT"
|
version := "2.4-SNAPSHOT"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
name := "akka-supervision-java-lambda"
|
name := "akka-sample-supervision-java-lambda"
|
||||||
|
|
||||||
version := "2.4-SNAPSHOT"
|
version := "2.4-SNAPSHOT"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<groupId>sample</groupId>
|
<groupId>sample</groupId>
|
||||||
<artifactId>akka-supervision-java-lambda</artifactId>
|
<artifactId>akka-sample-supervision-java-lambda</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>2.4-SNAPSHOT</version>
|
<version>2.4-SNAPSHOT</version>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
import akka._
|
import akka._
|
||||||
import com.typesafe.tools.mima.plugin.MimaKeys
|
|
||||||
|
|
||||||
AkkaBuild.defaultSettings
|
AkkaBuild.defaultSettings
|
||||||
AkkaBuild.experimentalSettings
|
AkkaBuild.dontPublishSettings
|
||||||
Formatting.formatSettings
|
Formatting.formatSettings
|
||||||
Dependencies.streamTestsTck
|
Dependencies.streamTestsTck
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
import akka._
|
import akka._
|
||||||
import com.typesafe.tools.mima.plugin.MimaKeys
|
|
||||||
|
|
||||||
AkkaBuild.defaultSettings
|
AkkaBuild.defaultSettings
|
||||||
AkkaBuild.dontPublishSettings
|
AkkaBuild.dontPublishSettings
|
||||||
AkkaBuild.experimentalSettings
|
|
||||||
Formatting.formatSettings
|
Formatting.formatSettings
|
||||||
Dependencies.streamTests
|
Dependencies.streamTests
|
||||||
|
|
|
||||||
|
|
@ -277,13 +277,13 @@ object AkkaBuild extends Build {
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val streamTests = Project(
|
lazy val streamTests = Project(
|
||||||
id = "akka-stream-tests-experimental",
|
id = "akka-stream-tests",
|
||||||
base = file("akka-stream-tests"),
|
base = file("akka-stream-tests"),
|
||||||
dependencies = Seq(streamTestkit % "test->test", stream)
|
dependencies = Seq(streamTestkit % "test->test", stream)
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val streamTestsTck = Project(
|
lazy val streamTestsTck = Project(
|
||||||
id = "akka-stream-tests-tck-experimental",
|
id = "akka-stream-tests-tck",
|
||||||
base = file("akka-stream-tests-tck"),
|
base = file("akka-stream-tests-tck"),
|
||||||
dependencies = Seq(streamTestkit % "test->test", stream)
|
dependencies = Seq(streamTestkit % "test->test", stream)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue