forked from eutro/MultiblockTweaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request eutro#38 from Exaxxion/RFG
Switch "Stable" to use RFG build scripts, and from GTCE to GTNE
- Loading branch information
Showing
21 changed files
with
2,140 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,83 @@ | ||
# eclipse | ||
bin | ||
*.launch | ||
.settings | ||
.nopublish | ||
|
||
### Windows ### | ||
|
||
thumbs.db | ||
*.db | ||
|
||
### Java ### | ||
|
||
*.class | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.war | ||
*.ear | ||
*.txt | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
### Eclipse ### | ||
|
||
*.pydevproject | ||
.metadata | ||
.classpath | ||
.gradle | ||
bin/ | ||
tmp/ | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.settings/ | ||
.loadpath | ||
/eclipse | ||
|
||
# Eclipse Core | ||
.project | ||
|
||
# idea | ||
out | ||
# External tool builders | ||
.externalToolBuilders/ | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# CDT-specific | ||
.cproject | ||
|
||
# JDT-specific (Eclipse Java Development Tools) | ||
.classpath | ||
|
||
# Java annotation processor (APT) | ||
.factorypath | ||
|
||
# PDT-specific | ||
.buildpath | ||
|
||
# sbteclipse plugin | ||
.target | ||
|
||
# TeXlipse plugin | ||
.texlipse | ||
|
||
### Intellij IDEA ### | ||
|
||
*.iml | ||
*.ipr | ||
*.iws | ||
*.iml | ||
.idea | ||
|
||
# gradle | ||
build | ||
.gradle | ||
.idea/ | ||
.idea_modules/ | ||
/classes/ | ||
/out/ | ||
/build/ | ||
|
||
# other | ||
eclipse | ||
run | ||
# Linux | ||
*~ | ||
|
||
# Files from Forge MDK | ||
forge*changelog.txt | ||
/run/ | ||
/build/ | ||
/.gradle/ | ||
/.idea/ | ||
/.settings/ | ||
/FactoryBuilderDiagram.xcf | ||
/examples/tests/ | ||
run/ | ||
|
||
logs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
tasks.register("copyExamples") { | ||
doLast { | ||
val scriptsDir = file("$projectDir/run/scripts") | ||
val examplesDir = file("$projectDir/examples") | ||
scriptsDir.deleteRecursively() | ||
examplesDir.copyRecursively(scriptsDir) | ||
} | ||
} | ||
|
||
tasks.named("runClient").configure { | ||
dependsOn("copyExamples") | ||
} | ||
|
||
val javadoc: Javadoc by tasks | ||
javadoc.apply { | ||
exclude { el -> | ||
el.file.isFile && | ||
(el.file.name != "package-info.java" && | ||
el.file.useLines { lines -> !lines.contains("@ZenRegister") }) | ||
} | ||
setDestinationDir(file("docs/gtceu")) | ||
(options as StandardJavadocDocletOptions).run { | ||
locale("en") | ||
tags!!.addAll(listOf( | ||
"zenClass:a:ZenClass:", | ||
"zenGetter:a:ZenGetter:", | ||
"zenSetter:a:ZenSetter:" | ||
)) | ||
} | ||
} |
Oops, something went wrong.