Skip to content

Commit ff01059

Browse files
Merge remote-tracking branch 'origin/main'
2 parents 1375a98 + 40321bc commit ff01059

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

README.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff 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
2038
repositories {
2139
maven { url "https://jitpack.io" }
2240
}
2341
2442
dependencies {
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
3250
repositories {
@@ -36,6 +54,6 @@ repositories {
3654
}
3755

3856
dependencies {
39-
implementation("com.github.PureFuncInc:emoji-jvm-string:1.0.0")
57+
implementation("com.github.PureFuncInc:emoji-jvm-string:$version")
4058
}
4159
```

0 commit comments

Comments
 (0)