HexCasting/build.gradle

59 lines
1.9 KiB
Groovy
Raw Normal View History

2022-04-25 16:40:32 +02:00
subprojects {
2022-04-25 16:40:32 +02:00
apply plugin: 'java'
// apply plugin: 'kotlin'
2022-04-04 22:01:07 +02:00
2022-04-25 16:40:32 +02:00
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
java.withSourcesJar()
java.withJavadocJar()
2021-12-25 17:58:16 +01:00
2022-04-25 16:40:32 +02:00
jar {
manifest {
attributes([
'Specification-Title' : modID,
'Specification-Vendor' : "petra-kat",
'Specification-Version' : project.jar.archiveVersion,
'Implementation-Title' : project.name,
'Implementation-Version' : project.jar.archiveVersion,
'Implementation-Vendor' : "petra-kat",
'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' : minecraftVersion
])
}
}
2021-12-25 17:58:16 +01:00
repositories {
maven { url "https://libraries.minecraft.net/" }
2022-04-25 16:40:32 +02:00
mavenCentral()
2021-12-25 17:58:16 +01:00
maven {
2022-04-25 16:40:32 +02:00
name = 'Sponge / Mixin'
url = 'https://repo.spongepowered.org/repository/maven-public/'
2021-12-25 17:58:16 +01:00
}
2022-04-04 22:01:07 +02:00
2022-04-25 16:40:32 +02:00
maven {
name = 'BlameJared Maven (CrT / Bookshelf)'
url = 'https://maven.blamejared.com'
2022-04-04 22:01:07 +02:00
}
}
2022-04-25 16:40:32 +02:00
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release = 17
2022-04-04 22:13:25 +02:00
}
2022-04-04 22:01:07 +02:00
2022-04-25 16:40:32 +02:00
// 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
}
}
allprojects { gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xmaxerrs" << "1000" } } }