-
Notifications
You must be signed in to change notification settings - Fork 211
/
build.gradle
277 lines (246 loc) · 7.14 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
* Steganography utility to hide messages into cover files
* Copyright (c) Samir Vaidya (mailto:syvaidya@gmail.com)
*/
import org.apache.tools.ant.filters.FixCrLfFilter
import org.apache.tools.ant.filters.ReplaceTokens
import org.apache.tools.ant.taskdefs.condition.Os
import java.text.SimpleDateFormat
plugins {
id 'java'
id 'jacoco'
id 'nebula.deb' version '8.4.1'
id 'nebula.rpm' version '8.4.1'
}
String projectName = 'OpenStego'
File distBaseDir = file("${buildDir}/${distsDirName}/package")
String currYear = new SimpleDateFormat('yyyy').format(new Date())
def filterTokens = [
'app.name' : projectName,
'app.version' : project.version,
'author.name' : project.author,
'author.mail' : project.authorMail,
'homepage.url': project.homepageUrl,
'time.year' : currYear
]
repositories {
mavenCentral()
}
sourceSets {
main {
java {
srcDir 'src/main/java'
exclude 'com/openstego/desktop/plugin/dctlsb/**'
exclude 'com/openstego/desktop/plugin/dwtkim/**'
exclude 'com/openstego/desktop/plugin/dwtxie/**'
exclude 'com/openstego/desktop/plugin/template/dct/**'
exclude 'com/openstego/desktop/util/dct/**'
}
resources {
exclude 'com/openstego/desktop/resource/i18n/DctLSB*'
exclude 'com/openstego/desktop/resource/i18n/DCTPlugin*'
exclude 'com/openstego/desktop/resource/i18n/DWTKim*'
exclude 'com/openstego/desktop/resource/i18n/DWTXie*'
exclude 'com/openstego/desktop/resource/i18n/*_ja.properties'
}
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testImplementation 'org.mockito:mockito-core:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
compileJava {
sourceCompatibility = '8'
targetCompatibility = '8'
}
processResources {
filesMatching('**/*.properties') {
filter(ReplaceTokens, tokens: filterTokens)
}
}
jar {
archiveFileName = 'openstego.jar'
manifest {
attributes([
'Name' : projectName,
'Main-Class' : 'com.openstego.desktop.OpenStego',
'Implementation-Version': project.version,
'Built-By' : project.author
])
}
}
test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn test
reports {
xml.required = false
csv.required = false
html.required = true
}
}
jacocoTestCoverageVerification {
dependsOn test
violationRules {
rule {
limit {
minimum = 0.9
}
}
}
}
javadoc {
title "${projectName} v${version}"
exclude 'com/openstego/desktop/plugin/**'
options.bottom "Copyright © 2007-${currYear} ${author}. All Rights Reserved."
options.links project.jdkDocsUrl
options.addStringOption('Xdoclint:none', '-quiet')
}
tasks.register("run", JavaExec) {
dependsOn jar
classpath = files(tasks.jar)
}
tasks.register("distBase", Copy) {
dependsOn jar
destinationDir = distBaseDir
from('.') {
include 'LICENSE'
}
from('src/main/dist') {
exclude '**/*.sh'
filesNotMatching('**/*.ico') {
filter(ReplaceTokens, tokens: filterTokens)
}
}
from('src/main/dist') {
include '**/*.sh'
filter(ReplaceTokens, tokens: filterTokens)
fileMode 0755
}
from(tasks.jar) {
into 'lib'
}
}
tasks.register("distBin", Zip) {
dependsOn distBase
from distBaseDir
into project.name + '-' + project.version
}
tasks.register("distWin", Exec) {
dependsOn distBase
onlyIf {
Os.isFamily(Os.FAMILY_WINDOWS)
}
doFirst {
copy {
from 'artifacts/installer.iss'
into "${buildDir}/generated"
filter(ReplaceTokens, tokens: [
'AppName' : projectName,
'AppVersion' : project.version,
'AuthorName' : project.author,
'HomepageUrl': project.homepageUrl,
'AppDir' : distBaseDir.path,
'DistDir' : project.buildDir.path + '\\distributions'
])
}
}
workingDir project.buildDir
commandLine 'cmd', '/c', 'iscc', 'generated\\installer.iss', '/Q'
}
tasks.register("distDeb", Deb) {
dependsOn distBase
packageName = project.name
summary = projectName
release = 1
packageGroup = 'utils'
maintainer = "${author} (${authorMail})"
url = project.homepageUrl
requires('default-jre').or('java8-runtime')
into '/usr/share'
from(distBaseDir) {
into project.name
include 'lib/**'
}
from(distBaseDir) {
into project.name
include 'openstego.sh'
rename('openstego.sh', 'openstego')
filter(FixCrLfFilter, eol: FixCrLfFilter.CrLf.newInstance('lf'))
fileMode 0755
}
from('artifacts') {
into 'applications'
include 'openstego.desktop'
filter(FixCrLfFilter, eol: FixCrLfFilter.CrLf.newInstance('lf'))
filter(ReplaceTokens, tokens: filterTokens)
}
from('artifacts') {
into 'icons/hicolor/scalable/apps'
include 'openstego.svg'
}
from(distBaseDir) {
into 'doc/' + project.name
include 'README'
}
from('artifacts') {
into 'doc/' + project.name
include 'copyright'
filter(FixCrLfFilter, eol: FixCrLfFilter.CrLf.newInstance('lf'))
filter(ReplaceTokens, tokens: filterTokens)
}
link('/usr/bin/openstego', '/usr/share/openstego/openstego')
}
tasks.register("distRpm", Rpm) {
dependsOn distBase
packageName = project.name
summary = projectName
release = 1
packageGroup = 'utils'
packager = "${author} (${authorMail})"
url = project.homepageUrl
user = 'root'
license = 'GPLv2'
buildHost = ''
os = LINUX
requires('java', '1.8', GREATER | EQUAL)
into '/usr/share'
from(distBaseDir) {
into project.name
include 'lib/**'
}
from(distBaseDir) {
into project.name
include 'openstego.sh'
rename('openstego.sh', 'openstego')
filter(FixCrLfFilter, eol: FixCrLfFilter.CrLf.newInstance('lf'))
fileMode 0755
}
from('artifacts') {
into 'applications'
addParentDirs false
include 'openstego.desktop'
filter(FixCrLfFilter, eol: FixCrLfFilter.CrLf.newInstance('lf'))
filter(ReplaceTokens, tokens: filterTokens)
}
from('artifacts') {
into 'icons/hicolor/scalable/apps'
addParentDirs false
include 'openstego.svg'
}
from(distBaseDir) {
into 'doc/' + project.name
addParentDirs false
include 'LICENSE'
include 'README'
filter(FixCrLfFilter, eol: FixCrLfFilter.CrLf.newInstance('lf'))
}
link('/usr/bin/openstego', '/usr/share/openstego/openstego')
}
tasks.register("dist") {
dependsOn distBin, distWin, distDeb, distRpm
}