-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (42 loc) · 1.04 KB
/
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
47
48
49
50
51
52
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
group = project.gpevents_group
archivesBaseName = project.gpevents_name
version = project.gpevents_version
repositories {
// Paper
maven { url "https://papermc.io/repo/repository/maven-public/" }
// GriefPrevention
maven { url "https://jitpack.io" }
}
configurations {
include
include.canBeResolved = true
compileOnly.extendsFrom(include)
}
dependencies {
compileOnly "io.papermc.paper:paper-api:${paper_version}"
compileOnly "com.github.TechFortress:GriefPrevention:${griefprevention_version}"
}
build {
dependsOn(shadowJar)
}
shadowJar {
configurations = [project.configurations.include]
classifier(null)
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 17
}
processResources {
filesMatching('plugin.yml') {
expand(
version: version
)
}
}