buildscript { repositories { mavenCentral() maven { name = "forge" url = "https://maven.minecraftforge.net/" } maven { name = "sonatype" url = "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.0.+') { changing = true } } } apply plugin: 'forge' apply plugin: 'maven-publish' sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 version = "2.2.827-experimental" group = "net.industrial-craft" archivesBaseName = "industrialcraft-2" minecraft { version = "1.7.10-10.13.4.1614-1.7.10" runDir = "run" } repositories { maven { url = "https://s3.tilera.xyz/cdn/minecraft/libs/" metadataSources { artifact() } } maven { url = "https://maven.tilera.xyz" } maven { name "central" url "https://nexus.covers1624.net/repository/maven-hosted/" } } dependencies { implementation "org.ejml:EJML-core:0.26" implementation "buildcraft:buildcraft:7.1.25:dev" implementation "codechicken:NotEnoughItems:1.7.10-1.0.5.120:dev" implementation "codechicken:CodeChickenCore:1.7.10-1.0.7.48:dev" implementation "codechicken:CodeChickenLib:1.7.10-1.1.3.141:dev" } jar { manifest { attributes "FMLAT": "IC2_at.cfg" attributes "FMLCorePluginContainsFMLMod": "true" attributes "FMLCorePlugin": "ic2.core.coremod.IC2core" } } processResources { inputs.property "version", project.version inputs.property "mcversion", project.minecraft.version filesMatching('mcmod.info') { expand 'version':project.version, 'mcversion':project.minecraft.version } } 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() } } }