Skip to content

Commit

Permalink
fix: repo reference in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sgammon committed Mar 10, 2024
1 parent 9d16154 commit de90eea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add this domain as a repository within any JVM build tool: [Maven][7], [Gradle][
<repository>
<id>jpms-attic</id>
<name>JPMS Attic</name>
<url>https://jpms.pkg.st</url>
<url>https://jpms.pkg.st/repository</url>
</repository>
</repositories>
```
Expand All @@ -44,7 +44,7 @@ Add this domain as a repository within any JVM build tool: [Maven][7], [Gradle][
```groovy
repositories {
maven {
url "https://jpms.pkg.st"
url "https://jpms.pkg.st/repository"
}
}
```
Expand All @@ -54,7 +54,7 @@ repositories {
```kotlin
repositories {
maven {
url = uri("https://jpms.pkg.st")
url = uri("https://jpms.pkg.st/repository")
}
}
```
Expand Down

0 comments on commit de90eea

Please sign in to comment.