Skip to content

Commit

Permalink
Bump JUnit to 5.7.0 and small dependency tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
leviem1 committed Sep 14, 2020
1 parent a3e3079 commit 25ba58a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ repositories {
}

dependencies {
compileOnly 'com.destroystokyo.paper:paper-api:1.16.2-R0.1-SNAPSHOT'
compileOnly 'com.github.spotbugs:spotbugs-annotations:3.1.2'
implementation 'io.papermc:paperlib:1.0.5'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.10.1'
compileOnly group: 'com.destroystokyo.paper', name: 'paper-api', version: '1.16.2-R0.1-SNAPSHOT'
implementation group: 'io.papermc', name: 'paperlib', version: '1.0.5'
testImplementation group: 'com.github.spotbugs', name: 'spotbugs-annotations', version:'3.1.2'
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'com.destroystokyo.paper', name: 'paper-api', version: '1.16.2-R0.1-SNAPSHOT'
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:3.1.2'
testImplementation 'com.destroystokyo.paper:paper-api:1.16.2-R0.1-SNAPSHOT'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

processResources {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.snowypeaksystems.exampleplugin;

import org.junit.Test;
import org.junit.jupiter.api.Test;

/**
* Tests for ExamplePlugin.
Expand Down

0 comments on commit 25ba58a

Please sign in to comment.