Skip to content

Commit

Permalink
[ci skip]Update README_EN.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHua269 committed Aug 12, 2024
1 parent a93e01d commit b1d297d
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ To build a paperclip jar, you need to run the following command. You can find th
For gradle:

```kotlin
repositories {
maven {
url = "http://maven.moliatopia.icu/repository/maven-snapshots/"
}
}

dependencies {
compileOnly("me.earthme.luminol:luminol-api:1.20.6-R0.1-SNAPSHOT")
}
Expand All @@ -40,11 +46,20 @@ dependencies {
For maven

```xml
<dependency>
<groupId>me.earthme.luminol</groupId>
<artifactId>luminol-api</artifactId>
<version>1.20.6-R0.1-SNAPSHOT</version>
</dependency>
<repositories>
<repository>
<id>moliatopia</id>
<url>http://maven.moliatopia.icu/repository/maven-snapshots/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>me.earthme.luminol</groupId>
<artifactId>luminol-api</artifactId>
<version>1.20.6-R0.1-SNAPSHOT</version>
</dependency>
</dependencies>
```

## Contact
Expand Down

0 comments on commit b1d297d

Please sign in to comment.