-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
80 lines (70 loc) · 2.48 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
/*
* Copyright (c) 2016-2018 Carmen Alvarez
*
* This file is part of Poet Assistant.
*
* Poet Assistant is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Poet Assistant is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Poet Assistant. If not, see <http://www.gnu.org/licenses/>.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.gradle_plugin_version = '8.7.1'
ext.kotlin_version = '2.0.21'
ext.kotlin_coroutines_version = '1.9.0'
ext.appcompat_version = "1.7.0"
ext.collection_version = "1.4.4"
ext.constraintlayout_version = "2.1.4"
ext.lifecycle_version = "2.8.6"
ext.material_version = "1.12.0"
ext.preference_version = "1.2.1"
ext.room_version = "2.6.1"
ext.dagger_version = '2.52'
ext.porterstemmer_version = "1.0.0"
ext.rhymer_version = "1.2.0"
ext.junit_version = "4.13.2"
ext.robolectric_version = "4.14-beta-1"
ext.festreflect_version = "1.4.1"
ext.androidx_test_runner_version = "1.6.2"
ext.androidx_test_rules_version = "1.6.1"
ext.androidx_test_core_version = "1.6.1"
ext.androidx_test_orchestrator_version = "1.5.1"
ext.androidx_test_uiautomator_version = "2.3.0"
ext.androidx_junit_version = "1.2.1"
ext.espresso_version = "3.6.1"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_plugin_version"
classpath 'org.jacoco:org.jacoco.core:0.8.12'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
// Show a report in the log when running tests
tasks.withType(Test) {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}