This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
forked from artemisSystem/Decorative-Blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
103 lines (90 loc) · 3.33 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
plugins {
id 'fabric-loom' version '0.12-SNAPSHOT' apply false
id "com.matthewprenger.cursegradle" version "$cursegradle_version" apply false
id 'com.matyrobbrt.mc.registrationutils' version "$regVersion"
}
subprojects {
apply plugin: 'java'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
// java.withSourcesJar()
// java.withJavadocJar()
jar {
manifest {
attributes([
'Specification-Title' : mod_name,
'Specification-Vendor' : mod_author,
'Specification-Version' : project.jar.archiveVersion,
'Implementation-Title' : project.name,
'Implementation-Version' : project.jar.archiveVersion,
'Implementation-Vendor' : mod_author,
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
'Timestampe' : 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/'
}
maven {
name = 'BlameJared Maven (CrT / Bookshelf)'
url = 'https://maven.blamejared.com'
}
maven {
// location of the maven that hosts JEI files
name = "Progwml6 maven"
url = "https://dvs1.progwml6.com/files/maven/"
}
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "https://modmaven.dev"
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release = 17
}
// 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
}
def isForge = project.name == 'Forge'
def key = System.getenv('CURSEFORGEKEY')
println key
if (project.name != 'Common') {
apply plugin: 'com.matthewprenger.cursegradle'
if (!isForge) apply plugin: 'fabric-loom'
def changelogFile = rootProject.file('CHANGELOG.md').text
curseforge {
apiKey = key
project {
id = project.projectId
releaseType = project.releaseType
changelogType = 'markdown'
changelog = changelogFile
addGameVersion project.minecraft_version
addGameVersion project.name
mainArtifact(isForge ? jar : remapJar)
}
options {
debug = false
forgeGradleIntegration = isForge
}
}
}
}
registrationUtils {
group 'lilypuree.decorative_blocks.registration'
projects {
Fabric { type 'fabric' } // The fabric project
Forge { type 'forge' } // The forge project
Common { type 'common' } // The common project
}
}