classic-worldgen/build.gradle

126 lines
2.8 KiB
Groovy
Raw Permalink Normal View History

2021-04-01 18:30:15 +02:00
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
2022-11-06 18:29:02 +01:00
url = "https://maven.minecraftforge.net/"
2021-04-01 18:30:15 +02:00
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
2022-11-06 18:29:02 +01:00
classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.0.+') {
changing = true
}
2021-04-01 18:30:15 +02:00
}
}
apply plugin: 'forge'
2022-10-23 15:09:57 +02:00
apply plugin: 'maven-publish'
2022-10-23 21:28:14 +02:00
apply from: './gradle/scripts/mixins.gradle'
2021-04-01 18:30:15 +02:00
2022-10-23 15:09:57 +02:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2023-07-09 14:10:02 +02:00
version = "1.7.2"
2022-10-13 18:16:57 +02:00
group= "dev.tilera.modding"
archivesBaseName = "cwg"
2021-04-01 18:30:15 +02:00
minecraft {
version = "1.7.10-10.13.4.1614-1.7.10"
runDir = "run"
2022-11-06 18:29:02 +01:00
replaceIn "dev/tilera/cwg/Constants.java"
replace "{VERSION}", project.version
2021-04-01 18:30:15 +02:00
}
2022-10-13 18:16:57 +02:00
repositories {
mavenCentral()
maven {
url = "https://maven.tilera.xyz"
}
maven { url 'https://jitpack.io' }
maven {
name 'Overmind forge repo mirror'
url 'https://gregtech.overminddl1.com/'
}
}
dependencies {
2022-11-06 18:29:02 +01:00
implementation "com.github.tox1cozZ:mixin-booter-legacy:1.1.2"
2022-10-23 15:09:57 +02:00
annotationProcessor "com.github.tox1cozZ:mixin-booter-legacy:1.1.2:processor"
2021-04-01 18:30:15 +02:00
}
2022-11-06 18:29:02 +01:00
processResources {
2021-04-01 18:30:15 +02:00
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
2022-11-06 18:29:02 +01:00
filesMatching('mcmod.info') {
2021-04-01 18:30:15 +02:00
expand 'version':project.version, 'mcversion':project.minecraft.version
}
}
2022-10-13 18:16:57 +02:00
2022-10-23 15:09:57 +02:00
jar {
manifest {
attributes([
"FMLCorePlugin" : "dev.tilera.cwg.core.CWGCorePlugin",
2023-02-14 17:53:52 +01:00
"FMLCorePluginContainsFMLMod": "true",
"FMLAT": "cwg_at.cfg"
2022-10-23 15:09:57 +02:00
])
}
}
2022-10-13 18:16:57 +02:00
sourceSets {
main {
java {
srcDir 'src/main/java'
}
resources {
srcDir 'src/main/resources'
}
}
2022-10-23 15:09:57 +02:00
}
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'deobf'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
publishing {
tasks.publish.dependsOn 'build'
publications {
mavenJava(MavenPublication) {
artifactId = project.archivesBaseName
artifact deobfJar
artifact sourcesJar
artifact jar
}
}
repositories {
if (project.hasProperty('mvnURL')) {
maven {
credentials {
username findProperty("mvnUsername")
password findProperty("mvnPassword")
}
url = findProperty("mvnURL")
}
}
else {
mavenLocal()
}
}
2022-10-23 21:28:14 +02:00
}
mixin {
mixinRefMapName = 'cwg.refmap.json'
2022-10-13 18:16:57 +02:00
}