-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
47 lines (41 loc) · 1.04 KB
/
build.gradle.kts
File metadata and controls
47 lines (41 loc) · 1.04 KB
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
plugins {
id("java")
id("com.gradleup.shadow") version "9.4.1"
}
allprojects {
group = "dev.corexinc.corex"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://maven.canvasmc.io/snapshots")
maven("https://maven.pulsemc.dev/snapshots")
}
}
subprojects {
apply(plugin = "java")
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
}
dependencies {
implementation(project(":corex"))
implementation(project(":velocity"))
implementation(project(":v1_21"))
implementation(project(":v1_21_3"))
implementation(project(":v1_21_4"))
implementation(project(":v1_21_5"))
implementation(project(":v1_21_6"))
implementation(project(":v1_21_9"))
implementation(project(":v1_21_11"))
}
tasks {
shadowJar {
archiveBaseName.set("Corex")
archiveClassifier.set("")
archiveVersion.set("1.0-SNAPSHOT")
}
build {
dependsOn(shadowJar)
}
}