-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (32 loc) · 925 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
37
38
plugins {
id 'java'
id 'net.minecrell.plugin-yml.bukkit' version '0.5.1'
}
group 'de.jpx3'
version '0.1.2'
repositories {
mavenCentral()
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url = "https://repo.dmulloy2.net/nexus/repository/public/" }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT'
}
test {
useJUnitPlatform()
}
bukkit {
name = "IntaveBootstrap"
prefix = "Intave/Boot"
author = "Jpx3"
main = "de.jpx3.intave.boot.IntaveBootstrap"
version = rootProject.version
softDepend = ["ProtocolLib", "ViaVersion"]
loadBefore = ["Intave"]
}
jar {
baseName = 'intavebootstrap'
}