This file contains hidden or 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
| interface ItemType | |
| { | |
| int getMaxDamage(); | |
| } | |
| class net.minecraft.src.Item | |
| { | |
| ... |
This file contains hidden or 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
| allprojects { | |
| afterEvaluate { | |
| def versions = [ | |
| '1.6' : "/opt/java6/jre/lib/" | |
| ] | |
| // convert map to classpaths | |
| versions = versions.collectEntries { key, value -> | |
| def path = new File(value) | |
| value = path.listFiles().findAll { it.getPath().endsWith(".jar") } |
NewerOlder