forked from LuckPerms/placeholders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (27 loc) · 793 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
plugins {
id 'com.gradleup.shadow' version '8.3.0'
}
defaultTasks 'build'
subprojects {
apply plugin: 'java'
apply plugin: 'com.gradleup.shadow'
group = 'me.lucko.luckperms.placeholders'
version = '5.4-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenLocal()
maven { url('https://hub.spigotmc.org/nexus/content/repositories/snapshots/') }
maven { url('https://repo.maven.apache.org/maven2/') }
maven { url('https://repo.lucko.me/') }
}
dependencies {
compileOnly 'net.luckperms:api:5.4'
}
artifacts {
archives shadowJar
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
}