-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
27 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,15 +15,15 @@ To keep up with the latest releases check out [Pekko Projections releases](https | |
|
||
You can join these forums and chats to discuss and ask Pekko and Pekko connector related questions: | ||
|
||
- [GitHub discussions](https://github.com/apache/incubator-pekko-projection/discussions): for questions and general discussion. | ||
- [GitHub discussions](https://github.com/apache/pekko-projection/discussions): for questions and general discussion. | ||
- [Pekko users mailing list](https://lists.apache.org/[email protected]): for Pekko usage discussions. | ||
- [Pekko dev mailing list](https://lists.apache.org/[email protected]): for Pekko development discussions. | ||
- [GitHub issues](https://github.com/apache/incubator-pekko-projection/issues): for bug reports and feature requests. Please search the existing issues before creating new ones. If you are unsure whether you have found a bug, consider asking in GitHub discussions or the mailing list first. | ||
- [GitHub issues](https://github.com/apache/pekko-projection/issues): for bug reports and feature requests. Please search the existing issues before creating new ones. If you are unsure whether you have found a bug, consider asking in GitHub discussions or the mailing list first. | ||
|
||
## Contributing | ||
|
||
Contributions are very welcome. If you have an idea on how to improve Pekko, don't hesitate to create an issue or submit a pull request. | ||
|
||
## License | ||
|
||
Apache Pekko Projections is available under the Apache License, version 2.0. See [LICENSE](https://github.com/apache/incubator-pekko-projection/blob/main/LICENSE) file for details. | ||
Apache Pekko Projections is available under the Apache License, version 2.0. See [LICENSE](https://github.com/apache/pekko-projection/blob/main/LICENSE) file for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,13 +29,13 @@ object Common extends AutoPlugin { | |
// apiURL defined in projectSettings because version.value is not correct here | ||
scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/apache/incubator-pekko-projection"), | ||
"[email protected]:apache/incubator-pekko-projection.git")), | ||
url("https://github.com/apache/pekko-projection"), | ||
"[email protected]:apache/pekko-projection.git")), | ||
developers += Developer( | ||
"contributors", | ||
"Contributors", | ||
"[email protected]", | ||
url("https://github.com/apache/incubator-pekko-projection/graphs/contributors")), | ||
url("https://github.com/apache/pekko-projection/graphs/contributors")), | ||
description := "Apache Pekko Projection.") | ||
|
||
val mimaCompareVersion = "1.0.0" | ||
|
@@ -55,7 +55,7 @@ object Common extends AutoPlugin { | |
(ThisBuild / baseDirectory).value.toString, | ||
"-doc-source-url", { | ||
val branch = if (isSnapshot.value) "main" else s"v${version.value}" | ||
s"https://github.com/apache/incubator-pekko-projection/tree/${branch}€{FILE_PATH_EXT}#L€{FILE_LINE}" | ||
s"https://github.com/apache/pekko-projection/tree/${branch}€{FILE_PATH_EXT}#L€{FILE_LINE}" | ||
}) ++ (if (scalaBinaryVersion.value.startsWith("3")) { | ||
Seq("-skip-packages:org.apache.pekko.pattern") | ||
} else { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,11 @@ project-info { | |
new-tab: false | ||
} | ||
issues: { | ||
url: "https://github.com/apache/incubator-pekko-projection/issues" | ||
url: "https://github.com/apache/pekko-projection/issues" | ||
text: "GitHub issues" | ||
} | ||
release-notes: { | ||
url: "https://github.com/apache/incubator-pekko-projection/releases" | ||
url: "https://github.com/apache/pekko-projection/releases" | ||
text: "GitHub releases" | ||
} | ||
api-docs: [ | ||
|
@@ -34,8 +34,8 @@ project-info { | |
url: "https://lists.apache.org/[email protected]" | ||
} | ||
{ | ||
text: "apache/incubator-pekko-projection discussion" | ||
url: "https://github.com/apache/incubator-pekko-projection/discussions" | ||
text: "apache/pekko-projection discussion" | ||
url: "https://github.com/apache/pekko-projection/discussions" | ||
} | ||
] | ||
} | ||
|