Skip to content

Update configuring-gradle-for-use-with-github-packages.md #188

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

Merged
merged 6 commits into from
Oct 9, 2020
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
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ You can install a package by adding the package as a dependency to your project.
{% data reusables.package_registry.authenticate-step %}
2. Add the package dependencies to your *build.gradle* file (Gradle Groovy) or *build.gradle.kts* file (Kotlin DSL) file.

Example using Grady Groovy:
Example using Gradle Groovy:
```shell
dependencies {
implementation 'com.example:package'
Expand All @@ -188,7 +188,7 @@ You can install a package by adding the package as a dependency to your project.

3. Add the maven plugin to your *build.gradle* file (Gradle Groovy) or *build.gradle.kts* file (Kotlin DSL) file.

Example using Grady Groovy:
Example using Gradle Groovy:
```shell
plugins {
id 'maven'
Expand Down