We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6bf68e commit 56fc599Copy full SHA for 56fc599
build.gradle
@@ -7,14 +7,6 @@ apply plugin: 'signing'
7
8
sourceCompatibility = 1.8
9
10
-configurations { provided }
11
-
12
-sourceSets {
13
- main.compileClasspath += configurations.provided
14
- test.compileClasspath += configurations.provided
15
- test.runtimeClasspath += configurations.provided
16
-}
17
18
task javadocJar(type: Jar) {
19
classifier = 'javadoc'
20
from javadoc
@@ -35,8 +27,8 @@ repositories {
35
27
}
36
28
37
29
dependencies {
38
- provided 'org.spigotmc:spigot-api:1.11.2-R0.1-SNAPSHOT'
39
- provided 'org.apache.commons:commons-lang3:3.5'
30
+ compileOnly 'org.spigotmc:spigot-api:1.11.2-R0.1-SNAPSHOT'
31
+ compileOnly 'org.apache.commons:commons-lang3:3.5'
40
32
41
33
42
34
jar { archiveName = 'SmartInvs-' + project.version + '.jar' }
0 commit comments