88 lines
No EOL
2.7 KiB
Groovy
88 lines
No EOL
2.7 KiB
Groovy
plugins {
|
|
id 'com.github.ben-manes.versions'
|
|
id 'org.javamodularity.moduleplugin' version '1.8.3' apply false
|
|
id 'org.cadixdev.licenser'
|
|
}
|
|
apply plugin: 'java-library'
|
|
apply plugin: 'jacoco'
|
|
apply plugin: 'org.javamodularity.moduleplugin'
|
|
|
|
dependencyUpdates.rejectVersionIf { isNonStable(it.candidate.version) }
|
|
|
|
dependencies {
|
|
compileOnly("org.jetbrains:annotations:${JETBRAINS_ANNOTATIONS_VERSION}")
|
|
|
|
api("net.minecraftforge:eventbus:${EVENTBUS_VERSION}")
|
|
|
|
implementation(project(':fmlloader'))
|
|
implementation("commons-io:commons-io:${COMMONS_IO_VERSION}")
|
|
}
|
|
|
|
task sourcesJar(type: Jar) {
|
|
archiveClassifier = 'sources'
|
|
from sourceSets.main.allSource
|
|
}
|
|
|
|
ext {
|
|
MANIFESTS = [
|
|
'': [
|
|
'FMLModType': 'LIBRARY',
|
|
'Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
|
|
'Git-Commit': GIT_INFO.abbreviatedId,
|
|
'Git-Branch': GIT_INFO.branch,
|
|
'Build-Number': "${System.getenv('BUILD_NUMBER')?:0}"
|
|
] as LinkedHashMap,
|
|
'net/minecraftforge/fml/loading/': [
|
|
'Specification-Title': 'FMLLoader',
|
|
'Specification-Vendor': 'Forge Development LLC',
|
|
'Specification-Version': '1',
|
|
'Implementation-Title': 'FML Loader',
|
|
'Implementation-Version': '1.0',
|
|
'Implementation-Vendor': 'Forge'
|
|
] as LinkedHashMap,
|
|
'org/magmafoundation/magma/': [
|
|
'Specification-Title' : 'Magma Development Limited',
|
|
'Specification-Vendor' : 'Magma Development Limited',
|
|
'Implementation-Title' : "Magma",
|
|
'Implementation-Version': MAGMA_VERSION + "-" + MCP_VERSION,
|
|
'Implementation-Vendor' : 'Magma Development Limited',
|
|
] as LinkedHashMap,
|
|
'org/magmafoundation/magma/common/': [
|
|
'Specification-Title' : 'Magma Development Limited',
|
|
'Specification-Vendor' : 'Magma Development Limited',
|
|
'Implementation-Title' : "Magma",
|
|
'Implementation-Version': MAGMA_VERSION + "-" + MCP_VERSION,
|
|
'Implementation-Vendor' : 'Magma Development Limited',
|
|
] as LinkedHashMap
|
|
]
|
|
}
|
|
|
|
jar.doFirst {
|
|
manifest.attributes['Automatic-Module-Name'] = project.name
|
|
MANIFESTS.each { pkg, values ->
|
|
if (pkg == '')
|
|
manifest.attributes(values)
|
|
else
|
|
manifest.attributes(values, pkg)
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << '-Xlint:unchecked'
|
|
}
|
|
|
|
license {
|
|
header = rootProject.file('LICENSE-header.txt')
|
|
|
|
ext {
|
|
year = new Date().format("yyyy")
|
|
}
|
|
|
|
exclude 'net/minecraftforge/'
|
|
exclude 'io/izzel'
|
|
}
|
|
|
|
artifacts {
|
|
archives jar
|
|
archives sourcesJar
|
|
} |