summary refs log tree commit diff stats
path: root/build.gradle
blob: 55bd3f8a40a7ed862b36607e0af88b3932bdc9d8 (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
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"
}