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: add details for testing with SNAPSHOT versions #772

Merged
merged 1 commit into from
May 31, 2024
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
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ Add the following to the `repositories` closure in `build.gradle`:
repositories {
// ...
maven {
url "https://s01.oss.sonatype.org/content/repositories/snapshots"
url "https://s01.oss.sonatype.org/content/repositories/snapshots" // build.gradle
// url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") // build.gradle.kts
}
}
```
Expand All @@ -149,7 +150,9 @@ Or add the `repository` to your `pom.xml` if you are using maven:

#### Local Snapshot Build

To work with local builds, run the `publishToMavenLocal` task. The current version number is set in [`.env`](.env) file.
To test with local builds, run the `publishToMavenLocal` gradle task. The current version number is set in [`.env`](.env) file.

Do not forget to add `mavenLocal()` to the `repositories` section.
</details>

### 👏 Contributors
Expand Down Expand Up @@ -213,4 +216,4 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
To add yourself as a contributor, install the [all-contributors CLI](https://allcontributors.org/docs/en/cli/installation) and run:
1. `all-contributors check`
2. `all-contributors add <username> code`
3. `all-contributors generate`
3. `all-contributors generate`
Loading