Last 1.18 initial work. Getting ready for 1.19
This commit is contained in:
50
build.gradle
50
build.gradle
@@ -1,10 +1,31 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'com.matyrobbrt.mc.registrationutils' version '0.2.6'
|
||||
}
|
||||
|
||||
registrationUtils {
|
||||
group 'me.hypherionmc.craterlib.systems.reg'
|
||||
projects {
|
||||
Common { type 'common'; project ':Common' }
|
||||
Fabric { type 'fabric'; project ':Fabric' }
|
||||
Forge { type 'forge'; project ':Forge' }
|
||||
}
|
||||
}
|
||||
|
||||
subprojects {
|
||||
|
||||
ext {
|
||||
isSnapshot: false
|
||||
}
|
||||
|
||||
def version_base = "${project.version_major}.${project.version_minor}"
|
||||
version = "${version_base}.${project.version_patch}"
|
||||
|
||||
group = project.group
|
||||
|
||||
// Jenkins
|
||||
if (System.getenv('BUILD_NUMBER') != null) {
|
||||
project.isSnapshot = true
|
||||
version = version_base + "." + System.getenv('BUILD_NUMBER') + "d"
|
||||
}
|
||||
|
||||
@@ -17,16 +38,16 @@ subprojects {
|
||||
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
|
||||
'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
|
||||
])
|
||||
}
|
||||
}
|
||||
@@ -37,6 +58,15 @@ subprojects {
|
||||
name = 'Sponge / Mixin'
|
||||
url = 'https://repo.spongepowered.org/repository/maven-public/'
|
||||
}
|
||||
maven {
|
||||
name = 'Hypherion Maven'
|
||||
url = 'https://maven.firstdarkdev.xyz/releases/'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'me.hypherionmc.night-config:toml:3.6.5_custom'
|
||||
implementation 'me.hypherionmc.night-config:core:3.6.5_custom'
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
|
Reference in New Issue
Block a user