File tree Expand file tree Collapse file tree 1 file changed +22
-4
lines changed
Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -14,19 +14,37 @@ println("Damn it! Who writes these shit ${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}
1414
1515<img width =" 404 " alt =" CleanShot 2022-05-26 at 13 32 31@2x " src =" https://user-images.githubusercontent.com/6296280/170422970-f5a9f4bc-21c9-4a3d-8eac-2c184105dbd4.png " >
1616
17- # For Gradle Dependency
17+ # For Maven
18+ ``` xml
19+ <repositories >
20+ <repository >
21+ <id >jitpack.io</id >
22+ <url >https://jitpack.io</url >
23+ </repository >
24+ </repositories >
25+
26+ <dependencies >
27+ <dependency >
28+ <groupId >com.github.PureFuncInc</groupId >
29+ <artifactId >emoji-jvm-string</artifactId >
30+ <version >$version</version >
31+ </dependency >
32+ </dependencies >
33+ ```
34+
35+ # For Gradle Groovy
1836
1937``` groovy
2038repositories {
2139 maven { url "https://jitpack.io" }
2240}
2341
2442dependencies {
25- implementation "com.github.PureFuncInc:emoji-jvm-string:1.0.0 "
43+ implementation "com.github.PureFuncInc:emoji-jvm-string:$version "
2644}
2745```
2846
29- # For Gradle Kotlin Dependency
47+ # For Kotlin Gradle DSL
3048
3149``` kotlin
3250repositories {
@@ -36,6 +54,6 @@ repositories {
3654}
3755
3856dependencies {
39- implementation(" com.github.PureFuncInc:emoji-jvm-string:1.0.0 " )
57+ implementation(" com.github.PureFuncInc:emoji-jvm-string:$version " )
4058}
4159```
You can’t perform that action at this time.
0 commit comments