-
Notifications
You must be signed in to change notification settings - Fork 23
/
projectDependencies.gradle
330 lines (262 loc) · 8.97 KB
/
projectDependencies.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
apply from: 'dependencyDefinitions.gradle'
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
}
project(':sulky-io') {
archivesBaseName = 'de.huxhorn.sulky.io'
description = 'This file is part of the sulky modules. It\'s supposed to contain classes I\'d like to see in commons-io. At the moment it only contains a TimeoutOutputStream that throws an IOException if a certain timeout is exceeded.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
testImplementation libraries.'easymock'
}
}
project(':sulky-generics') {
archivesBaseName = 'de.huxhorn.sulky.generics'
description = 'This file is part of the sulky modules. It contains several interfaces that use generics. There\'s a general definition of Serializer/Deserializer and a simple implementation using object serialization.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
}
}
project(':sulky-junit') {
archivesBaseName = 'de.huxhorn.sulky.junit'
description = 'This file is part of the sulky modules. It contains JUnit utilities.'
/*
logback-classic-1.2.3 jdeps failure
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
*/
dependencies {
implementation libraries.'junit'
implementation libraries.'logback-classic'
implementation libraries.'logback-core'
implementation libraries.'slf4j-api'
}
}
project(':sulky-version') {
archivesBaseName = 'de.huxhorn.sulky.version'
description = 'This file is part of the sulky modules. It contains java version handling stuff.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
testImplementation libraries.'commons-io'
}
}
project(':sulky-codec') {
archivesBaseName = 'de.huxhorn.sulky.codec'
description = 'This file is part of the sulky modules.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
}
}
project(':sulky-buffers') {
archivesBaseName = 'de.huxhorn.sulky.buffers'
description = 'This file is part of the sulky modules. It contains the definition of buffers, operations on buffers and certain buffer implementations.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
}
}
project(':sulky-codec-filebuffer') {
archivesBaseName = 'de.huxhorn.sulky.codec.filebuffer'
description = 'This file is part of the sulky modules. It contains a Codec-aware filebuffer.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
javadoc {
// disable doclint for protobuf
// http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html
// https://github.com/google/protobuf/issues/304
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
dependencies {
implementation libraries.'protobuf'
implementation libraries.'slf4j-api'
implementation project(':sulky-buffers')
implementation project(':sulky-codec')
}
}
project(':sulky-stax') {
archivesBaseName = 'de.huxhorn.sulky.stax'
description = 'This file is part of the sulky modules. It contains helper methods to simplify usage of StAX.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
}
}
project(':sulky-conditions') {
archivesBaseName = 'de.huxhorn.sulky.conditions'
description = 'This file is part of the sulky modules. It contains the definition of conditions and the implementation of some purpose conditions.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
}
project(':sulky-sounds-api') {
archivesBaseName = 'de.huxhorn.sulky.sounds-api'
description = 'This file is part of the sulky modules. It contains a simple sound interface definition.'
jar {
manifest.attributes 'Automatic-Module-Name': 'de.huxhorn.sulky.sounds'
}
}
project(':sulky-sounds-impl-jlayer') {
archivesBaseName = 'de.huxhorn.sulky.sounds-impl-jlayer'
description = 'This file is part of the sulky modules. It contains an implementation of the simple sound interface using JLayer.'
jar {
manifest.attributes 'Automatic-Module-Name': 'de.huxhorn.sulky.sounds.jlayer'
}
dependencies {
implementation libraries.'jlayer'
implementation libraries.'slf4j-api'
implementation project(':sulky-sounds-api')
}
}
project(':sulky-logging') {
archivesBaseName = 'de.huxhorn.sulky.logging'
description = 'This file is part of the sulky modules. It contains a LoggingPropertyChangeListener and some Swing logging.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
testImplementation libraries.'logback-classic'
}
}
project(':sulky-formatting') {
archivesBaseName = 'de.huxhorn.sulky.formatting'
description = 'This file is part of the sulky modules. It contains a class for human-readable output of large numbers and some handy xml helper methods.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
}
}
project(':sulky-swing') {
archivesBaseName = 'de.huxhorn.sulky.swing'
description = 'This file is part of the sulky modules. It contains several Swing tools.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
implementation project(':sulky-formatting')
implementation project(':sulky-generics')
}
}
project(':sulky-buffers-table') {
archivesBaseName = 'de.huxhorn.sulky.buffers.table'
description = 'This file is part of the sulky modules. It contains a TableModel using Buffer as backend.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
implementation project(':sulky-buffers')
implementation project(':sulky-swing')
}
}
project(':sulky-tasks') {
archivesBaseName = 'de.huxhorn.sulky.tasks'
description = 'This file is part of the sulky modules. It contains a TaskManager and support classes.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
}
}
project(':sulky-buffers-filtering') {
archivesBaseName = 'de.huxhorn.sulky.buffers.filtering'
description = 'This file is part of the sulky modules. It contains the definition of buffers, operations on buffers and certain buffer implementations.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
implementation project(':sulky-buffers')
implementation project(':sulky-conditions')
implementation project(':sulky-tasks')
}
}
project(':sulky-resources') {
archivesBaseName = 'de.huxhorn.sulky.resources'
description = 'This file is part of the sulky modules. It contains support for inheritance-safe resource resolution.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'slf4j-api'
}
}
project(':sulky-blobs') {
archivesBaseName = 'de.huxhorn.sulky.blobs'
description = 'This file is part of the sulky modules. It contains a BLOB repository comparable to the way git is storing the files.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'commons-io'
implementation libraries.'slf4j-api'
testImplementation project(':sulky-junit')
}
}
project(':sulky-plist') {
archivesBaseName = 'de.huxhorn.sulky.plist'
description = 'This file is part of the sulky modules. It contains classes to read and write Apple Propertylist/Plist data.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'commons-codec'
implementation libraries.'slf4j-api'
implementation project(':sulky-codec')
implementation project(':sulky-stax')
testImplementation project(':sulky-junit')
}
}
project(':sulky-groovy') {
archivesBaseName = 'de.huxhorn.sulky.groovy'
description = 'This file is part of the sulky modules. It contains Groovy helpers.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
dependencies {
implementation libraries.'groovy'
implementation libraries.'slf4j-api'
testImplementation libraries.'commons-io'
testImplementation project(':sulky-junit')
}
}
project(':sulky-ulid') {
archivesBaseName = 'de.huxhorn.sulky.ulid'
description = 'This file is part of the sulky modules. It contains a ULID implementation.'
jar {
manifest.attributes 'Automatic-Module-Name': archivesBaseName
}
apply plugin: 'me.champeau.gradle.jmh'
jmh {
fork = 2 // How many times to forks a single benchmark. Use 0 to disable forking altogether
iterations = 10 // Number of measurement iterations to do.
operationsPerInvocation = 1 // Operations per invocation.
jmhVersion = '1.17.4' // Specifies JMH version
}
dependencies {
testImplementation project(':sulky-junit')
}
}