Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/touk/flink-scala-2.13
https://github.com/touk/flink-scala-2.13
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/touk/flink-scala-2.13
- Owner: TouK
- Created: 2023-04-14T09:29:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-17T11:38:54.000Z (12 months ago)
- Last Synced: 2024-06-25T11:10:46.627Z (5 months ago)
- Language: Scala
- Size: 19.5 KB
- Stars: 0
- Watchers: 28
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flink-scala-2.13
For now Flink does not support Scala 2.13. For more refer to .
Our solution to deploy Scala 2.13 code to Flink, until it's officially supported (or Flink becomes really scala-free):
```bash
rm $FLINK_HOME/lib/flink-scala*.jar
wget https://repo1.maven.org/maven2/pl/touk/flink-scala-2-13_2.13/1.1.2/flink-scala-2-13_2.13-1.1.2-assembly.jar -O $FLINK_HOME/lib/flink-scala-2-13_2.13-1.1.1-assembly.jar
``````scala
libraryDependencies += "pl.touk" %% "flink-scala-2-13" % "1.1.2"
```## Publishing
```
sbt publishSigned sonatypeBundleRelease
```