-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
76 lines (63 loc) · 2.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
plugins {
id 'java'
id 'eclipse'
id "org.jetbrains.gradle.plugin.idea-ext" version "1.0.1"
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'ink.magma'
version = '1.3.0'
repositories {
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url = 'https://jitpack.io' }
maven {
name = "papermc-repo"
url = "https://repo.papermc.io/repository/maven-public/"
}
maven { url = uri("https://repo.ajg0702.us/releases") }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url "https://repo.william278.net/releases" }
mavenCentral()
}
dependencies {
compileOnly "com.velocitypowered:velocity-api:3.2.0-SNAPSHOT"
annotationProcessor "com.velocitypowered:velocity-api:3.2.0-SNAPSHOT"
compileOnly 'net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT'
compileOnly "us.ajg0702.queue.api:api:2.5.0"
implementation "com.github.Revxrsal.Lamp:common:3.1.5"
implementation "com.github.Revxrsal.Lamp:bungee:3.1.5"
implementation "net.kyori:adventure-api:4.16.0"
implementation "net.kyori:adventure-text-minimessage:4.16.0"
implementation "net.kyori:adventure-platform-bungeecord:4.3.2"
implementation "net.william278:annotaml:2.0.7"
}
def templateSource = file('src/main/templates')
def templateDest = layout.buildDirectory.dir('generated/sources/templates')
def generateTemplates = tasks.register('generateTemplates', Copy) { task ->
def props = [
'version': project.version
]
task.inputs.properties props
task.from templateSource
task.into templateDest
task.expand props
}
sourceSets.main.java.srcDir(generateTemplates.map { it.outputs })
rootProject.idea.project.settings.taskTriggers.afterSync generateTemplates
project.eclipse.synchronizationTasks(generateTemplates)
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
}
processResources {
def props = [version: version]
inputs.properties props
expand props
filteringCharset 'UTF-8'
filesMatching('bungee.yml') {
expand props
}
}
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
tasks.named('shadowJar', ShadowJar) {
enableRelocation true
relocationPrefix "ink.magma.backtolastserver.libraries"
}