apply plugin: 'java' apply plugin: 'application' group = 'minecraft' version = '1.2.5' compileJava { sourceCompatibility = targetCompatibility = 1.8 options.encoding = 'UTF-8' } application { mainClassName = 'Start' } run { workingDir = new File(buildDir, 'run') if (!workingDir.exists()) { workingDir.mkdir() } systemProperty 'java.library.path', file("$projectDir/natives/windows") } repositories { flatDir { dirs '../libs' } } dependencies { compile name: 'jinput' compile name: 'lwjgl' compile name: 'lwjgl_util' compile name: 'paulscode' }