Created
December 9, 2018 13:20
-
-
Save HerXayah/b9452b406cc83163c649d49ec963929a to your computer and use it in GitHub Desktop.
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
// For those who want the bleeding edge | |
buildscript { | |
repositories { | |
jcenter() | |
maven { | |
name = "forge" | |
url = "http://files.minecraftforge.net/maven" | |
} | |
} | |
dependencies { | |
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT' | |
} | |
} | |
apply plugin: 'net.minecraftforge.gradle.forge' | |
/* | |
// for people who want stable - not yet functional for MC 1.8.8 - we require the forgegradle 2.1 snapshot | |
plugins { | |
id "net.minecraftforge.gradle.forge" version "2.0.2" | |
} | |
*/ | |
version = "1.0" | |
group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html | |
archivesBaseName = "modid" | |
minecraft { | |
version = "1.8.9-11.15.1.1855" | |
runDir = "run" | |
// the mappings can be changed at any time, and must be in the following format. | |
// snapshot_YYYYMMDD snapshot are built nightly. | |
// stable_# stables are built at the discretion of the MCP team. | |
// Use non-default mappings at your own risk. they may not allways work. | |
// simply re-run your setup task after changing the mappings to update your workspace. | |
mappings = "stable_20" | |
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. | |
} | |
dependencies { | |
// you may put jars on which you depend on in ./libs | |
// or you may define them like so.. | |
//compile "some.group:artifact:version:classifier" | |
//compile "some.group:artifact:version" | |
// real examples | |
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env | |
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env | |
// the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. | |
//provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' | |
// the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided, | |
// except that these dependencies get remapped to your current MCP mappings | |
//deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev' | |
//deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev' | |
// for more info... | |
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html | |
// http://www.gradle.org/docs/current/userguide/dependency_management.html | |
} | |
processResources | |
{ | |
// this will ensure that this task is redone when the versions change. | |
inputs.property "version", project.version | |
inputs.property "mcversion", project.minecraft.version | |
// replace stuff in mcmod.info, nothing else | |
from(sourceSets.main.resources.srcDirs) { | |
include 'mcmod.info' | |
// replace version and mcversion | |
expand 'version':project.version, 'mcversion':project.minecraft.version | |
} | |
// copy everything else, thats not the mcmod.info | |
from(sourceSets.main.resources.srcDirs) { | |
exclude 'mcmod.info' | |
} | |
} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<module external.linked.project.id="Labymod Razer Module:api" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.yourname.modid" external.system.module.type="sourceSet" external.system.module.version="1.0" type="JAVA_MODULE" version="4"> | |
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="true"> | |
<exclude-output /> | |
<content url="file://$MODULE_DIR$/src/api" /> | |
<orderEntry type="inheritedJdk" /> | |
<orderEntry type="sourceFolder" forTests="false" /> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1855/stable/20/forgeSrc-1.8.9-11.15.1.1855.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1855/stable/20/forgeSrc-1.8.9-11.15.1.1855-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
</orderEntry> | |
<orderEntry type="library" name="Gradle: com.mojang:netty:1.6" level="project" /> | |
<orderEntry type="library" name="Gradle: oshi-project:oshi-core:1.1" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.dev.jna:jna:3.4.0" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.dev.jna:platform:3.4.0" level="project" /> | |
<orderEntry type="library" name="Gradle: com.ibm.icu:icu4j-core-mojang:51.2" level="project" /> | |
<orderEntry type="library" name="Gradle: net.sf.jopt-simple:jopt-simple:4.6" level="project" /> | |
<orderEntry type="library" name="Gradle: io.netty:netty-all:4.0.23.Final" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.guava:guava:17.0" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.commons:commons-lang3:3.3.2" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-io:commons-io:2.4" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-codec:commons-codec:1.9" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jutils:jutils:1.0.0" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.code.gson:gson:2.2.4" level="project" /> | |
<orderEntry type="library" name="Gradle: com.mojang:authlib:1.5.21" level="project" /> | |
<orderEntry type="library" name="Gradle: com.mojang:realms:1.7.59" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.commons:commons-compress:1.8.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.httpcomponents:httpclient:4.3.3" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-logging:commons-logging:1.1.3" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.httpcomponents:httpcore:4.3.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.logging.log4j:log4j-api:2.0-beta9" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.logging.log4j:log4j-core:2.0-beta9" level="project" /> | |
<orderEntry type="library" name="Gradle: net.minecraft:launchwrapper:1.12" level="project" /> | |
<orderEntry type="library" name="Gradle: jline:jline:2.13" level="project" /> | |
<orderEntry type="library" name="Gradle: org.ow2.asm:asm-debug-all:5.0.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.typesafe.akka:akka-actor_2.11:2.3.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.typesafe:config:1.2.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-actors-migration_2.11:1.1.0" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-compiler:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.plugins:scala-continuations-library_2.11:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.plugins:scala-continuations-plugin_2.11.1:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-library:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-parser-combinators_2.11:1.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-reflect:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-swing_2.11:1.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-xml_2.11:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: lzma:lzma:0.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: net.sf.trove4j:trove4j:3.0.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:codecjorbis:20101023" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:codecwav:20101023" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:libraryjavasound:20101123" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:librarylwjglopenal:20100824" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:soundsystem:20120107" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl_util:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: java3d:vecmath:1.5.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.fusesource.jansi:jansi:1.11" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-actors:2.11.0" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-linux:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-windows:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-osx:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-windows-32:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-windows-64:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-osx:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-external-platform:natives-windows-32:4.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-external-platform:natives-windows-64:4.5" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.code.findbugs:jsr305:2.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-windows:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-linux:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-osx:2.9.4-nightly-20150209" level="project" /> | |
</component> | |
</module> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<module external.linked.project.id="Labymod Razer Module" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.yourname.modid" external.system.module.version="1.0" type="JAVA_MODULE" version="4"> | |
<component name="NewModuleRootManager" inherit-compiler-output="true"> | |
<exclude-output /> | |
<content url="file://$MODULE_DIR$"> | |
<excludeFolder url="file://$MODULE_DIR$/.gradle" /> | |
<excludeFolder url="file://$MODULE_DIR$/build" /> | |
<excludeFolder url="file://$MODULE_DIR$/out" /> | |
</content> | |
<orderEntry type="inheritedJdk" /> | |
<orderEntry type="sourceFolder" forTests="false" /> | |
<orderEntry type="module-library" exported=""> | |
<library> | |
<CLASSES> | |
<root url="jar://$MODULE_DIR$/Libraries/lm_api_mc1.8.9 (1).jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
</component> | |
</module> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<module external.linked.project.id="Labymod Razer Module:main" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.yourname.modid" external.system.module.type="sourceSet" external.system.module.version="1.0" type="JAVA_MODULE" version="4"> | |
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="true"> | |
<exclude-output /> | |
<content url="file://$MODULE_DIR$/src/main"> | |
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | |
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> | |
</content> | |
<orderEntry type="inheritedJdk" /> | |
<orderEntry type="sourceFolder" forTests="false" /> | |
<orderEntry type="module" module-name="com.yourname.modid.Labymod_Razer_Module.api" /> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1855/stable/20/forgeSrc-1.8.9-11.15.1.1855.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1855/stable/20/forgeSrc-1.8.9-11.15.1.1855-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
</orderEntry> | |
<orderEntry type="library" name="Gradle: com.mojang:netty:1.6" level="project" /> | |
<orderEntry type="library" name="Gradle: oshi-project:oshi-core:1.1" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.dev.jna:jna:3.4.0" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.dev.jna:platform:3.4.0" level="project" /> | |
<orderEntry type="library" name="Gradle: com.ibm.icu:icu4j-core-mojang:51.2" level="project" /> | |
<orderEntry type="library" name="Gradle: net.sf.jopt-simple:jopt-simple:4.6" level="project" /> | |
<orderEntry type="library" name="Gradle: io.netty:netty-all:4.0.23.Final" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.guava:guava:17.0" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.commons:commons-lang3:3.3.2" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-io:commons-io:2.4" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-codec:commons-codec:1.9" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jutils:jutils:1.0.0" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.code.gson:gson:2.2.4" level="project" /> | |
<orderEntry type="library" name="Gradle: com.mojang:authlib:1.5.21" level="project" /> | |
<orderEntry type="library" name="Gradle: com.mojang:realms:1.7.59" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.commons:commons-compress:1.8.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.httpcomponents:httpclient:4.3.3" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-logging:commons-logging:1.1.3" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.httpcomponents:httpcore:4.3.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.logging.log4j:log4j-api:2.0-beta9" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.logging.log4j:log4j-core:2.0-beta9" level="project" /> | |
<orderEntry type="library" name="Gradle: net.minecraft:launchwrapper:1.12" level="project" /> | |
<orderEntry type="library" name="Gradle: jline:jline:2.13" level="project" /> | |
<orderEntry type="library" name="Gradle: org.ow2.asm:asm-debug-all:5.0.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.typesafe.akka:akka-actor_2.11:2.3.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.typesafe:config:1.2.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-actors-migration_2.11:1.1.0" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-compiler:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.plugins:scala-continuations-library_2.11:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.plugins:scala-continuations-plugin_2.11.1:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-library:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-parser-combinators_2.11:1.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-reflect:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-swing_2.11:1.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-xml_2.11:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: lzma:lzma:0.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: net.sf.trove4j:trove4j:3.0.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:codecjorbis:20101023" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:codecwav:20101023" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:libraryjavasound:20101123" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:librarylwjglopenal:20100824" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:soundsystem:20120107" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl_util:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: java3d:vecmath:1.5.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.fusesource.jansi:jansi:1.11" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-actors:2.11.0" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-linux:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-windows:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-osx:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-windows-32:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-windows-64:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-osx:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-external-platform:natives-windows-32:4.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-external-platform:natives-windows-64:4.5" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.code.findbugs:jsr305:2.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-windows:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-linux:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-osx:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="module-library" scope="RUNTIME"> | |
<library> | |
<CLASSES> | |
<root url="file://$USER_HOME$/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1855/start" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$MODULE_DIR$/Libraries/lm_api_mc1.8.9 (1).jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
</component> | |
</module> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<module external.linked.project.id="Labymod Razer Module:test" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.yourname.modid" external.system.module.type="sourceSet" external.system.module.version="1.0" type="JAVA_MODULE" version="4"> | |
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="true"> | |
<exclude-output /> | |
<content url="file://$MODULE_DIR$/src/test" /> | |
<orderEntry type="inheritedJdk" /> | |
<orderEntry type="sourceFolder" forTests="false" /> | |
<orderEntry type="module" module-name="com.yourname.modid.Labymod_Razer_Module.main" /> | |
<orderEntry type="module" module-name="com.yourname.modid.Labymod_Razer_Module.api" /> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</orderEntry> | |
<orderEntry type="module-library"> | |
<library> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1855/stable/20/forgeSrc-1.8.9-11.15.1.1855.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1855/stable/20/forgeSrc-1.8.9-11.15.1.1855-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
</orderEntry> | |
<orderEntry type="library" name="Gradle: com.mojang:netty:1.6" level="project" /> | |
<orderEntry type="library" name="Gradle: oshi-project:oshi-core:1.1" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.dev.jna:jna:3.4.0" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.dev.jna:platform:3.4.0" level="project" /> | |
<orderEntry type="library" name="Gradle: com.ibm.icu:icu4j-core-mojang:51.2" level="project" /> | |
<orderEntry type="library" name="Gradle: net.sf.jopt-simple:jopt-simple:4.6" level="project" /> | |
<orderEntry type="library" name="Gradle: io.netty:netty-all:4.0.23.Final" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.guava:guava:17.0" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.commons:commons-lang3:3.3.2" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-io:commons-io:2.4" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-codec:commons-codec:1.9" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jutils:jutils:1.0.0" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.code.gson:gson:2.2.4" level="project" /> | |
<orderEntry type="library" name="Gradle: com.mojang:authlib:1.5.21" level="project" /> | |
<orderEntry type="library" name="Gradle: com.mojang:realms:1.7.59" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.commons:commons-compress:1.8.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.httpcomponents:httpclient:4.3.3" level="project" /> | |
<orderEntry type="library" name="Gradle: commons-logging:commons-logging:1.1.3" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.httpcomponents:httpcore:4.3.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.logging.log4j:log4j-api:2.0-beta9" level="project" /> | |
<orderEntry type="library" name="Gradle: org.apache.logging.log4j:log4j-core:2.0-beta9" level="project" /> | |
<orderEntry type="library" name="Gradle: net.minecraft:launchwrapper:1.12" level="project" /> | |
<orderEntry type="library" name="Gradle: jline:jline:2.13" level="project" /> | |
<orderEntry type="library" name="Gradle: org.ow2.asm:asm-debug-all:5.0.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.typesafe.akka:akka-actor_2.11:2.3.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.typesafe:config:1.2.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-actors-migration_2.11:1.1.0" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-compiler:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.plugins:scala-continuations-library_2.11:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.plugins:scala-continuations-plugin_2.11.1:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-library:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-parser-combinators_2.11:1.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-reflect:2.11.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-swing_2.11:1.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang.modules:scala-xml_2.11:1.0.2" level="project" /> | |
<orderEntry type="library" name="Gradle: lzma:lzma:0.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: net.sf.trove4j:trove4j:3.0.3" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:codecjorbis:20101023" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:codecwav:20101023" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:libraryjavasound:20101123" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:librarylwjglopenal:20100824" level="project" /> | |
<orderEntry type="library" name="Gradle: com.paulscode:soundsystem:20120107" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl_util:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: java3d:vecmath:1.5.2" level="project" /> | |
<orderEntry type="library" name="Gradle: org.fusesource.jansi:jansi:1.11" level="project" /> | |
<orderEntry type="library" name="Gradle: org.scala-lang:scala-actors:2.11.0" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-linux:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-windows:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: net.java.jinput:jinput-platform:natives-osx:2.0.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-windows-32:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-windows-64:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-platform:natives-osx:6.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-external-platform:natives-windows-32:4.5" level="project" /> | |
<orderEntry type="library" name="Gradle: tv.twitch:twitch-external-platform:natives-windows-64:4.5" level="project" /> | |
<orderEntry type="library" name="Gradle: com.google.code.findbugs:jsr305:2.0.1" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-windows:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-linux:2.9.4-nightly-20150209" level="project" /> | |
<orderEntry type="library" name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-osx:2.9.4-nightly-20150209" level="project" /> | |
</component> | |
<component name="TestModuleProperties" production-module="com.yourname.modid.Labymod_Razer_Module.main" /> | |
</module> |
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
#Mon Sep 14 12:28:28 PDT 2015 | |
distributionBase=GRADLE_USER_HOME | |
distributionPath=wrapper/dists | |
zipStoreBase=GRADLE_USER_HOME | |
zipStorePath=wrapper/dists | |
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip |
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
#!/usr/bin/env bash | |
############################################################################## | |
## | |
## Gradle start up script for UN*X | |
## | |
############################################################################## | |
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. | |
DEFAULT_JVM_OPTS="" | |
APP_NAME="Gradle" | |
APP_BASE_NAME=`basename "$0"` | |
# Use the maximum available, or set MAX_FD != -1 to use that value. | |
MAX_FD="maximum" | |
warn ( ) { | |
echo "$*" | |
} | |
die ( ) { | |
echo | |
echo "$*" | |
echo | |
exit 1 | |
} | |
# OS specific support (must be 'true' or 'false'). | |
cygwin=false | |
msys=false | |
darwin=false | |
case "`uname`" in | |
CYGWIN* ) | |
cygwin=true | |
;; | |
Darwin* ) | |
darwin=true | |
;; | |
MINGW* ) | |
msys=true | |
;; | |
esac | |
# For Cygwin, ensure paths are in UNIX format before anything is touched. | |
if $cygwin ; then | |
[ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` | |
fi | |
# Attempt to set APP_HOME | |
# Resolve links: $0 may be a link | |
PRG="$0" | |
# Need this for relative symlinks. | |
while [ -h "$PRG" ] ; do | |
ls=`ls -ld "$PRG"` | |
link=`expr "$ls" : '.*-> \(.*\)$'` | |
if expr "$link" : '/.*' > /dev/null; then | |
PRG="$link" | |
else | |
PRG=`dirname "$PRG"`"/$link" | |
fi | |
done | |
SAVED="`pwd`" | |
cd "`dirname \"$PRG\"`/" >&- | |
APP_HOME="`pwd -P`" | |
cd "$SAVED" >&- | |
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar | |
# Determine the Java command to use to start the JVM. | |
if [ -n "$JAVA_HOME" ] ; then | |
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then | |
# IBM's JDK on AIX uses strange locations for the executables | |
JAVACMD="$JAVA_HOME/jre/sh/java" | |
else | |
JAVACMD="$JAVA_HOME/bin/java" | |
fi | |
if [ ! -x "$JAVACMD" ] ; then | |
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME | |
Please set the JAVA_HOME variable in your environment to match the | |
location of your Java installation." | |
fi | |
else | |
JAVACMD="java" | |
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | |
Please set the JAVA_HOME variable in your environment to match the | |
location of your Java installation." | |
fi | |
# Increase the maximum file descriptors if we can. | |
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then | |
MAX_FD_LIMIT=`ulimit -H -n` | |
if [ $? -eq 0 ] ; then | |
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then | |
MAX_FD="$MAX_FD_LIMIT" | |
fi | |
ulimit -n $MAX_FD | |
if [ $? -ne 0 ] ; then | |
warn "Could not set maximum file descriptor limit: $MAX_FD" | |
fi | |
else | |
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" | |
fi | |
fi | |
# For Darwin, add options to specify how the application appears in the dock | |
if $darwin; then | |
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" | |
fi | |
# For Cygwin, switch paths to Windows format before running java | |
if $cygwin ; then | |
APP_HOME=`cygpath --path --mixed "$APP_HOME"` | |
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` | |
# We build the pattern for arguments to be converted via cygpath | |
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` | |
SEP="" | |
for dir in $ROOTDIRSRAW ; do | |
ROOTDIRS="$ROOTDIRS$SEP$dir" | |
SEP="|" | |
done | |
OURCYGPATTERN="(^($ROOTDIRS))" | |
# Add a user-defined pattern to the cygpath arguments | |
if [ "$GRADLE_CYGPATTERN" != "" ] ; then | |
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" | |
fi | |
# Now convert the arguments - kludge to limit ourselves to /bin/sh | |
i=0 | |
for arg in "$@" ; do | |
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` | |
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option | |
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition | |
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` | |
else | |
eval `echo args$i`="\"$arg\"" | |
fi | |
i=$((i+1)) | |
done | |
case $i in | |
(0) set -- ;; | |
(1) set -- "$args0" ;; | |
(2) set -- "$args0" "$args1" ;; | |
(3) set -- "$args0" "$args1" "$args2" ;; | |
(4) set -- "$args0" "$args1" "$args2" "$args3" ;; | |
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; | |
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; | |
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; | |
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; | |
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; | |
esac | |
fi | |
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules | |
function splitJvmOpts() { | |
JVM_OPTS=("$@") | |
} | |
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS | |
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" | |
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" |
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
@if "%DEBUG%" == "" @echo off | |
@rem ########################################################################## | |
@rem | |
@rem Gradle startup script for Windows | |
@rem | |
@rem ########################################################################## | |
@rem Set local scope for the variables with windows NT shell | |
if "%OS%"=="Windows_NT" setlocal | |
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. | |
set DEFAULT_JVM_OPTS= | |
set DIRNAME=%~dp0 | |
if "%DIRNAME%" == "" set DIRNAME=. | |
set APP_BASE_NAME=%~n0 | |
set APP_HOME=%DIRNAME% | |
@rem Find java.exe | |
if defined JAVA_HOME goto findJavaFromJavaHome | |
set JAVA_EXE=java.exe | |
%JAVA_EXE% -version >NUL 2>&1 | |
if "%ERRORLEVEL%" == "0" goto init | |
echo. | |
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | |
echo. | |
echo Please set the JAVA_HOME variable in your environment to match the | |
echo location of your Java installation. | |
goto fail | |
:findJavaFromJavaHome | |
set JAVA_HOME=%JAVA_HOME:"=% | |
set JAVA_EXE=%JAVA_HOME%/bin/java.exe | |
if exist "%JAVA_EXE%" goto init | |
echo. | |
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% | |
echo. | |
echo Please set the JAVA_HOME variable in your environment to match the | |
echo location of your Java installation. | |
goto fail | |
:init | |
@rem Get command-line arguments, handling Windowz variants | |
if not "%OS%" == "Windows_NT" goto win9xME_args | |
if "%@eval[2+2]" == "4" goto 4NT_args | |
:win9xME_args | |
@rem Slurp the command line arguments. | |
set CMD_LINE_ARGS= | |
set _SKIP=2 | |
:win9xME_args_slurp | |
if "x%~1" == "x" goto execute | |
set CMD_LINE_ARGS=%* | |
goto execute | |
:4NT_args | |
@rem Get arguments from the 4NT Shell from JP Software | |
set CMD_LINE_ARGS=%$ | |
:execute | |
@rem Setup the command line | |
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar | |
@rem Execute Gradle | |
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% | |
:end | |
@rem End local scope for the variables with windows NT shell | |
if "%ERRORLEVEL%"=="0" goto mainEnd | |
:fail | |
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of | |
rem the _cmd.exe /c_ return code! | |
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 | |
exit /b 1 | |
:mainEnd | |
if "%OS%"=="Windows_NT" endlocal | |
:omega |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project version="4"> | |
<component name="CompilerConfiguration"> | |
<resourceExtensions> | |
<entry name=".+\.(properties|xml|html|dtd|tld)" /> | |
<entry name=".+\.(gif|png|jpeg|jpg)" /> | |
</resourceExtensions> | |
<wildcardResourcePatterns> | |
<entry name="!?*.java" /> | |
<entry name="!?*.groovy" /> | |
</wildcardResourcePatterns> | |
<bytecodeTargetLevel> | |
<module name="com.yourname.modid.Labymod_Razer_Module.api" target="1.6" /> | |
<module name="com.yourname.modid.Labymod_Razer_Module.main" target="1.6" /> | |
<module name="com.yourname.modid.Labymod_Razer_Module.test" target="1.6" /> | |
</bytecodeTargetLevel> | |
</component> | |
<component name="CopyrightManager" default="" /> | |
<component name="DependencyValidationManager"> | |
<option name="SKIP_IMPORT_STATEMENTS" value="false" /> | |
</component> | |
<component name="Encoding" addBOMForNewFiles="with NO BOM" /> | |
<component name="GradleSettings"> | |
<option name="linkedExternalProjectsSettings"> | |
<GradleProjectSettings> | |
<option name="distributionType" value="DEFAULT_WRAPPED" /> | |
<option name="externalProjectPath" value="$PROJECT_DIR$" /> | |
<option name="modules"> | |
<set> | |
<option value="$PROJECT_DIR$" /> | |
</set> | |
</option> | |
<option name="useQualifiedModuleNames" value="true" /> | |
</GradleProjectSettings> | |
</option> | |
</component> | |
<component name="GradleUISettings"> | |
<setting name="root" /> | |
</component> | |
<component name="GradleUISettings2"> | |
<setting name="root" /> | |
</component> | |
<component name="IdProvider" IDEtalkID="11DA1DB66DD62DDA1ED602B7079FE97C" /> | |
<component name="InspectionProjectProfileManager"> | |
<profile version="1.0"> | |
<option name="myName" value="Project Default" /> | |
</profile> | |
<version value="1.0" /> | |
</component> | |
<component name="JavadocGenerationManager"> | |
<option name="OUTPUT_DIRECTORY" /> | |
<option name="OPTION_SCOPE" value="protected" /> | |
<option name="OPTION_HIERARCHY" value="true" /> | |
<option name="OPTION_NAVIGATOR" value="true" /> | |
<option name="OPTION_INDEX" value="true" /> | |
<option name="OPTION_SEPARATE_INDEX" value="true" /> | |
<option name="OPTION_DOCUMENT_TAG_USE" value="false" /> | |
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" /> | |
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" /> | |
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" /> | |
<option name="OPTION_DEPRECATED_LIST" value="true" /> | |
<option name="OTHER_OPTIONS" value="" /> | |
<option name="HEAP_SIZE" /> | |
<option name="LOCALE" /> | |
<option name="OPEN_IN_BROWSER" value="true" /> | |
</component> | |
<component name="ProjectModuleManager"> | |
<modules> | |
<module fileurl="file://$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.iml" filepath="$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.iml" /> | |
<module fileurl="file://$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.api.iml" filepath="$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.api.iml" /> | |
<module fileurl="file://$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.main.iml" filepath="$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.main.iml" /> | |
<module fileurl="file://$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.test.iml" filepath="$PROJECT_DIR$/com.yourname.modid.Labymod_Razer_Module.test.iml" /> | |
</modules> | |
</component> | |
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" project-jdk-name="1.8" project-jdk-type="JavaSDK"> | |
<output url="file://$PROJECT_DIR$/out" /> | |
</component> | |
<component name="SvnBranchConfigurationManager"> | |
<option name="mySupportsUserInfoFilter" value="true" /> | |
</component> | |
<component name="libraryTable"> | |
<library name="Gradle: com.google.code.findbugs:jsr305:2.0.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/2.0.1/516c03b21d50a644d538de0f0369c620989cd8f0/jsr305-2.0.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: com.google.code.gson:gson:2.2.4"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/edf793f307583c05c23d2bff956e1a10ead8702c/gson-2.2.4-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a6dc5db8a12928e583bd3f23e72d3ab611ecd58f/gson-2.2.4-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.google.guava:guava:17.0"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/18a375325d213ba5ae90706790fbbb3fd51b9a01/guava-17.0-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/7ca0efbeb87ca845b5d7a0ac9c21a4b7b95f7b28/guava-17.0-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.ibm.icu:icu4j-core-mojang:51.2"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/814397ccbafff1132758e551c37396c528d7f2d7/icu4j-core-mojang-51.2-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.mojang:authlib:1.5.21"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.21/aefba0d5b53fbcb70860bc8046ab95d5854c07a5/authlib-1.5.21.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.21/f382946bdf3a377761a0efe96f7c1f1fe0fef718/authlib-1.5.21-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.mojang:netty:1.6"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/4b75825a06139752bd800d9e29c5fd55b8b1b1e4/netty-1.6.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/cd01cc3788bac1b1eb9cf2cda02fc7698a5ca1cc/netty-1.6-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.mojang:realms:1.7.59"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.7.59/9c6c59b742d8e038a15f64c1aa273a893a658424/realms-1.7.59.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: com.paulscode:codecjorbis:20101023"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/4ca2436396bc14ebd78b7db1d4e11ca607c8705e/codecjorbis-20101023-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.paulscode:codecwav:20101023"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/71ec00b9b9c1a6a2c3a8a25f481a23ddb5b21ddb/codecwav-20101023-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.paulscode:libraryjavasound:20101123"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/945ff5711de27751cf699641d1ea316ba6cf7589/libraryjavasound-20101123-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.paulscode:librarylwjglopenal:20100824"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/ecfc8dac1d41bef748997e4edf563d486923ee1e/librarylwjglopenal-20100824-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.paulscode:soundsystem:20120107"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/1b9f4eb11ef11fede7fd76a2e5e8203c2a8adcd/soundsystem-20120107-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.typesafe.akka:akka-actor_2.11:2.3.3"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/d81a273b777f369b260b031f99bac327aff69281/akka-actor_2.11-2.3.3-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/9dbceb71c4fd943b4eb4607847261075a989d47f/akka-actor_2.11-2.3.3-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: com.typesafe:config:1.2.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/855ac28cc00935e194ae6809828fc2397ecf8ace/config-1.2.1-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/bdacf4f82ce9b29cd474bfde2e91eeb0ca623d28/config-1.2.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: commons-codec:commons-codec:1.9"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/d103169e712eb2473072d53636b0c3bc380b8afb/commons-codec-1.9-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/3f15fff45d57656685abfee9e8302bf14580044c/commons-codec-1.9-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: commons-io:commons-io:2.4"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/3b5b0183c509963d5ffdf0d9d452a4a7521aeaa3/commons-io-2.4-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/f2d8698c46d1167ff24b06a840a87d91a02db891/commons-io-2.4-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: commons-logging:commons-logging:1.1.3"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/8a9805acc4e492afb6a400b6e32cfd98ed263caa/commons-logging-1.1.3-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/28bb0405fddaf04f15058fbfbe01fe2780d7d3b6/commons-logging-1.1.3-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: io.netty:netty-all:4.0.23.Final"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/35e392a44218cd37a03fa52327345f81bc28019/netty-all-4.0.23.Final-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/fd8e5b2341f3a08b02fe116d6e9886654e65b219/netty-all-4.0.23.Final-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: java3d:vecmath:1.5.2"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/42442b23189fbef9353c1751055610b63dd57e85/vecmath-1.5.2-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: jline:jline:2.13"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/77f395bce7cad8f3da6f6f3526d1923e8ea35942/jline-2.13-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/e290282bf7683ae3307e85bdc5d5e08424dfb893/jline-2.13-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: lzma:lzma:0.0.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: net.java.dev.jna:jna:3.4.0"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/69707b8db1f5b46b23536f04e58468fbd159e7c0/jna-3.4.0-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/2f42653596d0044f0ab456620cba54c9cf53c5ca/jna-3.4.0-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: net.java.dev.jna:platform:3.4.0"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/805360594738e77e7da892f7f6ea563ab246c586/platform-3.4.0-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/2f42653596d0044f0ab456620cba54c9cf53c5ca/platform-3.4.0-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: net.java.jinput:jinput-platform:natives-linux:2.0.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: net.java.jinput:jinput-platform:natives-osx:2.0.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: net.java.jinput:jinput-platform:natives-windows:2.0.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: net.java.jinput:jinput:2.0.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/695a26a9a58e8495c1e3ce7b7f3bec23ecf2ef16/jinput-2.0.5-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/82604cfeb87b9ab70ed70aa19a137de8ceb21504/jinput-2.0.5-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: net.java.jutils:jutils:1.0.0"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/1ad2673c8dded38030ed77ba393b0253051bb768/jutils-1.0.0-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/d18678a00b216863206a1bb6190507e02a32971b/jutils-1.0.0-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: net.minecraft:launchwrapper:1.12"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/fd80cad9a1b967ce2ff20529dc54e520d5338d7/launchwrapper-1.12-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: net.sf.jopt-simple:jopt-simple:4.6"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/a9984639bd484c54c81e978b694420677a7b79cd/jopt-simple-4.6-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/9cd14a61d7aa7d554f251ef285a6f2c65caf7b65/jopt-simple-4.6-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: net.sf.trove4j:trove4j:3.0.3"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/dc5c824f98a9bf2e20a2ccfff83e71be2040cc7d/trove4j-3.0.3-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/109c5be93362e6e651e417c51d1863477a22969c/trove4j-3.0.3-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.apache.commons:commons-compress:1.8.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/8e9724537be2a09287d7483c6b4a0c9a0bddf944/commons-compress-1.8.1-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/3caea4421428752206c7a94c3e3097f0c47f1bb8/commons-compress-1.8.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.apache.commons:commons-lang3:3.3.2"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/43ffe692648166363bceadc63ac76c7d19b4ebd7/commons-lang3-3.3.2-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/d2a489573c0ed2c4942b3660decad5d65087b406/commons-lang3-3.3.2-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.apache.httpcomponents:httpclient:4.3.3"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/81ad2c81206a9aaba4c3337902fc60e1d80b686d/httpclient-4.3.3-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/65cba03c4f6207f2885f88206fcf52c53f8d111b/httpclient-4.3.3-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.apache.httpcomponents:httpcore:4.3.2"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/37b4a5362830a9b29e68f1a1d179f3aa544fb623/httpcore-4.3.2-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/4809f38359edeea9487f747e09aa58ec8d3a54c5/httpcore-4.3.2-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.apache.logging.log4j:log4j-api:2.0-beta9"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/204e63d075caf4035707a92bab186517e2b28bab/log4j-api-2.0-beta9-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/c6682b8a47ddd9f29108838aed0dc8e0ffdedf68/log4j-api-2.0-beta9-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.apache.logging.log4j:log4j-core:2.0-beta9"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/df430ccb0bc8a29128ff8262bff145176d55edb1/log4j-core-2.0-beta9-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/c7da50fd52d6ee6991a0e16e2df1431f7656a7f4/log4j-core-2.0-beta9-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.fusesource.jansi:jansi:1.11"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/b27814181cfd1b1c22ea6a287aeace376c53ffa7/jansi-1.11-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/2f0e4b53b6b0eec426dad7118bf54b3deb58000b/jansi-1.11-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-linux:2.9.4-nightly-20150209"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-osx:2.9.4-nightly-20150209"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: org.lwjgl.lwjgl:lwjgl-platform:natives-windows:2.9.4-nightly-20150209"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: org.lwjgl.lwjgl:lwjgl:2.9.4-nightly-20150209"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/da903f6e4b2174d415cf6c8c5ea21b2b5f990a4/lwjgl-2.9.4-nightly-20150209-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/7da2cff65127b558a66e8e38456174161723d3a7/lwjgl-2.9.4-nightly-20150209-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.lwjgl.lwjgl:lwjgl_util:2.9.4-nightly-20150209"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/8745139bfa975ef5d79576d0fc59521d776902f4/lwjgl_util-2.9.4-nightly-20150209-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/2e3787f55c68a245e994f88755795b3a7684b3/lwjgl_util-2.9.4-nightly-20150209-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.ow2.asm:asm-debug-all:5.0.3"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/c87547fa477f7dc22c5e3c5ddfc6dfac726e5b15/asm-debug-all-5.0.3-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f0f24f6666c1a15c7e202e91610476bd4ce59368/asm-debug-all-5.0.3-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang.modules:scala-parser-combinators_2.11:1.0.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/1078474ef0f67e27e5c53bfbe404c2a99fadaf6f/scala-parser-combinators_2.11-1.0.1-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/34d013c02d0b73794ba2911552896dd9c00f34c3/scala-parser-combinators_2.11-1.0.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang.modules:scala-swing_2.11:1.0.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/205c7295348ced192a726fcedd0b40cfa45da2ee/scala-swing_2.11-1.0.1-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/d4bda4281db2ec74b105c5acf2326d160b79164e/scala-swing_2.11-1.0.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang.modules:scala-xml_2.11:1.0.2"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/a06d053a9d8ccf4518b0db56c66abea9f47fee7c/scala-xml_2.11-1.0.2-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/312c3557d1ca0b34820f3b3fc5404a47936ceb26/scala-xml_2.11-1.0.2-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang.plugins:scala-continuations-library_2.11:1.0.2"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/5f0bb62bfd94ee7854f8f627e92c621f7f31e284/scala-continuations-library_2.11-1.0.2-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/495afc106eeaa1b3367f6be0bc3768c398e4d360/scala-continuations-library_2.11-1.0.2-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang.plugins:scala-continuations-plugin_2.11.1:1.0.2"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/16960d5491945a59d05cb5175e5cf558b38a1429/scala-continuations-plugin_2.11.1-1.0.2-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/c6f3c092ab731f3cf83fdb376ebc465a243c1f4c/scala-continuations-plugin_2.11.1-1.0.2-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang:scala-actors-migration_2.11:1.1.0"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/2d7a5d0f4b3fba0fa95311cabd66e3dc2efbb8c8/scala-actors-migration_2.11-1.1.0-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/6bccac72dae4d369537e313d12087c1ca295e84f/scala-actors-migration_2.11-1.1.0-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang:scala-actors:2.11.0"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/c07dbf25e7e3b78fb9adbd9c790662b06caef931/scala-actors-2.11.0-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/e1dfa274766d5278166b0d660294fe96396693b2/scala-actors-2.11.0-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang:scala-compiler:2.11.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/51ae4b6c6d782c52a20cf1386fcbfa7491c1d26d/scala-compiler-2.11.1-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/b031d401aabbf7f5f725db500575da3dff90065f/scala-compiler-2.11.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang:scala-library:2.11.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/319900df0d487b36d5b41e1459e37bc270ba8328/scala-library-2.11.1-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/8355e4b6841f772a287167666bad6e9860ac4d3c/scala-library-2.11.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: org.scala-lang:scala-reflect:2.11.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/96f9e99e677be9d3f6f41e6fb2a66b329309ffa7/scala-reflect-2.11.1-javadoc.jar!/" /> | |
</JAVADOC> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/d4c5628e197a0d6af8e9b93a9be32190c547bc8a/scala-reflect-2.11.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: oshi-project:oshi-core:1.1"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/1ec1ab1e6ac5a1572edfd0dd9ac95e83684b8a65/oshi-core-1.1-sources.jar!/" /> | |
</SOURCES> | |
</library> | |
<library name="Gradle: tv.twitch:twitch-external-platform:natives-windows-32:4.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: tv.twitch:twitch-external-platform:natives-windows-64:4.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: tv.twitch:twitch-platform:natives-osx:6.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/5f9d1ee26257b3a33f0ca06fed335ef462af659f/twitch-platform-6.5-natives-osx.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: tv.twitch:twitch-platform:natives-windows-32:6.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/206c4ccaecdbcfd2a1631150c69a97bbc9c20c11/twitch-platform-6.5-natives-windows-32.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: tv.twitch:twitch-platform:natives-windows-64:6.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/9fdd0fd5aed0817063dcf95b69349a171f447ebd/twitch-platform-6.5-natives-windows-64.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
<library name="Gradle: tv.twitch:twitch:6.5"> | |
<CLASSES> | |
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/6.5/320a2dfd18513a5f41b4e75729df684488cbd925/twitch-6.5.jar!/" /> | |
</CLASSES> | |
<JAVADOC /> | |
<SOURCES /> | |
</library> | |
</component> | |
<component name="masterDetails"> | |
<states> | |
<state key="ArtifactsStructureConfigurable.UI"> | |
<UIState> | |
<splitter-proportions> | |
<SplitterProportionsDataImpl /> | |
</splitter-proportions> | |
<settings /> | |
</UIState> | |
</state> | |
<state key="Copyright.UI"> | |
<UIState> | |
<splitter-proportions> | |
<SplitterProportionsDataImpl /> | |
</splitter-proportions> | |
</UIState> | |
</state> | |
<state key="ProjectJDKs.UI"> | |
<UIState> | |
<splitter-proportions> | |
<SplitterProportionsDataImpl> | |
<option name="proportions"> | |
<list> | |
<option value="0.2" /> | |
</list> | |
</option> | |
</SplitterProportionsDataImpl> | |
</splitter-proportions> | |
<last-edited>1.6</last-edited> | |
</UIState> | |
</state> | |
<state key="ScopeChooserConfigurable.UI"> | |
<UIState> | |
<splitter-proportions> | |
<SplitterProportionsDataImpl /> | |
</splitter-proportions> | |
<settings /> | |
</UIState> | |
</state> | |
</states> | |
</component> | |
</project> |
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
package com.example.chroma; | |
import net.labymod.api.LabyModAddon; | |
import net.labymod.settings.elements.SettingsElement; | |
import java.util.List; | |
public class chroma extends LabyModAddon { | |
@Override | |
public void onEnable() { | |
} | |
@Override | |
public void onDisable() { | |
} | |
@Override | |
public void loadConfig() { | |
} | |
@Override | |
protected void fillSettings(List<SettingsElement> list) { | |
} | |
} |
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
{ | |
"uuid": "%uuid%", | |
"name": "Luna", | |
"mainClass": "com.example.chroma", | |
"description": "Razer Addon by JustSweetLuna", | |
"version": 1, | |
"author": "JustSweetLuna", | |
"category": 2, | |
"icon": "http://chittagongit.com//images/razer-icon/razer-icon-9.jpg" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment