mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-07 07:56:19 +00:00
Bumps `moshiVersion` from 1.9.2 to 1.11.0. Updates `moshi-kotlin` from 1.9.2 to 1.11.0 - [Release notes](https://github.com/square/moshi/releases) - [Changelog](https://github.com/square/moshi/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/moshi/compare/moshi-parent-1.9.2...moshi-parent-1.11.0) Updates `moshi-kotlin-codegen` from 1.9.2 to 1.11.0 - [Release notes](https://github.com/square/moshi/releases) - [Changelog](https://github.com/square/moshi/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/moshi/compare/moshi-parent-1.9.2...moshi-parent-1.11.0) Signed-off-by: dependabot[bot] <support@github.com>
24 lines
437 B
Groovy
24 lines
437 B
Groovy
buildscript {
|
|
ext {
|
|
kotlinVersion = '1.4.31'
|
|
moshiVersion = "1.11.0"
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|