forked from LandOfRails/LandOfSignals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (33 loc) · 796 Bytes
/
build.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
buildscript {
repositories {
jcenter()
maven { url = 'https://teamopenindustry.cc/maven/' }
}
dependencies {
classpath 'cam72cam.universalmodcore:UniversalModCoreGradle:0.1.3'
}
}
apply plugin: 'cam72cam.universalmodcore'
apply plugin: 'maven'
String version = '0.0.3'
universalmodcore {
modPackage = 'net.landofrails.landofsignals'
modClass = 'LandOfSignals'
modName = 'LandOfSignals'
modId = 'landofsignals'
modVersion = version
umcVersion = '1.0.1'
}
task('umcIntegration') {
doLast {
String umcLoader = System.getProperty("umc.loader")
}
}
umc.finalizedBy umcIntegration
if ((new File('umc.gradle')).exists()) {
apply from: 'umc.gradle'
}
task deployJar(type: Jar)
configurations {
deployerJars
}