-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.gradle
57 lines (45 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
55
56
57
ext {
modid = 'athenaeum'
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")
]
]
}
repositories {
mavenCentral()
maven {
// JEI
url 'http://dvs1.progwml6.com/files/maven'
}
maven {
// CraftTweaker
url 'http://maven.blamejared.com/'
}
flatDir {
dirs 'libs'
}
}
dependencies {
deobfCompile 'CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.1.20.698'
deobfCompile 'CraftTweaker2:CraftTweaker2-API:4.1.20.698'
deobfCompile 'CraftTweaker2:ZenScript:4.1.20.698'
deobfCompile 'mezz.jei:jei_1.12.2:4.16.1.1012'
compile files('Bookshelf-1.12.2-2.3.590.jar')
compile files('GameStages-1.12.2-2.0.123.jar')
testCompile 'junit:junit:4.12'
}