Fixed assertion check so it's actually enabled
Updated folder structure
This commit is contained in:
parent
2bc81d93ae
commit
3cdb002f53
24 changed files with 9 additions and 6 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -6,9 +6,10 @@
|
|||
.gradle/
|
||||
.settings/
|
||||
build/
|
||||
eclipse/*
|
||||
run/*
|
||||
output/*
|
||||
|
||||
!eclipse/mods/
|
||||
!run/mods-ref/
|
||||
|
||||
*.iml
|
||||
*.iws
|
||||
|
|
10
build.gradle
10
build.gradle
|
@ -36,7 +36,7 @@ targetCompatibility = JavaVersion.VERSION_1_8
|
|||
|
||||
minecraft {
|
||||
version = config.minecraft_version + "-" + config.forge_version
|
||||
runDir = "eclipse"
|
||||
runDir = "run"
|
||||
|
||||
// replacing
|
||||
replace "@version@", project.version
|
||||
|
@ -104,10 +104,12 @@ jar {
|
|||
dependsOn copyOpenComputersCommons1, copyOpenComputersCommons2, copyOpenComputersCommons3, copyOpenComputersCommons4
|
||||
|
||||
manifest {
|
||||
attributes 'FMLAT': 'CoFH_at.cfg'
|
||||
attributes 'FMLAT': 'WarpDrive_at.cfg'
|
||||
attributes 'FMLCorePlugin': 'cr0s.warpdrive.core.FMLLoadingPlugin',
|
||||
'FMLCorePluginContainsFMLMod': 'true'
|
||||
}
|
||||
classifier = ''
|
||||
destinationDir = file 'output'
|
||||
}
|
||||
|
||||
idea {
|
||||
|
@ -117,9 +119,9 @@ idea {
|
|||
}
|
||||
|
||||
runClient {
|
||||
jvmArgs "-Xmx1024m", "-Xms1024m"
|
||||
jvmArgs "-Xmx1024m", "-Xms1024m", "-ea"
|
||||
}
|
||||
|
||||
runServer {
|
||||
jvmArgs "-Xmx1024m", "-Xms1024m"
|
||||
jvmArgs "-Xmx1024m", "-Xms1024m", "-ea"
|
||||
}
|
BIN
run/mods-ref/EnderCore-1.7.10-0.2.0.39_beta-dev.jar
Normal file
BIN
run/mods-ref/EnderCore-1.7.10-0.2.0.39_beta-dev.jar
Normal file
Binary file not shown.
BIN
run/mods-ref/EnderIO-1.7.10-2.3.0.429_beta-dev.jar
Normal file
BIN
run/mods-ref/EnderIO-1.7.10-2.3.0.429_beta-dev.jar
Normal file
Binary file not shown.
Loading…
Reference in a new issue