-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
60 lines (52 loc) · 1.43 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'maven-publish'
}
defaultTasks("shadowJar")
group = 'com.charliejoseph'
version = '1.0.0'
subprojects {
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'maven-publish'
// Add the following block
plugins.withId('java') {
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
}
shadowJar {
archiveFileName.set("${project.name}-exampleplugin-${rootProject.version}.jar")
}
repositories {
mavenCentral()
maven {
name = "spigotmc-repo"
url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/groups/public/"
}
maven {
name = "opencollab-snapshot-repo"
url = "https://repo.opencollab.dev/main/"
}
maven {
name = "velocity-repo"
url = "https://nexus.velocitypowered.com/repository/maven-public/"
}
}
processResources {
def props = [version: rootProject.version]
inputs.properties props
filteringCharset 'UTF-8'
duplicatesStrategy = DuplicatesStrategy.INCLUDE
filesNotMatching("**/*.zip") {
expand props
}
}
}