-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
43 lines (37 loc) · 1 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
plugins {
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.5.21'
}
group = 'com.github.sigureruri'
version = '3.0-SNAPSHOT'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
maven {
name = 'papermc-repo'
url = 'https://papermc.io/repo/repository/maven-public/'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
}
dependencies {
compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
implementation('org.jetbrains.kotlin:kotlin-stdlib:1.5.21')
implementation(files("libs/SkyStory-1.1-SNAPSHOT.jar"))
}
processResources {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
filteringCharset = 'UTF-8'
filesMatching("plugin.yml") {
expand("version" : project.version)
}
}
shadowJar {
archiveBaseName.set(rootProject.name)
archiveClassifier.set("")
archiveVersion.set("")
}