-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
39 lines (30 loc) · 922 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
plugins {
id 'java-library'
id 'maven-publish'
id("io.freefair.lombok") version "8.4"
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.papermc.io/repository/maven-public/')
}
maven {
url = uri('https://mvn.exceptionflug.de/repository/exceptionflug-public/')
}
}
dependencies {
compileOnly("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT")
annotationProcessor("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT")
compileOnly 'dev.simplix:protocolize-api:2.3.3'
compileOnly 'net.luckperms:api:5.4'
compileOnly files('libs/VelocityControl-3.11.7-SNAPSHOT.jar')
}
group = 'com.james090500.VelocityGUI'
version = '1.2.6'
description = 'VelocityGUI'
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
tasks.withType(Javadoc).configureEach {
options.encoding = 'UTF-8'
}