Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update README.md #138

Merged
merged 2 commits into from
Dec 20, 2023
Merged
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
23 changes: 2 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,6 @@ In `build.gradle.kts` files include the dependency
```kotlin
repositories {
mavenCentral()
maven {
this.url = uri("https://maven.pkg.github.com/input-output-hk/atala-prism-apollo")
credentials {
this.username = // GitHub Username
this.password = // GitHub Access Token
}
}
}
```
For dependencies
Expand Down Expand Up @@ -254,13 +247,7 @@ In the project `build.gradle`
allprojects {
repositories {
// along with all the other current existing repos add the following
maven {
url = uri("https://maven.pkg.github.com/input-output-hk/atala-prism-apollo")
credentials {
username = // GitHub Username
password = // GitHub Access Token
}
}
mavenCentral()
}
}
```
Expand All @@ -285,13 +272,7 @@ In the project `build.gradle.kts`
allprojects {
repositories {
// along with all the other current existing repos add the following
maven {
url = uri("https://maven.pkg.github.com/input-output-hk/atala-prism-apollo")
credentials {
username = // GitHub Username
password = // GitHub Access Token
}
}
mavenCentral()
}
}
```
Expand Down