-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
36 lines (28 loc) · 994 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
}
group 'net.roxeez'
version '1.0-SNAPSHOT'
jar {
archivesBaseName = project.name
version = project.version
}
repositories {
mavenCentral()
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
compileOnly 'org.jetbrains:annotations:20.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testCompile group: 'org.mockito', name: 'mockito-core', version: '3.7.7'
testCompile 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
testCompile group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.7.7'
testCompile group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.0'
}
test {
useJUnitPlatform()
}