-
Notifications
You must be signed in to change notification settings - Fork 20
/
project.gradle
54 lines (44 loc) · 1.19 KB
/
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
53
54
ext {
modid = 'pyrotech'
forge = [
version: '1.12.2-14.23.5.2847'
]
mappings = [
channel: 'snapshot',
version: 'snapshot_20171003'
]
manifest = [
attributesEnabled: false,
attributes: [
'Specification-Title': 'examplemod',
'Specification-Vendor': 'examplemodsareus',
'Specification-Version': '1', // We are version 1 of ourselves
'Implementation-Title': project.name,
'Implementation-Version': "${version}",
'Implementation-Vendor' :'examplemodsareus',
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
]
]
replace = [
'required-after:dropt;': 'required-after:dropt@[1.12.2-1.12.0,);',
'required-after:athenaeum;': 'required-after:athenaeum@[1.12.2-1.19.5,);'
]
}
repositories {
// patchouli
maven { url 'https://maven.blamejared.com' }
maven { // TOP
name 'tterrag maven'
url "http://maven.tterrag.com/"
}
flatDir {
dirs 'libs'
}
}
dependencies {
compile project(":athenaeum")
compile project(":dropt")
compile files('Hwyla-1.8.26-B41_1.12.2.jar')
deobfCompile "mcjty.theoneprobe:TheOneProbe-1.12:1.12-1.4.28-17"
compile "vazkii.patchouli:Patchouli:1.0-20.108"
}