-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (37 loc) · 1.01 KB
/
build.gradle
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
37
38
39
40
41
42
43
44
45
buildscript {
repositories {
maven { url = 'https://files.minecraftforge.net/maven' }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:3.+'
}
}
plugins {
id 'org.spongepowered.plugin' version '0.9.0'
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'java'
apply plugin: 'java-library'
repositories {
maven {
name 'CurseMaven'
url 'https://www.cursemaven.com'
content {
includeGroup 'curse.maven'
}
}
}
minecraft {
mappings channel: 'stable', version: '39-1.12'
}
dependencies {
api 'org.spongepowered:spongeapi:7.3.0'
annotationProcessor 'org.spongepowered:spongeapi:7.3.0'
api 'curse.maven:mekanismapi-268560:2835176'
api 'curse.maven:immersiveengineering-231951:2974106'
minecraft 'net.minecraftforge:forge:1.12.2-14.23.5.2854'
}
// This may not be required, but has solved issues in the past
compileJava.options.encoding = 'UTF-8'
group = 'tv.voidstar.powersink'
jar.finalizedBy("reobfJar")