Skip to content

Commit 4eca331

Browse files
authored
Merge pull request #2877 from Multiverse/dumptruckman/separate_test_deps
Use a separate API version for running tests.
2 parents 39287f5 + b657424 commit 4eca331

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ repositories {
4343
}
4444

4545
dependencies {
46-
implementation('org.bukkit:bukkit:1.13.2-R0.1-SNAPSHOT') {
47-
exclude group: 'junit', module: 'junit'
48-
}
46+
compileOnly 'org.bukkit:bukkit:1.13.2-R0.1-SNAPSHOT'
4947

5048
implementation('com.github.MilkBowl:VaultAPI:1.7') {
5149
exclude group: 'org.bukkit', module: 'bukkit'
@@ -66,6 +64,10 @@ dependencies {
6664
api 'de.themoep.idconverter:mappings:1.2-SNAPSHOT'
6765
api 'org.jetbrains:annotations:16.0.2'
6866

67+
testImplementation 'org.spigotmc:spigot-api:1.19.3-R0.1-SNAPSHOT'
68+
testImplementation('com.googlecode.json-simple:json-simple:1.1.1') {
69+
exclude group: 'junit', module: 'junit'
70+
}
6971
testImplementation 'junit:junit:4.12'
7072
testImplementation 'org.mockito:mockito-core:3.11.2'
7173
testImplementation 'commons-io:commons-io:2.4'

0 commit comments

Comments
 (0)