2020-04-13 21:48:35 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-12-02 11:35:52 +01:00
|
|
|
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below
|
|
|
|
maven { url = 'https://maven.minecraftforge.net' }
|
2020-04-13 21:48:35 +02:00
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2021-12-02 11:35:52 +01:00
|
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
|
|
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
|
2022-10-22 10:44:27 +02:00
|
|
|
version = '1.12.7'
|
2020-04-13 21:48:35 +02:00
|
|
|
group = 'de.ellpeck.prettypipes' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
|
|
|
archivesBaseName = 'PrettyPipes'
|
|
|
|
|
|
|
|
if (System.getenv('BUILD_NUMBER') != null) {
|
|
|
|
version += "." + System.getenv('BUILD_NUMBER')
|
|
|
|
}
|
2021-12-02 11:35:52 +01:00
|
|
|
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
2020-04-13 21:48:35 +02:00
|
|
|
|
|
|
|
minecraft {
|
2022-03-04 15:15:47 +01:00
|
|
|
mappings channel: 'official', version: '1.18.2'
|
2020-04-13 21:48:35 +02:00
|
|
|
|
|
|
|
runs {
|
|
|
|
client {
|
|
|
|
workingDirectory project.file('run')
|
|
|
|
|
|
|
|
// Recommended logging data for a userdev environment
|
|
|
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
|
|
|
|
|
|
|
// Recommended logging level for the console
|
|
|
|
property 'forge.logging.console.level', 'info'
|
|
|
|
|
|
|
|
mods {
|
|
|
|
prettypipes {
|
|
|
|
source sourceSets.main
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
workingDirectory project.file('run')
|
|
|
|
|
|
|
|
// Recommended logging data for a userdev environment
|
|
|
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
|
|
|
|
|
|
|
// Recommended logging level for the console
|
|
|
|
property 'forge.logging.console.level', 'info'
|
|
|
|
|
|
|
|
mods {
|
|
|
|
prettypipes {
|
|
|
|
source sourceSets.main
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
data {
|
|
|
|
workingDirectory project.file('run')
|
|
|
|
|
|
|
|
// Recommended logging data for a userdev environment
|
|
|
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
|
|
|
|
|
|
|
// Recommended logging level for the console
|
|
|
|
property 'forge.logging.console.level', 'info'
|
|
|
|
|
|
|
|
args '--mod', 'prettypipes', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/'), '--existing', file('src/generated/resources')
|
|
|
|
|
|
|
|
mods {
|
|
|
|
prettypipes {
|
|
|
|
source sourceSets.main
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-02 23:02:58 +01:00
|
|
|
|
|
|
|
all {
|
|
|
|
lazyToken('minecraft_classpath') {
|
|
|
|
configurations.embed.copyRecursive().resolve().collect { it.absolutePath }.join(File.pathSeparator)
|
|
|
|
}
|
|
|
|
}
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.main.resources {
|
|
|
|
srcDir 'src/generated/resources'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2020-04-14 04:21:28 +02:00
|
|
|
mavenCentral()
|
2020-04-13 21:48:35 +02:00
|
|
|
maven {
|
|
|
|
url = "https://dvs1.progwml6.com/files/maven"
|
|
|
|
}
|
2020-10-13 18:11:40 +02:00
|
|
|
maven {
|
|
|
|
url = "https://www.cursemaven.com"
|
|
|
|
}
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
|
|
|
|
2020-04-14 04:21:28 +02:00
|
|
|
configurations {
|
|
|
|
embed
|
2021-12-02 14:44:26 +01:00
|
|
|
implementation.extendsFrom(embed)
|
2020-04-14 04:21:28 +02:00
|
|
|
}
|
|
|
|
|
2020-04-13 21:48:35 +02:00
|
|
|
dependencies {
|
2022-03-30 14:16:52 +02:00
|
|
|
minecraft 'net.minecraftforge:forge:1.18.2-40.0.32'
|
2021-12-02 12:31:04 +01:00
|
|
|
embed 'org.jgrapht:jgrapht-core:1.5.1'
|
2020-04-13 21:48:35 +02:00
|
|
|
|
2022-03-30 14:11:14 +02:00
|
|
|
compileOnly fg.deobf("mezz.jei:jei-1.18.2:9.5.5.174:api")
|
|
|
|
runtimeOnly fg.deobf("mezz.jei:jei-1.18.2:9.5.5.174")
|
2020-10-13 18:11:40 +02:00
|
|
|
|
2021-02-06 00:26:27 +01:00
|
|
|
// to test the rf requiring and crafting stuff
|
2021-12-02 11:35:52 +01:00
|
|
|
/* runtimeOnly fg.deobf("curse.maven:powah-352656:3057732")
|
2021-02-06 00:26:27 +01:00
|
|
|
runtimeOnly fg.deobf("curse.maven:lollipop-347954:3057731")
|
|
|
|
runtimeOnly fg.deobf("curse.maven:mcjtylib-233105:3131241")
|
|
|
|
runtimeOnly fg.deobf("curse.maven:rftools-base-326041:3140147")
|
2021-12-02 11:35:52 +01:00
|
|
|
runtimeOnly fg.deobf("curse.maven:rftools-utility-342466:3152948")*/
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Example for how to get properties into the manifest for reading by the runtime..
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes([
|
|
|
|
"Specification-Title" : "prettypipes",
|
|
|
|
"Specification-Vendor" : "Ellpeck",
|
|
|
|
"Specification-Version" : "1", // We are version 1 of ourselves
|
|
|
|
"Implementation-Title" : project.name,
|
|
|
|
"Implementation-Version" : "${version}",
|
|
|
|
"Implementation-Vendor" : "Ellpeck",
|
|
|
|
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
|
|
|
|
])
|
|
|
|
}
|
2020-04-14 04:21:28 +02:00
|
|
|
from configurations.embed.collect { it.isDirectory() ? it : zipTree(it) }
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
task deobfJar(type: Jar) {
|
2020-05-20 00:32:45 +02:00
|
|
|
from(sourceSets.main.output)
|
|
|
|
archiveName = "${baseName}-${version}-deobf.${extension}"
|
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar) {
|
2020-05-20 00:26:53 +02:00
|
|
|
from(sourceSets.main.allSource)
|
2020-05-19 23:41:07 +02:00
|
|
|
archiveName = "${baseName}-${version}-sources.${extension}"
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
2020-05-20 00:32:45 +02:00
|
|
|
|
2020-04-13 21:48:35 +02:00
|
|
|
artifacts {
|
|
|
|
archives deobfJar
|
2020-05-20 00:32:45 +02:00
|
|
|
archives sourcesJar
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
groupId project.group
|
|
|
|
artifactId project.archivesBaseName
|
|
|
|
version project.version
|
|
|
|
from components.java
|
|
|
|
|
|
|
|
artifact deobfJar {
|
2020-05-20 00:32:45 +02:00
|
|
|
classifier 'deobf'
|
|
|
|
}
|
2021-12-02 23:02:58 +01:00
|
|
|
|
2020-05-20 00:32:45 +02:00
|
|
|
artifact sourcesJar {
|
2020-05-19 23:41:07 +02:00
|
|
|
classifier 'sources'
|
2020-04-13 21:48:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pom.withXml {
|
|
|
|
def node = asNode()
|
|
|
|
if (node.dependencies.size() > 0)
|
|
|
|
node.remove(node.dependencies)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "file://" + System.getenv("local_maven")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|