-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
build.gradle
26 lines (23 loc) · 842 Bytes
/
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
buildscript {
ext {
kotlin_version = '1.9.0'
// wait for upstream https://github.com/mockito/mockito/issues/2007
mockito_version = '3.4.6'
threetenbp_version = '1.6.8'
kotpref_version = '2.13.2'
}
repositories {
google()
mavenCentral()
maven { url 'https://www.jitpack.io' }
gradlePluginPortal()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.android.tools.build:gradle:8.5.2'
classpath 'com.trevjonez.composer:plugin:1.0.0-rc08'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.47.0'
classpath 'com.github.bjoernq:unmockplugin:0.7.9'
}
}
apply from: 'https://raw.githubusercontent.com/ligi/gradle-common/master/versions_plugin_stable_only.gradle'