Skip to content

Commit a308715

Browse files
authored
Update README for Reposilite repository links
1 parent b0f84d5 commit a308715

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
# Lazy Library [![Release](https://jitpack.io/v/srnyx/lazy-library.svg)](https://jitpack.io/#xyz.srnyx/lazy-library)
1+
# Lazy Library [![Release](https://repo.srnyx.com/api/badge/latest/releases/xyz/srnyx/lazy-library?color=006d82&name=Reposilite)](https://repo.srnyx.com/#/releases/xyz/srnyx/lazy-library)
22

33
A Discord bot library for srnyx's JDA Discord bots ([Cobalt](https://github.com/Venox-Network/cobalt), [srnyx's Bot](https://github.com/srnyx/srnyx-bot), [Creator Laser Tag](https://github.com/Venox-Network/laser-tag-bot), etc...)
44

55
### Wiki / Javadocs
66

77
- **Wiki:** [github.com/srnyx/lazy-library/wiki](https://github.com/srnyx/lazy-library/wiki)
8-
- **Javadocs:** [javadoc.jitpack.io/xyz/srnyx/lazy-library/latest/javadoc/index.html](https://javadoc.jitpack.io/xyz/srnyx/lazy-library/latest/javadoc/index.html)
8+
- **Javadocs:** [repo.srnyx.com/javadoc/releases/xyz/srnyx/lazy-library/latest](https://repo.srnyx.com/javadoc/releases/xyz/srnyx/lazy-library/latest)
99

1010
## Importing
1111

12-
You can import the library using [Jitpack](https://jitpack.io/#xyz.srnyx/lazy-library). Make sure to replace `VERSION` with the version you want. You **MUST** use `implementation`.
12+
You can import the library using [Reposilite](https://repo.srnyx.com/#/releases/xyz/srnyx/lazy-library). Make sure to replace `VERSION` with the version you want. You **MUST** use `implementation`.
1313

1414
- **Gradle Kotlin** (`build.gradle.kts`)**:**
1515
```kotlin
1616
// Required plugins
17-
plugins {
17+
plugins {
1818
java
19-
id("com.github.johnrengelman.shadow") version "7.1.2" // https://github.com/johnrengelman/shadow/releases/latest
19+
id("com.gradleup.shadow") version "8.3.9" // https://github.com/GradleUp/shadow/releases/latest
2020
}
21-
// Jitpack repository
22-
repositories {
23-
maven("https://jitpack.io")
21+
// Reposilite repository
22+
repositories {
23+
maven("https://repo.srnyx.com/releases/")
2424
}
2525
// Lazy Library dependency declaration
2626
dependencies {
27-
implementation("xyz.srnyx", "lazy-library", "VERSION")
27+
implementation("xyz.srnyx:lazy-library:VERSION")
2828
}
2929
```
3030
- **Gradle Groovy** (`build.gradle`)**:**
3131
```groovy
3232
// Required plugins
3333
plugins {
3434
id 'java'
35-
id 'com.github.johnrengelman.shadow' version '7.1.2' // https://github.com/johnrengelman/shadow/releases/latest
35+
id 'com.gradleup.shadow' version '8.3.9' // https://github.com/GradleUp/shadow/releases/latest
3636
}
37-
// Jitpack repository
37+
// Reposilite repository
3838
repositories {
39-
maven { url = 'https://jitpack.io' }
39+
maven { url = 'https://repo.srnyx.com/releases/' }
4040
}
4141
// Lazy Library dependency declaration
4242
dependencies {
43-
implementation 'xyz.srnyx:lazy-library:VERSION'
43+
implementation 'xyz.srnyx:lazy-library:VERSION'
4444
}
4545
```
4646
* **Maven** (`pom.xml`)**:**
@@ -75,12 +75,12 @@ dependencies {
7575
</plugins>
7676
</build>
7777
```
78-
* Jitpack repository
78+
* Reposilite repository
7979
```xml
8080
<repositories>
8181
<repository>
82-
<id>jitpack</id>
83-
<url>https://jitpack.io</url>
82+
<id>srnyx</id>
83+
<url>https://repo.srnyx.com/releases/</url>
8484
</repository>
8585
</repositories>
8686
```

0 commit comments

Comments
 (0)