-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbuild.gradle
More file actions
158 lines (138 loc) · 4.12 KB
/
build.gradle
File metadata and controls
158 lines (138 loc) · 4.12 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
buildscript {
repositories {
mavenCentral()
maven {
name = 'forge'
url = 'http://files.minecraftforge.net/maven'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
}
}
repositories {
mavenCentral()
}
apply plugin: 'maven'
apply plugin: 'forge'
apply plugin: 'eclipse'
def number = '3.0.0.5'
def release = 'beta'
def mcversion = '1.8'
def forge = '11.14.1.1334'
def map = 'snapshot_20150302'
def mc = mcversion + '-' + forge
def pack = 'library'
def github = 'SlimevoidLibrary'
version = number + '-' + release + '-' + mcversion
group = 'net.slimevoid'
archivesBaseName = 'SlimevoidLibrary'
dependencies {
compile 'net.sourceforge.argo:argo:3.10'
}
minecraft {
version = mc
mappings = map
if (file('../run').exists()) {
runDir = "../run"
} else {
runDir = "run"
}
replaceIn 'net/slimevoid/' + pack + '/core/lib/CoreLib.java'
replace '@VERSION@', project.version
replace 'MOD_DEPENDENCIES', 'BLANK_DEPENDENCIES'
replace 'ACTUAL_DEPENDENCIES ', 'MOD_DEPENDENCIES'
replace '@FORGEVERSION@', forge
}
processResources {
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
sourceSets {
main {
output.resourcesDir = output.classesDir
}
}
task sourceJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'dev'
}
build.dependsOn sourceJar,deobfJar
configurations {
deployJars
}
dependencies {
deployJars 'org.apache.maven.wagon:wagon-ssh:2.2'
}
artifacts {
archives sourceJar
archives deobfJar
}
uploadArchives {
dependsOn 'reobf'
repositories.mavenDeployer {
configuration = configurations.deployJars
if (project.hasProperty("slimevoidUsername")) {
repository(url: 'scp://hyda.slimevoid.net/home/maven/www/repos') {
authentication(userName: slimevoidUsername, password: slimevoidPassword)
}
} else {
repository(url: 'file://localhost/' + project.file('build/repo').getAbsolutePath())
}
pom {
groupId = project.group
version = project.version
artifactId = project.archivesBaseName
}
pom.project {
name project.archivesBaseName
packaging 'jar'
description archivesBaseName
url 'https://github.com/Slimevoid/' + github
scm {
url 'https://github.com/Slimevoid/' + github
connection 'scm:git:git://github.com/Slimevoid/' + github + '.git'
developerConnection 'scm:git:git@Slimevoid/' + github + '.git'
}
issueManagement {
system 'github'
url 'https://github.com/Slimevoid/' + github + '/issues'
}
licenses {
license {
name 'Lesser General Public Licence'
url 'https://raw.github.com/Slimevoid/' + github + '/master/LICENSE'
distribution 'repo'
}
}
developers {
developer {
id 'Eurymachus'
name 'Eurymachus'
roles { role 'developer' }
}
developer {
id 'Slimevoid'
name 'Slimevoid Dev Team'
roles { role 'developer' }
}
}
}
}
}