-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
61 lines (50 loc) · 1.27 KB
/
build.gradle.kts
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
53
54
55
56
57
58
59
60
61
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
java
`maven-publish`
}
group = "dev.kejona"
version = "1.0.0"
description = "BedrockFormShop"
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenLocal()
mavenCentral()
maven {
url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
}
maven {
url = uri("https://oss.sonatype.org/content/groups/public/")
}
maven {
url = uri("https://repo.opencollab.dev/maven-snapshots/")
}
maven {
url = uri("https://jitpack.io")
}
maven {
url = uri("https://repo.maven.apache.org/maven2/")
}
}
dependencies {
implementation("org.jetbrains:annotations:24.0.1")
implementation("org.projectlombok:lombok:1.18.26")
compileOnly("org.spigotmc:spigot-api:1.15-R0.1-SNAPSHOT")
compileOnly("org.geysermc.floodgate:api:2.2.0-SNAPSHOT")
compileOnly("com.github.MilkBowl:VaultAPI:1.7")
}
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}
tasks.jar {
archiveFileName.set("BedrockFormShop.jar")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}