Skip to content

Commit ed23da7

Browse files
committed
Cleanup
1 parent d27751c commit ed23da7

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ Java 17 or higher (recommended: [GraalVM](https://www.graalvm.org/downloads))
4141

4242
### Running Examples
4343

44-
Each example class contains instructions on how to run it from the IDE. Most examples are throttled, so you can see the
45-
console output and observe what is happening. Some examples deliberately throw `RuntimeException` to show recovery
46-
behavior.
44+
Each example class contains instructions on how to run it from the IDE. Most examples are throttled and provide a
45+
verbose log,
46+
by searching the log you see what is happening. Some examples deliberately throw `RuntimeException` eg to show recovery
47+
behaviour.
4748

4849
## Examples Overview
4950

@@ -53,7 +54,7 @@ Some larger examples:
5354
* [Apache Kafka WordCount](#apache-kafka-wordcount)
5455
* [HL7 V2 over TCP via Kafka to Websockets](#hl7-v2-over-tcp-via-kafka-to-websockets)
5556
* [Analyse Wikipedia edits live stream](#analyse-wikipedia-edits-live-stream)
56-
* [Movie subtitle translation via OpenAI API](#movie-subtitle-translation-via-openai-api)
57+
* [Movie subtitle translation via LLMs](#movie-subtitle-translation-via-llms)
5758

5859
Many examples deal with shared state management. While most Pekko
5960
Streams [operators](https://pekko.apache.org/docs/pekko/current/stream/operators/index.html) are
@@ -80,7 +81,9 @@ Examples of integrating AWS services with Pekko Connectors:
8081
* [SqsEcho](src/main/scala/alpakka/sqs/SqsEcho.scala)
8182
* [S3Echo](src/main/scala/alpakka/s3/S3Echo.scala)
8283

83-
Run them via the corresponding IT test classes locally in localstack/minio or against your AWS account.
84+
Run them via the corresponding IT test classes locally
85+
in [localstack](https://github.com/localstack/localstack)/[minio](https://github.com/minio/minio) or against your AWS
86+
account.
8487

8588
### Other example resources
8689

build.sbt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,10 @@ libraryDependencies ++= Seq(
144144
"org.apache.pekko" %% "pekko-testkit" % pekkoVersion % Test,
145145
"org.assertj" % "assertj-core" % "3.25.3" % Test,
146146

147-
"org.apache.poi" % "poi-ooxml" % "5.3.0",
148147
"dev.langchain4j" % "langchain4j-anthropic" % "1.0.0-beta2",
149148
"dev.langchain4j" % "langchain4j-open-ai" % "1.0.0-beta2",
150149

151-
152-
153-
// https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin/
150+
// https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin
154151
"io.gatling" % "gatling-core" % gatlingVersion,
155152
"io.gatling.highcharts" % "gatling-charts-highcharts" % gatlingVersion,
156153
"io.gatling" % "gatling-test-framework" % gatlingVersion
@@ -175,7 +172,7 @@ Test / parallelExecution := false
175172

176173
enablePlugins(GatlingPlugin)
177174

178-
// Needed as long as this lib is in the dependencies
175+
// Needed as long as "scala-java8-compat" is in the dependencies
179176
// https://eed3si9n.com/sbt-1.5.0
180177
// https://www.scala-lang.org/blog/2021/02/16/preventing-version-conflicts-with-versionscheme.html
181178
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-java8-compat" % "always"

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.10.10
1+
sbt.version=1.10.11

0 commit comments

Comments
 (0)