Skip to content

Commit 950e173

Browse files
chore: resolver changes (#3427)
1 parent 2fd50b6 commit 950e173

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+165
-358
lines changed

.github/workflows/check-build-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
style-compile-mima:
2121
name: Compile, Code Style, Binary Compatibility
22-
runs-on: ubuntu-22.04
22+
runs-on: Akka-Default
2323
env:
2424
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
2525

@@ -48,7 +48,7 @@ jobs:
4848
run: sbt "verifyCodeStyle; +Test/compile; mimaReportBinaryIssues"
4949

5050
connectors:
51-
runs-on: ubuntu-22.04
51+
runs-on: Akka-Default
5252

5353
strategy:
5454
fail-fast: false

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
fossa:
1313
name: Fossa
14-
runs-on: ubuntu-22.04
14+
runs-on: Akka-Default
1515
if: github.repository == 'akka/alpakka'
1616
steps:
1717
- name: Checkout

.github/workflows/link-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
validate-links:
19-
runs-on: ubuntu-22.04
19+
runs-on: Akka-Default
2020
steps:
2121
- name: Checkout
2222
# https://github.com/actions/checkout/releases

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.event.repository.fork == false
2222
name: Release
2323
environment: release
24-
runs-on: ubuntu-22.04
24+
runs-on: Akka-Default
2525
env:
2626
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
2727
steps:
@@ -56,7 +56,7 @@ jobs:
5656

5757
documentation:
5858
name: Documentation
59-
runs-on: ubuntu-22.04
59+
runs-on: Akka-Default
6060
if: github.event.repository.fork == false
6161
steps:
6262
- name: Checkout

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ We follow the standard GitHub [fork & pull](https://help.github.com/articles/usi
44

55
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.
66

7+
## Build Token
8+
9+
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:
10+
```
11+
ThisBuild / resolvers += "lightbend-akka".at("your token resolver here")
12+
```
13+
714
# Contributing to Alpakka
815

916
## Development Setup

docs/src/main/paradox/amqp.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@ AMQP 1.0 is currently not supported (Qpid, ActiveMQ, Solace, etc.).
88

99
## Artifacts
1010

11-
The Akka dependencies are available from Akka's library repository. To access them there, you need to configure the URL for this repository.
12-
13-
@@repository [sbt,Maven,Gradle] {
14-
id="akka-repository"
15-
name="Akka library repository"
16-
url="https://repo.akka.io/maven"
17-
}
11+
@@@note
12+
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.
13+
@@@
1814

1915
Additionally, add the dependencies as below.
2016

docs/src/main/paradox/avroparquet.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@ For more information about Apache Parquet please visit the [official documentati
88

99
## Artifacts
1010

11-
The Akka dependencies are available from Akka's library repository. To access them there, you need to configure the URL for this repository.
12-
13-
@@repository [sbt,Maven,Gradle] {
14-
id="akka-repository"
15-
name="Akka library repository"
16-
url="https://repo.akka.io/maven"
17-
}
11+
@@@note
12+
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.
13+
@@@
1814

1915
Additionally, add the dependencies as below.
2016

docs/src/main/paradox/aws-event-bridge.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,9 @@ The Alpakka AWS EventBridge connector provides Akka Stream flows and sinks to pu
3232

3333
## Artifacts
3434

35-
The Akka dependencies are available from Akka's library repository. To access them there, you need to configure the URL for this repository.
36-
37-
@@repository [sbt,Maven,Gradle] {
38-
id="akka-repository"
39-
name="Akka library repository"
40-
url="https://repo.akka.io/maven"
41-
}
35+
@@@note
36+
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.
37+
@@@
4238

4339
Additionally, add the dependencies as below.
4440

docs/src/main/paradox/awslambda.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@ For more information about AWS Lambda please visit the [AWS lambda documentation
88

99
## Artifacts
1010

11-
The Akka dependencies are available from Akka's library repository. To access them there, you need to configure the URL for this repository.
12-
13-
@@repository [sbt,Maven,Gradle] {
14-
id="akka-repository"
15-
name="Akka library repository"
16-
url="https://repo.akka.io/maven"
17-
}
11+
@@@note
12+
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.
13+
@@@
1814

1915
Additionally, add the dependencies as below.
2016

docs/src/main/paradox/azure-storage-queue.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@ Azure Storage Queue is a queuing service similar to Amazon's SQS. It is designed
88

99
## Artifacts
1010

11-
The Akka dependencies are available from Akka's library repository. To access them there, you need to configure the URL for this repository.
12-
13-
@@repository [sbt,Maven,Gradle] {
14-
id="akka-repository"
15-
name="Akka library repository"
16-
url="https://repo.akka.io/maven"
17-
}
11+
@@@note
12+
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.
13+
@@@
1814

1915
Additionally, add the dependencies as below.
2016

0 commit comments

Comments
 (0)