diff --git a/akka-docs/rst/java/persistence.rst b/akka-docs/rst/java/persistence.rst index 971202c78f..157145028f 100644 --- a/akka-docs/rst/java/persistence.rst +++ b/akka-docs/rst/java/persistence.rst @@ -799,12 +799,12 @@ Plugin TCK ---------- In order to help developers build correct and high quality storage plugins, we provide an Technology Compatibility Kit (`TCK `_ for short). -The TCK is usable from Java as well as Scala projects, for Java you need to include the akka-persistence-tck-experimental dependency:: +The TCK is usable from Java as well as Scala projects, for Java you need to include the akka-persistence-tck dependency:: com.typesafe.akka - akka-persistence-tck-experimental_${scala.version} - 2.3.5 + akka-persistence-tck_${scala.version} + @version@ test diff --git a/akka-docs/rst/scala/persistence.rst b/akka-docs/rst/scala/persistence.rst index b707cb82f8..0c73f11c6b 100644 --- a/akka-docs/rst/scala/persistence.rst +++ b/akka-docs/rst/scala/persistence.rst @@ -858,9 +858,9 @@ Plugin TCK ---------- In order to help developers build correct and high quality storage plugins, we provide an Technology Compatibility Kit (`TCK `_ for short). -The TCK is usable from Java as well as Scala projects, for Scala you need to include the akka-persistence-tck-experimental dependency:: +The TCK is usable from Java as well as Scala projects, for Scala you need to include the akka-persistence-tck dependency:: - "com.typesafe.akka" %% "akka-persistence-tck-experimental" % "@version@" % "test" + "com.typesafe.akka" %% "akka-persistence-tck" % "@version@" % "test" To include the Journal TCK tests in your test suite simply extend the provided ``JournalSpec``: