summary refs log tree commit diff stats
path: root/build.gradle
blob: 65f0e77bcc812c4b74cafb2fe3d71b7267b94fce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
buildscript {
	repositories {
		jcenter()
		maven {
			name = 'Fabric'
			url = 'http://maven.modmuss50.me/'
		}
	}
	dependencies {
		classpath "net.fabricmc:fabric-loom:0.0.13-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 {
}

dependencies {
	minecraft "com.mojang:minecraft:18w48b"
	mappings "net.fabricmc:pomf:18w48b.4"
	modCompile "net.fabricmc:fabric-loader:0.1.0.48"
}