forked from sputnikdev/bluetooth-gatt-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform.gradle
46 lines (32 loc) · 930 Bytes
/
platform.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
// Project plugins and dependencies versions
ext {
// plugins
parser__wusaSemverPluginVersion = '2.1.0'
parser__lombokPluginVersion = '5.1.0'
// slf4j
parser__slf4jVersion = '1.7.30'
// logback
parser__logbackVersion = '1.2.3'
// xstream
parser__xstreamVersion = '1.4.12'
// apache commons beanutils
parser__commonsBeanutilsVersion = '1.9.4'
// google guava
parser__guavaVersion = '29.0-jre'
// google gson
parser__gsonVersion = '2.8.6'
// junit5
parser__junit5Version = '5.6.2'
// junit4
parser__junit4Version = '4.13'
// hamcrest
parser__hamcrestVersion = '2.2'
// hamcrest-optional version
parser__hamcrestOptionalVersion = '2.0.0'
// mockito
parser__mockitoCoreVersion = '3.3.3'
// mockito jupiter
parser__mockitoJupiterVersion = '3.3.3'
// powermock [junit4]
parser__powermockVersion = '2.0.7'
}