-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathbuild.gradle
78 lines (66 loc) · 2.28 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
// Hacky fix for weird gson issues with Fabric
buildscript {
dependencies {
classpath 'com.google.code.gson:gson:2.10.1'
}
}
plugins {
// Required for NeoGradle
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.7"
// Used for changelog generation
id 'net.minecraftforge.gradleutils' version '2.2.0'
}
changelog {
fromTag '3.2.0'
}
ext {
mod_version = gradleutils.getTagOffsetVersion()
changelog_file = rootProject.file("build/changelog.txt")
trimChangelog = (String text) -> {
def m = text =~ /(?s) - (?:[0-9.]+) (.+?)(?=( - )|$)/
return '```\n' + m[0][1].replaceAll(/(?m)^ */, '')
}
}
version = "${minecraft_version}-${mod_version}"
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
java.withSourcesJar()
java.withJavadocJar()
version = rootProject.version
jar {
manifest {
attributes([
'Specification-Title' : mod_name,
'Specification-Vendor' : mod_author,
'Specification-Version' : mod_version,
'Implementation-Title' : project.name,
'Implementation-Version' : mod_version,
'Implementation-Vendor' : mod_author,
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
'Timestamp' : System.currentTimeMillis(),
'Built-On-Java' : "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})",
'Build-On-Minecraft' : minecraft_version
])
}
}
repositories {
mavenCentral()
maven {
name = 'Sponge / Mixin'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release.set(21)
}
// Disables Gradle's custom module metadata from being published to maven. The
// metadata includes mapped dependencies which are not reasonably consumable by
// other mod developers.
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
}