We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 462f077 commit c517ac3Copy full SHA for c517ac3
build.gradle
@@ -8,6 +8,15 @@ version '0.1.0.51'
8
9
repositories {
10
mavenCentral()
11
+
12
+ // Spigot MC
13
+ maven {
14
+ url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
15
+ content {
16
+ includeGroup 'org.bukkit'
17
+ includeGroup 'org.spigotmc'
18
+ }
19
20
}
21
22
java {
@@ -18,6 +27,9 @@ java {
27
28
29
dependencies {
30
+ // The Spigot API with no shadowing. Requires the OSS repo.
31
+ compileOnly 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT'
32
33
// Apache HTTP Client
34
// https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5-fluent
23
35
implementation 'org.apache.httpcomponents.client5:httpclient5-fluent:5.2-beta1'
0 commit comments