Skip to content

Commit

Permalink
chore: remove projections (moved to akka-projection) (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlugter authored Oct 16, 2024
1 parent 0537a73 commit 582f899
Show file tree
Hide file tree
Showing 35 changed files with 6 additions and 7,785 deletions.
11 changes: 2 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ lazy val root = (project in file("."))
publishTo := Some(Resolver.file("Unused transient repository", file("target/unusedrepo"))))
.enablePlugins(ScalaUnidocPlugin)
.disablePlugins(SitePlugin, MimaPlugin, CiReleasePlugin)
.aggregate(core, projection, docs)
.aggregate(core, docs)

def suffixFileFilter(suffix: String): FileFilter = new SimpleFileFilter(f => f.getAbsolutePath.endsWith(suffix))

Expand All @@ -125,18 +125,11 @@ lazy val core = (project in file("core"))
.enablePlugins(AutomateHeaderPlugin)
.disablePlugins(CiReleasePlugin)

lazy val projection = (project in file("projection"))
.dependsOn(core)
.settings(common)
.settings(name := "akka-projection-dynamodb", libraryDependencies ++= Dependencies.projection)
.enablePlugins(AutomateHeaderPlugin)
.disablePlugins(CiReleasePlugin)

lazy val docs = project
.in(file("docs"))
.enablePlugins(AkkaParadoxPlugin, ParadoxSitePlugin, PreprocessPlugin, PublishRsyncPlugin)
.disablePlugins(MimaPlugin, CiReleasePlugin)
.dependsOn(core % "compile;test->test", projection)
.dependsOn(core % "compile;test->test")
.settings(common)
.settings(dontPublish)
.settings(
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/paradox/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ For queries and projection `SourceProvider` you would use `"second-dynamodb.quer
@scala[`DynamoDBReadJournal.Identifier`]@java[`DynamoDBReadJournal.Identifier()`]
(`"akka.persistence.dynamodb.query"`).

For additional details on multiple plugin configuration for projections see the @ref:[Akka Projection DynamoDB
docs](projection.md#multiple-plugins).
For additional details on multiple plugin configuration for projections see the @extref:[Akka Projection DynamoDB
docs](akka-projection:dynamodb.html#multiple-plugins).
2 changes: 1 addition & 1 deletion docs/src/main/paradox/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ See the table definitions in the individual plugins for more information on the

* @ref:[journal tables](journal.md#tables)
* @ref:[snapshot tables](snapshots.md#tables)
* @ref:[projection tables](projection.md#tables)
* @extref:[projection tables](akka-projection:dynamodb.html#tables)
361 changes: 1 addition & 360 deletions docs/src/main/paradox/projection.md

Large diffs are not rendered by default.

Loading

0 comments on commit 582f899

Please sign in to comment.