This repository has been archived by the owner on Feb 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
build.gradle
97 lines (83 loc) · 2.42 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Define properties file
ext.configFile = file "build.properties"
configFile.withReader {
// Load config.
def prop = new Properties()
prop.load(it)
project.ext.config = new ConfigSlurper().parse prop
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'maven'
apply plugin: 'com.jfrog.bintray'
apply from: 'gradle/scripts/dependencies.gradle'
apply from: 'gradle/scripts/artifacts.gradle'
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
name = "ForgeFS"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
}
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
version = "${config.mc_version}-${config.mod_version}"
if (System.getenv('TRAVIS_BUILD_NUMBER') != null) {
version += "-build-" + System.getenv('TRAVIS_BUILD_NUMBER')
}
def getDate() {
def date = new Date()
def formattedDate = date.format('dd.MM.yyyy')
return formattedDate
}
group= "${config.mo_group}"
archivesBaseName = "${config.mo_base_name}"
minecraft {
version = config.mc_version + "-" + config.forge_version
runDir = "run"
mappings = config.mcp_mappings
makeObfSourceJar = false
replaceIn "Reference.java"
replace "@VERSION@", config.mod_version
replace "@DATE@", getDate()
}
processResources {
inputs.property "version", config.mod_version
inputs.property "mcversion", config.mc_version
from (sourceSets.main.resources.srcDirs) {
include "mcmod.info"
expand "version": config.mod_version, "mcversion": config.mc_version
}
from (sourceSets.main.resources.srcDirs) {
exclude "mcmod.info"
}
}
bintray {
user = 'simeonradivoev'
key = System.getenv('BINTRAY_KEY')
pkg {
repo = 'MatterOverdrive'
name = 'mo'
userOrg = 'simeonradivoev'
version {
name = config.mc_version + '-' + config.mod_version
released = new Date()
desc = System.getenv('TRAVIS_COMMIT')
}
filesSpec {
from 'build/libs'
into 'builds'
}
publish = true
}
}