This repository has been archived by the owner on Jun 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
186 lines (156 loc) · 5.15 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
import java.util.zip.ZipFile
import java.util.zip.ZipEntry
apply plugin: 'java'
apply plugin:'application'
apply plugin:'wrapper'
defaultTasks 'build'
test.enabled = false
run.enabled = false
sourceCompatibility = 1.6
def ekName = 'Espresso Karol'
def licenseHint = """Copyright (C) 2013, Johannes Rosenberger <[email protected]>
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
OF SUCH DAMAGE.
For more details please read the 'LICENSE' file."""
version = ""
task stable << {
def versionProc = 'git tag'.execute()
versionProc.waitFor()
def versions = versionProc.in.text
if (versions != null && ! versions.isEmpty()) {
version = versions.split('\\n').reverse()[0].trim()
} else {
System.err.println 'No stable version available!'
System.exit(1)
}
}
if (version == "") {
def commit = 'git log -1 --pretty=oneline'.execute().in.text.split('\\s')[0]
def versionProc = "git tag --contains ${commit}".execute()
versionProc.waitFor()
def versions = versionProc.in.text
if (versionProc.exitValue() == 0 && ! versions.isEmpty()) {
version = versions.split('\\n').reverse()[0].trim()
} else {
version = "${commit}git"
}
}
mainClassName = 'javakarol.espresso.EspressoKarol'
applicationName = "espresso"
jar {
manifest {
attributes 'Implementation-Title': ekName, 'Implementation-Version': version
}
}
def flatDeps = [ 'sdreams':['name':'sdreams', 'version':'j1.6-v0.1'],
'eproperties':['name':'eproperties', 'version':'1.1.5'],
'javakarol':['name':'javakarol', 'version':'1.1']
]
[
['name':'sdreams', 'url':"https://github.com/jorsn/sdreams/releases/download/v0.1/", 'file':"sdreams-${flatDeps.sdreams.version}.jar"],
['name':'eproperties', 'url':'http://eproperties.googlecode.com/files/', 'file':"eproperties-${flatDeps.eproperties.version}.jar"],
['name':'javakarol', 'url':'http://www.schule.bayern.de/karol/data/', 'file':"javakarol.zip"]
].each { map ->
flatDeps["${map.name}"]['url'] = map.url
flatDeps["${map.name}"]['file'] = map.file
}
task dirs {
outputs.dir 'lib'
doLast {
mkdir('lib')
}
}
task dlFlatDeps(dependsOn: dirs) {
outputs.files(flatDeps.values().collect { dep -> "lib/${dep.file}" })
doLast {
flatDeps.values().each { flatDep ->
def of = new File("lib/${flatDep.file}").withOutputStream { out -> out.leftShift "${flatDep.url + flatDep.file}".toURL().openStream() }
if (flatDep.name == 'javakarol') { // unzip -f javakarol.zip javakarol.jar -d lib
def karolzip = zipTree("lib/${flatDep.file}")
def karoljar = flatDep.file.replace(".zip", '.jar')
copy {
from(karolzip) {
include karoljar
}
into("lib/")
}
}
}
}
}
compileJava.dependsOn dlFlatDeps
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
compile group: 'de.sciss', name: 'jsyntaxpane', version: '1.0.0'
compile group: 'com.googlecode.juniversalchardet', name: 'juniversalchardet', version: '1.0.3'
compile group: 'commons-logging', name: 'commons-logging', version: '1.1.1'
compile group: 'org.eclipse.jdt.core.compiler', name: 'ecj', version: '4.2.2+'
flatDeps.values().each { flatDep ->
compile name: flatDep.name, version: flatDep.version
}
runtime files("lib/${flatDeps.javakarol.file}")
}
String toJava(String string) {
return '\"' + string.replace('\"', '\\\"').replaceAll('\\n', '\\\\n\"\n+ \"') + '\"'
}
def settingsPath = "src/main/java/javakarol/espresso/Settings.java"
compileJava.doFirst {
def inf = new File("${settingsPath}.templ")
def settingsTempl = inf.getText("UTF-8")
def settingsCode = settingsTempl\
.replace('__EK_VERSION__', toJava(version))\
.replace('__EK_NAME__', toJava(ekName))\
.replace('__EK_LICENSE_HINT__', toJava(licenseHint))
def outf = new File(settingsPath)
outf.write(settingsCode, "UTF-8")
}
task createDocs {
def docs = file("$buildDir/docs")
outputs.dir docs
doLast {
docs.mkdirs()
new File(docs, "readme.txt").write("Read me!")
}
}
applicationDistribution.from('README.md') { into "" }
applicationDistribution.from('LICENSE') { into "" }
distTar.compression = Compression.BZIP2
task addclean(type: Delete) {
delete(settingsPath)
}
compileJava.dependsOn addclean
clean.dependsOn addclean
task superclean(dependsOn: clean, type: Delete) {
delete('lib')
}
task mrpropper(dependsOn: superclean, type: Delete) {
delete('.gradle')
}
/*
test {
systemProperties 'property': 'value'
}
*/
/*
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
*/
// vim: ft=groovy