Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/check-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
check-code-style:
name: Check Code Style
runs-on: ubuntu-22.04
runs-on: Akka-Default
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:

check-code-compilation:
name: Check Code Compilation
runs-on: ubuntu-22.04
runs-on: Akka-Default
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

check-docs:
name: Check Docs
runs-on: ubuntu-22.04
runs-on: Akka-Default
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

test:
name: Build and Test
runs-on: ubuntu-22.04
runs-on: Akka-Default
needs: [check-code-style, check-code-compilation, check-docs]
strategy:
fail-fast: false
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
integration-test:
name: Integration tests
needs: [check-code-style, check-code-compilation, check-docs]
runs-on: ubuntu-22.04
runs-on: Akka-Default
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
build-benchmark:
name: Build benchmarks
needs: [check-code-style, check-code-compilation, check-docs]
runs-on: ubuntu-22.04
runs-on: Akka-Default
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
dependency-graph:
name: Update Dependency Graph
if: github.event.repository.fork == false
runs-on: ubuntu-22.04
runs-on: Akka-Default
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
fossa:
name: Fossa
runs-on: ubuntu-22.04
runs-on: Akka-Default
if: github.repository == 'akka/alpakka-kafka'
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
validate-links:
runs-on: ubuntu-22.04
runs-on: Akka-Default
if: github.event.repository.fork == false
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# the release environment provides access to secrets required in the release process
# https://github.com/akka/alpakka-kafka/settings/environments/84275678/edit
environment: release
runs-on: ubuntu-22.04
runs-on: Akka-Default
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

documentation:
name: Documentation
runs-on: ubuntu-22.04
runs-on: Akka-Default
if: github.event.repository.fork == false
steps:
- name: Checkout
Expand Down
8 changes: 8 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ We follow the standard GitHub [fork & pull](https://help.github.com/articles/usi

You're always welcome to submit your PR straight away and start the discussion (without reading the rest of this wonderful doc, or the README.md). The goal of these notes is to make your experience contributing to Alpakka as smooth and pleasant as possible. We're happy to guide you through the process once you've submitted your PR.

## Build Token

To build locally, you need to fetch a token at https://account.akka.io/token that you have to place into `~/.sbt/1.0/akka-commercial.sbt` file like this:
```
ThisBuild / resolvers += "lightbend-akka".at("your token resolver here")
```


# The Akka Community

Please check out [Get Involved](https://akka.io/get-involved/).
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ val confluentLibsExclusionRules = Seq(
)

ThisBuild / resolvers ++= Seq(
"Akka library repository".at("https://repo.akka.io/maven"),
"Akka library repository".at("https://repo.akka.io/maven/github_actions"),
// for Jupiter interface (JUnit 5)
Resolver.jcenterRepo
)
Expand Down
10 changes: 3 additions & 7 deletions docs/src/main/paradox/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,9 @@ Check even Confluent's [Versions and Interoperability](https://docs.confluent.io

## Dependencies

The Akka dependencies are available from Akka's library repository. To access them there, you need to configure the URL for this repository.

@@repository [Maven,sbt,Gradle] {
id="akka-repository"
name="Akka library repository"
url="https://repo.akka.io/maven"
}
@@@note
The Akka dependencies are available from Akka’s secure library repository. To access them you need to use a secure, tokenized URL as specified at https://account.akka.io/token.
@@@

Additionally, add the dependencies as below.

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
resolvers += "Akka library repository".at("https://repo.akka.io/maven/github_actions")

addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3")
Expand Down
Loading