-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
65 lines (56 loc) · 1.56 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
// Workaround for Shadow not supporting Java 19 classes.
// Remove this once Shadow updates.
// See: https://github.com/johnrengelman/shadow/pull/770
// See: https://discord.com/channels/722722769950998560/793019909055578113/978939925061857315
buildscript {
configurations.all {
resolutionStrategy {
force("org.ow2.asm:asm:9.5")
force("org.ow2.asm:asm-commons:9.5")
}
}
}
plugins {
id 'com.gradleup.shadow' version '8.3.5'
id 'java'
id 'maven-publish'
}
apply plugin: 'eclipse'
allprojects {
repositories {
mavenLocal()
gradlePluginPortal()
maven { url 'https://libraries.minecraft.net/' }
maven { url "https://cursemaven.com" }
maven { url = 'https://maven.neoforged.net/releases' }
}
apply plugin: 'java'
group = mod_group_id
version = mod_version
}
subprojects {
apply plugin: 'java'
apply plugin: 'com.gradleup.shadow'
apply plugin: 'maven-publish'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}
clean {
delete "target"
}
task copyConfigToRun(type: Copy) {
def fileToCopy = file('whitelistsync2-common.toml') // Specify the file to copy
subprojects.findAll { subproject ->
subproject.name.startsWith('forge')
|| subproject.name.startsWith('fabric')
|| subproject.name.startsWith('neoforge')
}.each { subproject ->
copy {
from fileToCopy
into subproject.file('run/config')
}
}
}