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 authored Aug 12, 2024
1 parent 2fb281a commit 8f9f296
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,34 @@ 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.4-R0.1-SNAPSHOT")
compileOnly("me.earthme.luminol:luminol-api:1.20.6-R0.1-SNAPSHOT")
}
```

For maven

```xml
<dependency>
<groupId>me.earthme.luminol</groupId>
<artifactId>luminol-api</artifactId>
<version>1.20.4-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 8f9f296

Please sign in to comment.