-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
120 lines (96 loc) · 3.08 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
buildscript {
repositories {
maven { url = 'https://maven.minecraftforge.net' }
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
classpath group: 'org.spongepowered', name: 'mixingradle', version: '0.7.+'
}
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'org.spongepowered.mixin'
version = "$mcVersion-$modVersion"
group = 'meldexun.better_diving'
archivesBaseName = "$modName"
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
minecraft {
mappings channel: 'official', version: '1.16.5'
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
runs {
client {
taskName 'runClient BD 1.16'
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'info'
mods {
better_diving {
source sourceSets.main
}
}
}
server {
taskName 'runServer BD 1.16'
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'info'
mods {
better_diving {
source sourceSets.main
}
}
}
data {
taskName 'runData BD 1.16'
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'info'
args '--mod', 'better_diving', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
mods {
better_diving {
source sourceSets.main
}
}
}
}
}
sourceSets.main.resources { srcDir 'src/generated/resources' }
configurations {
includedDependencies
implementation.extendsFrom(includedDependencies)
buildDependencies
}
repositories {
ivy {
url 'https://github.com/'
patternLayout {
artifact '[organisation]/[module]/releases/download/v[revision]/[module]-[revision].[ext]'
}
metadataSources { artifact() }
}
maven { url 'https://www.cursemaven.com' }
}
dependencies {
minecraft 'net.minecraftforge:forge:1.16.5-36.2.31'
includedDependencies 'meldexun:ReflectionUtil:1.0.0@jar'
buildDependencies 'curse.maven:BeyonEarth-377448:3581611'
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
}
mixin {
add sourceSets.main, 'mixins.better_diving.refmap.json'
config 'mixins.better_diving.json'
}
jar {
from {
configurations.includedDependencies.collect { it.isDirectory() ? it : zipTree(it) }
}
}
compileJava {
classpath = sourceSets.main.compileClasspath + configurations.buildDependencies
}
jar.finalizedBy('reobfJar')
task apiJar(type: Jar) {
archiveClassifier.set('api')
include 'meldexun/better_diving/api/**/*'
from sourceSets.main.allSource
from sourceSets.main.output
}
tasks.build.dependsOn apiJar