-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (37 loc) · 808 Bytes
/
build.gradle
File metadata and controls
45 lines (37 loc) · 808 Bytes
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 {
name = 'forge'
url = 'http://files.minecraftforge.net/maven'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
}
}
plugins {
id 'org.spongepowered.plugin' version '0.8.1'
id 'net.minecrell.vanillagradle.server' version '2.2-6'
id 'maven'
}
group = 'eu.crushedpixel.sponge'
version = '0.1.2'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile 'org.spongepowered:spongeapi:7.1.0'
}
minecraft {
version = '1.12.2'
mappings = 'snapshot_20180131'
makeObfSourceJar = false
}
jar {
manifest.attributes(
'FMLAT': 'packetgate_at.cfg',
'ForceLoadAsMod': true
)
}
install {
dependsOn ':reobfJar'
}