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:
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 ```
You can’t perform that action at this time.
0 commit comments