diff --git a/akka-docs/rst/java/persistence-query-leveldb.rst b/akka-docs/rst/java/persistence-query-leveldb.rst index fb4c9315d0..ac5ad765e8 100644 --- a/akka-docs/rst/java/persistence-query-leveldb.rst +++ b/akka-docs/rst/java/persistence-query-leveldb.rst @@ -7,22 +7,15 @@ Persistence Query for LevelDB This is documentation for the LevelDB implementation of the :ref:`persistence-query-java` API. Note that implementations for other journals may have different semantics. -.. warning:: - - This module is marked as **“experimental”** as of its introduction in Akka 2.4.0. We will continue to - improve this API based on our users’ feedback, which implies that while we try to keep incompatible - changes to a minimum the binary compatibility guarantee for maintenance releases does not apply to the - contents of the ``akka.persistence.query`` package. - Dependencies ============ -Akka persistence LevelDB query implementation is bundled in the ``akka-persistence-query-experimental`` artifact. +Akka persistence LevelDB query implementation is bundled in the ``akka-persistence-query`` artifact. Make sure that you have the following dependency in your project:: com.typesafe.akka - akka-persistence-query-experimental_@binVersion@ + akka-persistence-query_@binVersion@ @version@ diff --git a/akka-docs/rst/java/persistence-query.rst b/akka-docs/rst/java/persistence-query.rst index 376ea26504..d8244a7b60 100644 --- a/akka-docs/rst/java/persistence-query.rst +++ b/akka-docs/rst/java/persistence-query.rst @@ -14,13 +14,6 @@ side of an application, however it can help to migrate data from the write side simple scenarios Persistence Query may be powerful enough to fulfill the query needs of your app, however we highly recommend (in the spirit of CQRS) of splitting up the write/read sides into separate datastores as the need arises. -.. warning:: - - This module is marked as **“experimental”** as of its introduction in Akka 2.4.0. We will continue to - improve this API based on our users’ feedback, which implies that while we try to keep incompatible - changes to a minimum the binary compatibility guarantee for maintenance releases does not apply to the - contents of the ``akka.persistence.query`` package. - Dependencies ============ @@ -28,7 +21,7 @@ Akka persistence query is a separate jar file. Make sure that you have the follo com.typesafe.akka - akka-persistence-query-experimental_@binVersion@ + akka-persistence-query_@binVersion@ @version@ diff --git a/akka-docs/rst/scala/persistence-query-leveldb.rst b/akka-docs/rst/scala/persistence-query-leveldb.rst index 6ac76b60c1..7b20824f1f 100644 --- a/akka-docs/rst/scala/persistence-query-leveldb.rst +++ b/akka-docs/rst/scala/persistence-query-leveldb.rst @@ -7,20 +7,13 @@ Persistence Query for LevelDB This is documentation for the LevelDB implementation of the :ref:`persistence-query-scala` API. Note that implementations for other journals may have different semantics. -.. warning:: - - This module is marked as **“experimental”** as of its introduction in Akka 2.4.0. We will continue to - improve this API based on our users’ feedback, which implies that while we try to keep incompatible - changes to a minimum the binary compatibility guarantee for maintenance releases does not apply to the - contents of the ``akka.persistence.query`` package. - Dependencies ============ -Akka persistence LevelDB query implementation is bundled in the ``akka-persistence-query-experimental`` artifact. +Akka persistence LevelDB query implementation is bundled in the ``akka-persistence-query`` artifact. Make sure that you have the following dependency in your project:: - "com.typesafe.akka" %% "akka-persistence-query-experimental" % "@version@" @crossString@ + "com.typesafe.akka" %% "akka-persistence-query" % "@version@" @crossString@ How to get the ReadJournal ========================== diff --git a/akka-docs/rst/scala/persistence-query.rst b/akka-docs/rst/scala/persistence-query.rst index 6026cf38f9..6dffb0c49c 100644 --- a/akka-docs/rst/scala/persistence-query.rst +++ b/akka-docs/rst/scala/persistence-query.rst @@ -14,19 +14,12 @@ side of an application, however it can help to migrate data from the write side simple scenarios Persistence Query may be powerful enough to fulfill the query needs of your app, however we highly recommend (in the spirit of CQRS) of splitting up the write/read sides into separate datastores as the need arises. -.. warning:: - - This module is marked as **“experimental”** as of its introduction in Akka 2.4.0. We will continue to - improve this API based on our users’ feedback, which implies that while we try to keep incompatible - changes to a minimum the binary compatibility guarantee for maintenance releases does not apply to the - contents of the ``akka.persistence.query`` package. - Dependencies ============ Akka persistence query is a separate jar file. Make sure that you have the following dependency in your project:: - "com.typesafe.akka" %% "akka-persistence-query-experimental" % "@version@" @crossString@ + "com.typesafe.akka" %% "akka-persistence-query" % "@version@" @crossString@ Design overview =============== diff --git a/akka-persistence-query/build.sbt b/akka-persistence-query/build.sbt index c4be5a5638..b41a1b2b60 100644 --- a/akka-persistence-query/build.sbt +++ b/akka-persistence-query/build.sbt @@ -1,7 +1,6 @@ import akka.{ AkkaBuild, Dependencies, Formatting, ScaladocNoVerificationOfDiagrams, OSGi } AkkaBuild.defaultSettings -AkkaBuild.experimentalSettings Formatting.formatSettings OSGi.persistenceQuery Dependencies.persistenceQuery diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index 9c4121ae4e..42e444b9b7 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -209,7 +209,7 @@ object AkkaBuild extends Build { ) lazy val persistenceQuery = Project( - id = "akka-persistence-query-experimental", + id = "akka-persistence-query", base = file("akka-persistence-query"), dependencies = Seq( stream,