-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.gradle
52 lines (39 loc) · 919 Bytes
/
project.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
46
47
48
49
50
51
52
// See https://github.com/elytra/Skeleton/wiki for what all these values mean
ext {
group = 'com.unascribed'
projectName = 'PopcornSmelting'
useElytraVersionFormat = true
version = '1'
concreteVersion = '0.4.34'
concreteModules = [ ]
coremod = null
miniVersion = null
language = 'java'
forge = '1.12.2-14.23.5.2769'
mappings = 'snapshot_20180814'
enforceLicenseHeaders = false
verbose = false
}
if (!ext.early) {
repositories {
// the skeleton already defines mavenCentral, jcenter, and the Elytra repo
// will also have Shadowfacts' maven if the language is set to kotlin
maven {
url "http://maven.blamejared.com/"
}
maven {
url = 'https://dvs1.progwml6.com/files/maven'
}
}
dependencies {
compile 'CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.0.12.323'
compile 'mezz.jei:jei_1.12.2:4.9.1.189'
}
jar {
manifest {
attributes (
'FMLAT': 'popcornsmelting_at.cfg'
)
}
}
}