This commit is contained in:
modmuss50 2019-02-20 20:27:03 +00:00
parent 5bc08557b3
commit df8c2cd34b
3 changed files with 27 additions and 12 deletions

View file

@ -1,5 +1,5 @@
minecraftVersion="1.13"
name="TechReborn-1.13"
minecraftVersion="1.13.2"
name="TechReborn-1.13.2"
curseID="233564"
child-project="reborncore"
child-type="requiredLibrary"

View file

@ -68,12 +68,27 @@ minecraft {
mappings channel: 'snapshot', version: '20180921-1.13'
runs {
client = {
workingDirectory project.file('run').canonicalPath
source sourceSets.main
client {
workingDirectory project.file('run')
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug'
mods {
techreborn {
source sourceSets.main
}
}
}
server = {
workingDirectory project.file('run').canonicalPath
server {
workingDirectory project.file('run')
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug'
mods {
techreborn {
source sourceSets.main
}
}
}
}
}
@ -87,17 +102,17 @@ license {
group = 'TechReborn'
dependencies {
minecraft 'net.minecraftforge.test:forge:1.13-24.0.76-1.13-pre'
compile 'RebornCore:RebornCore-1.13:4.0.0.5:dev'
minecraft 'net.minecraftforge:forge:1.13.2-25.0.44'
compile 'RebornCore:RebornCore-1.13.2:+:dev'
}
processResources{
inputs.property 'version', project.version
inputs.property 'mcversion', '1.13'
inputs.property 'mcversion', '1.13.2'
from(sourceSets.main.resources.srcDirs) {
include 'META_INF/mods.toml'
expand 'version':project.version, 'mcversion': '1.13'
expand 'version':project.version, 'mcversion': '1.13.2'
}
from(sourceSets.main.resources.srcDirs) {

View file

@ -1 +1 @@
rootProject.name = "TechReborn-1.13"
rootProject.name = "TechReborn-1.13.2"