-
-
Notifications
You must be signed in to change notification settings - Fork 446
/
build.gradle
126 lines (111 loc) · 3.7 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
121
122
123
124
125
126
plugins {
id 'java-gradle-plugin'
id 'eclipse'
id 'maven-publish'
id 'net.minecraftforge.licenser' version '1.0.1'
id 'net.minecraftforge.gradleutils' version '[2.3,2.4)'
id 'com.github.ben-manes.versions' version '0.46.0'
}
version = gradleutils.getTagOffsetBranchVersion('FG_6.0')
logger.lifecycle('Version: ' + version + ' Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
changelog {
from '6.0'
publishAll = false
}
sourceSets {
common
mcp
patcher
userdev
}
java {
toolchain.languageVersion = JavaLanguageVersion.of(8)
withSourcesJar()
}
configurations {
configureEach {
exclude group: 'org.ow2.asm'
}
mcpImplementation.extendsFrom commonImplementation
patcherImplementation.extendsFrom commonImplementation
userdevImplementation.extendsFrom mcpImplementation
implementation.extendsFrom mcpImplementation, patcherImplementation, userdevImplementation
}
tasks.named('jar', Jar).configure {
from sourceSets.common.output
from sourceSets.mcp.output
from sourceSets.patcher.output
from sourceSets.userdev.output
}
tasks.named('sourcesJar', Jar).configure {
from sourceSets.common.allJava
from sourceSets.mcp.allJava
from sourceSets.patcher.allJava
from sourceSets.userdev.allJava
}
repositories {
mavenLocal()
maven gradleutils.forgeMaven
}
license {
header = file('HEADER')
exclude '**/*.properties'
exclude 'net/minecraftforge/gradle/common/diff/'
exclude 'net/minecraftforge/gradle/common/util/JavaVersionParser.java'
}
tasks.named('wrapper', Wrapper).configure {
gradleVersion = '8.4'
distributionType = Wrapper.DistributionType.ALL
}
dependencies {
commonImplementation gradleApi()
commonImplementation 'commons-io:commons-io:2.11.0'
commonImplementation 'com.google.code.gson:gson:2.10.1'
commonImplementation 'com.google.guava:guava:31.1-jre'
commonImplementation 'de.siegmar:fastcsv:2.2.1'
commonImplementation('net.minecraftforge:artifactural:3.0.19') {
transitive = false
}
commonImplementation('net.minecraftforge:unsafe:0.2.0') {
transitive = false
}
commonImplementation 'org.apache.maven:maven-artifact:3.9.1'
commonImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
commonImplementation 'net.minecraftforge:srgutils:0.5.10'
commonImplementation 'net.minecraftforge:DiffPatch:2.0.12:all'
mcpImplementation sourceSets.common.output
patcherImplementation sourceSets.mcp.output
patcherImplementation sourceSets.common.output
userdevImplementation sourceSets.mcp.output
userdevImplementation sourceSets.common.output
userdevImplementation 'net.minecraftforge:JarJarMetadata:0.3.19'
userdevImplementation 'net.minecraftforge:JarJarSelector:0.3.19'
}
gradlePlugin {
plugins {
mcp {
id = 'net.minecraftforge.gradle.mcp'
implementationClass = 'net.minecraftforge.gradle.mcp.MCPPlugin'
}
patcher {
id = 'net.minecraftforge.gradle.patcher'
implementationClass = 'net.minecraftforge.gradle.patcher.PatcherPlugin'
}
userdev {
id = 'net.minecraftforge.gradle'
implementationClass = 'net.minecraftforge.gradle.userdev.UserDevPlugin'
}
}
automatedPublishing = true
}
publishing {
publications {
pluginMaven(MavenPublication) {
// Automated publishing declares the java component for us
project.changelog.publish(it)
}
}
repositories {
maven gradleutils.getPublishingForgeMaven()
}
}