Skip to content

Commit

Permalink
Merge pull request #208 from FREE2WIN2/master
Browse files Browse the repository at this point in the history
Fix Wiki repository url for maven and gradle.
  • Loading branch information
tr7zw authored Jan 24, 2023
2 parents 79e1e62 + 6b70966 commit 310682e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions wiki/Using-Gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
...
maven {
name = "CodeMC"
url = uri("https://repo.codemc.org/repository/maven-public/")
url = uri("https://repo.codemc.io/repository/maven-public/")
}
...
}
Expand Down Expand Up @@ -46,7 +46,7 @@ repositories {
...
maven {
name = "CodeMC"
url = uri("https://repo.codemc.org/repository/maven-public/")
url = uri("https://repo.codemc.io/repository/maven-public/")
}
...
}
Expand All @@ -64,4 +64,4 @@ If you want to run the shadowJar task when the build task is executed, you can w
build {
dependsOn(shadowJar)
}
```
```
6 changes: 3 additions & 3 deletions wiki/Using-Maven.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the following Entries to your pom at the correct location:
<!-- CodeMC -->
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
<url>https://repo.codemc.io/repository/maven-public/</url>
<layout>default</layout>
</repository>
...
Expand All @@ -42,7 +42,7 @@ Add the following Entries to your pom at the correct location:
<!-- CodeMC -->
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
<url>https://repo.codemc.io/repository/maven-public/</url>
<layout>default</layout>
</repository>
...
Expand Down Expand Up @@ -73,4 +73,4 @@ Add the following Entries to your pom at the correct location:
</configuration>
</plugin>
</plugins>
```
```

0 comments on commit 310682e

Please sign in to comment.