forked from dmfs/opentasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
38 lines (33 loc) · 1.84 KB
/
dependencies.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
def jems_version = '1.43'
def contentpal_version = '0.6'
def androidx_test_runner_version = '1.1.1'
ext.deps = [
// Support & Google libraries
support_appcompat : 'androidx.appcompat:appcompat:1.2.0',
support_annotations: 'androidx.annotation:annotation:1.1.0',
support_design : 'com.google.android.material:material:1.2.1',
android_dashclock : 'com.google.android.apps.dashclock:dashclock-api:2.0.0',
// dmfs
jems : "org.dmfs:jems:$jems_version",
datetime : 'org.dmfs:rfc5545-datetime:0.2.4',
lib_recur : 'org.dmfs:lib-recur:0.12.2',
xml_magic : 'org.dmfs:android-xml-magic:0.1.1',
color_picker : 'com.github.dmfs:color-picker:1.3',
android_carrot : 'com.github.dmfs.androidcarrot:androidcarrot:13edc04',
bolts_color : 'com.github.dmfs.Bolts:color-bolts:0.1',
contentpal : "com.github.dmfs.contentpal:contentpal:$contentpal_version",
retention_magic : 'com.github.dmfs:retention-magic:1.3',
// 3rd party
codeka_carrot : 'au.com.codeka:carrot:2.4.0',
// Testing
junit : 'junit:junit:4.12',
hamcrest : 'org.hamcrest:hamcrest-library:1.3',
mockito : 'org.mockito:mockito-core:2.27.0',
robolectric : 'org.robolectric:robolectric:3.5.1',
support_test_runner: "androidx.test:runner:$androidx_test_runner_version",
support_test_rules : "androidx.test:rules:$androidx_test_runner_version",
// dmfs testing
jems_testing : "org.dmfs:jems-testing:$jems_version",
contenttestpal : "com.github.dmfs.contentpal:contenttestpal:$contentpal_version",
contentpal_testing : "com.github.dmfs.contentpal:contentpal-testing:$contentpal_version"
]