Skip to content

Instantly share code, notes, and snippets.

View RX14's full-sized avatar

Stephanie Wilde-Hobbs RX14

View GitHub Profile
@RX14
RX14 / build.gradle
Last active August 29, 2015 14:26 — forked from Caellian/build.gradle
Cuchaz m3l build script
import groovy.json.JsonSlurper
import java.nio.file.Files
//Project data
String minecraftVersion = "1.8.3",
dirLib = "lib",
dirNatives = "natives/${minecraftVersion}"
//Minecraft data
@RX14
RX14 / build.gradle
Last active August 29, 2015 14:22 — forked from anonymous/build.gradle
plugins {
id "java" //or scala or groovy
id "nova.gradle" version "0.1.0-SNPASHOT"
}
dependencies {
compile "nova.core:NovaCore:0.1.0-SNPASHOT"
compile //Some nova plugin
}