2021-04-01 18:30:15 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
name = "forge"
|
|
|
|
url = "https://files.minecraftforge.net/maven"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "sonatype"
|
|
|
|
url = "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
|
|
}
|
2022-10-13 18:16:57 +02:00
|
|
|
maven { url 'https://jitpack.io' }
|
2021-04-01 18:30:15 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-10-13 18:16:57 +02:00
|
|
|
classpath 'com.github.GTNewHorizons:ForgeGradle:1.2.9'
|
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
|
|
|
|
|
2022-10-24 09:19:07 +02:00
|
|
|
version = "1.1.1"
|
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-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-10-23 15:09:57 +02:00
|
|
|
compile "com.github.tox1cozZ:mixin-booter-legacy:1.1.2"
|
|
|
|
annotationProcessor "com.github.tox1cozZ:mixin-booter-legacy:1.1.2:processor"
|
2021-04-01 18:30:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources
|
|
|
|
{
|
|
|
|
inputs.property "version", project.version
|
|
|
|
inputs.property "mcversion", project.minecraft.version
|
|
|
|
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
include 'mcmod.info'
|
|
|
|
|
|
|
|
expand 'version':project.version, 'mcversion':project.minecraft.version
|
|
|
|
}
|
|
|
|
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude 'mcmod.info'
|
|
|
|
}
|
|
|
|
}
|
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",
|
|
|
|
"FMLCorePluginContainsFMLMod": "true"
|
|
|
|
])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|