-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (34 loc) · 944 Bytes
/
build.gradle
File metadata and controls
41 lines (34 loc) · 944 Bytes
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
plugins {
id 'java'
}
group = "at.helpch.papi.expansion.hyvotifier"
version = '1.0.0'
description = "HyVotifier Expansion for PlaceholderAPI"
repositories {
mavenCentral()
mavenLocal()
maven { url "https://maven.hytale.com/release/" }
maven { url "https://repo.helpch.at/releases" }
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
}
dependencies {
compileOnly "com.hypixel.hytale:Server:2026.01.24-6e2d4fc36"
compileOnly "at.helpch:placeholderapi-hytale:1.0.3"
compileOnly files('libs/hytale-votifier-2.2.0.jar')
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
tasks.named('jar') {
archiveBaseName.set('PAPI-Expansion-HyVotifier')
manifest {
attributes(
'Implementation-Title': project.name,
'Implementation-Version': project.version
)
}
}