mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-07 16:06:08 +00:00
Bumps `moshiVersion` from 1.12.0 to 1.13.0. Updates `moshi-kotlin` from 1.12.0 to 1.13.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.12.0...moshi-parent-1.13.0) Updates `moshi-kotlin-codegen` from 1.12.0 to 1.13.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.12.0...moshi-parent-1.13.0) --- updated-dependencies: - dependency-name: com.squareup.moshi:moshi-kotlin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.squareup.moshi:moshi-kotlin-codegen dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
632 B
Groovy
29 lines
632 B
Groovy
buildscript {
|
|
ext {
|
|
kotlinVersion = '1.5.31'
|
|
moshiVersion = "1.13.0"
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
dependencies {
|
|
classpath "org.jlleitschuh.gradle:ktlint-gradle:10.2.0"
|
|
classpath 'com.android.tools.build:gradle:7.0.3'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: "org.jlleitschuh.gradle.ktlint"
|
|
} |