-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.gradle
48 lines (37 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
// See https://github.com/elytra/Skeleton/wiki for what all these values mean
ext {
group = 'com.elytradev'
projectName = 'capentrycubes'
useElytraVersionFormat = true
version = '0'
concreteVersion = '0.3.3-SNAPSHOT'
concreteModules = ['all']
coremod = null
miniVersion = null
language = 'java'
forge = '1.12.2-14.23.4.2747'
mappings = 'snapshot_20180801'
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 {
// location of the maven that hosts JEI files
name = "Progwml6 maven"
url = "http://dvs1.progwml6.com/files/maven"
}
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "modmaven.k-4u.nl"
}
}
dependencies {
deobfCompile "com.elytradev:probedataproviderapi:MC1.12_ver1.1.1"
deobfProvided "mezz.jei:jei_1.12.2:4.7.10.98:api"
runtime "mezz.jei:jei_1.12.2:4.7.10.98"
}
}