File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -106,30 +106,23 @@ A few common dependencies are provided below:
106
106
- ** Gradle Build Script**
107
107
- Groovy:
108
108
``` groovy
109
- repositories.maven {
110
- url('https://jitpack.io')
111
- }
109
+ repositories.mavenCentral()
112
110
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')
114
112
```
115
113
- Kotlin:
116
114
```kotlin
117
115
repositories.maven {
118
116
setUrl("https://jitpack.io")
119
117
}
120
118
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")
122
120
```
123
121
- **Maven POM**
124
122
```xml
125
- <repository>
126
- <id>jitpack.io</id>
127
- <url>https://jitpack.io</url>
128
- </repository>
129
-
130
123
<dependency>
131
- <groupId>com .github.fastjengine </groupId>
132
- <artifactId>FastJ </artifactId>
124
+ <groupId>io .github.lucasstarsz.fastj </groupId>
125
+ <artifactId>fastj-library </artifactId>
133
126
<version>1.7.0-SNAPSHOT-1</version>
134
127
</dependency>
135
128
```
You can’t perform that action at this time.
0 commit comments