-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (40 loc) · 1015 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
39
40
41
42
43
44
45
46
plugins {
id 'java'
id 'maven-publish'
}
group 'xyz.nkomarn'
version '1.0-SNAPSHOT'
targetCompatibility = '11'
sourceCompatibility = '11'
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://papermc.io/repo/repository/maven-public/'
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
compileOnly ('com.github.LeonMangler:SuperVanish:6.2.1') {
exclude group: 'com.comphenix.protocol'
exclude group: 'net.citizensnpcs'
exclude group: 'be.maximvdw'
exclude group: 'me.clip'
}
implementation 'net.kyori:adventure-text-serializer-bungeecord:4.0.0-SNAPSHOT'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}