Skip to content

Commit ec75d35

Browse files
committed
update dependency display in README.md
1 parent 6ba6ef7 commit ec75d35

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

README.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -106,30 +106,23 @@ A few common dependencies are provided below:
106106
- **Gradle Build Script**
107107
- Groovy:
108108
```groovy
109-
repositories.maven {
110-
url('https://jitpack.io')
111-
}
109+
repositories.mavenCentral()
112110
113-
dependencies.implementation('com.github.fastjengine:FastJ:1.7.0-SNAPSHOT-1')
111+
dependencies.implementation('io.github.lucasstarsz.fastj:fastj-library:1.7.0-SNAPSHOT-1')
114112
```
115113
- Kotlin:
116114
```kotlin
117115
repositories.maven {
118116
setUrl("https://jitpack.io")
119117
}
120118
121-
dependencies.implementation("com.github.fastjengine:FastJ:1.7.0-SNAPSHOT-1")
119+
dependencies.implementation("io.github.lucasstarsz.fastj:fastj-library:1.7.0-SNAPSHOT-1")
122120
```
123121
- **Maven POM**
124122
```xml
125-
<repository>
126-
<id>jitpack.io</id>
127-
<url>https://jitpack.io</url>
128-
</repository>
129-
130123
<dependency>
131-
<groupId>com.github.fastjengine</groupId>
132-
<artifactId>FastJ</artifactId>
124+
<groupId>io.github.lucasstarsz.fastj</groupId>
125+
<artifactId>fastj-library</artifactId>
133126
<version>1.7.0-SNAPSHOT-1</version>
134127
</dependency>
135128
```

0 commit comments

Comments
 (0)