Add Gradle usage information to README (#3700)
This commit is contained in:
parent
25c14f76fc
commit
778d63b196
17
README.md
17
README.md
|
@ -41,6 +41,23 @@ How To (Plugin Developers)
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Or alternatively, with Gradle:**
|
||||||
|
|
||||||
|
* Repository:
|
||||||
|
```groovy
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url 'https://papermc.io/repo/repository/maven-public/'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Artifact:
|
||||||
|
```groovy
|
||||||
|
dependencies {
|
||||||
|
compileOnly 'com.destroystokyo.paper:paper-api:1.16.1-R0.1-SNAPSHOT'
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
How To (Compiling Jar From Source)
|
How To (Compiling Jar From Source)
|
||||||
------
|
------
|
||||||
To compile Paper, you need JDK 8, maven, and an internet connection.
|
To compile Paper, you need JDK 8, maven, and an internet connection.
|
||||||
|
|
Loading…
Reference in New Issue