Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jian-Min-Huang committed May 27, 2022
2 parents 1375a98 + 40321bc commit ff01059
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,37 @@ println("Damn it! Who writes these shit ${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}

<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">

# For Gradle Dependency
# For Maven
```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.github.PureFuncInc</groupId>
<artifactId>emoji-jvm-string</artifactId>
<version>$version</version>
</dependency>
</dependencies>
```

# For Gradle Groovy

```groovy
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
implementation "com.github.PureFuncInc:emoji-jvm-string:1.0.0"
implementation "com.github.PureFuncInc:emoji-jvm-string:$version"
}
```

# For Gradle Kotlin Dependency
# For Kotlin Gradle DSL

```kotlin
repositories {
Expand All @@ -36,6 +54,6 @@ repositories {
}

dependencies {
implementation("com.github.PureFuncInc:emoji-jvm-string:1.0.0")
implementation("com.github.PureFuncInc:emoji-jvm-string:$version")
}
```

0 comments on commit ff01059

Please sign in to comment.