-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
46 lines (38 loc) · 1.3 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
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java application project to get you started.
* For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.10/userguide/building_java_projects.html in the Gradle documentation.
*/
plugins {
id("java-library")
id("com.github.johnrengelman.shadow") version "7.1.2"
}
allprojects {
apply(plugin = "java-library")
apply(plugin = "com.github.johnrengelman.shadow")
group = "pl.yshop.plugin"
version = "4.0.0"
java.sourceCompatibility = JavaVersion.VERSION_16
java.targetCompatibility = JavaVersion.VERSION_16
repositories {
mavenCentral()
maven("https://oss.sonatype.org/content/groups/public/")
maven("https://repo.panda-lang.org/releases")
maven("https://repo.xenondevs.xyz/releases")
}
tasks {
named<ShadowJar>("shadowJar") {
dependencies {
exclude(dependency("org.jetbrains:annotations"))
}
}
}
}
dependencies {
implementation(project(":bukkit"))
implementation(project(":bungee"))
implementation(project(":velocity"))
implementation("xyz.xenondevs.invui:invui:1.39")
}