summary refs log tree commit diff stats
path: root/build.gradle
diff options
context:
space:
mode:
authorAdrian Siekierka <kontakt@asie.pl>2018-11-03 23:22:32 +0100
committerAdrian Siekierka <kontakt@asie.pl>2018-11-03 23:25:39 +0100
commitb755e01769401bc6ca1766a7fcc3806d6c5c86dd (patch)
treebbf264e92939cdbe1cccb51affe23f9c50b744f4 /build.gradle
first commit
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle36
1 files changed, 36 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..55bd3f8
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,36 @@
+buildscript {
+	repositories {
+		jcenter()
+		maven {
+			name = 'Fabric'
+			url = 'http://maven.modmuss50.me/'
+		}
+	}
+	dependencies {
+		classpath "net.fabricmc:fabric-loom:0.0.12-SNAPSHOT"
+	}
+}
+
+plugins {
+	id 'java'
+	id 'eclipse'
+	id 'idea'
+}
+
+apply plugin: net.fabricmc.loom.LoomGradlePlugin
+
+sourceCompatibility = 1.8
+targetCompatibility = 1.8
+
+archivesBaseName = "modid"
+version = "1.0.0"
+
+minecraft {
+	// You can find the latest versions on https://fabric.asie.pl/use/.
+	version = "18w44a"
+	pomfVersion = "27"
+	fabricVersion = "0.1.0.40"
+
+	// Optional. Remove if you're not using Mixins.
+	refmapName = "modid.refmap.json"
+}