Asbestos/build.gradle

36 lines
561 B
Groovy
Raw Normal View History

2018-11-03 22:22:32 +00:00
buildscript {
repositories {
jcenter()
maven {
name = 'Fabric'
url = 'http://maven.modmuss50.me/'
}
}
dependencies {
2018-11-06 09:51:23 +00:00
classpath "net.fabricmc:fabric-loom:0.0.13-SNAPSHOT"
2018-11-03 22:22:32 +00:00
}
}
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 {
2018-11-06 09:51:23 +00:00
}
2018-11-03 22:22:32 +00:00
2018-11-06 09:51:23 +00:00
dependencies {
minecraft "com.mojang:minecraft:18w44a"
mappings "net.fabricmc:pomf:18w44a.38"
modCompile "net.fabricmc:fabric-loader:18w44a-0.1.0.43"
2018-11-03 22:22:32 +00:00
}