Skip to content

Commit

Permalink
Update more dependencies (#1319)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers authored Mar 30, 2021
1 parent 37f34e1 commit b33a94d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions adapters/japicmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ val japicmp = tasks.register<JapicmpTask>("japicmp") {
dependsOn("jar")
oldClasspath = baseline
newClasspath = latest
onlyBinaryIncompatibleModified = true
failOnModification = true
isOnlyBinaryIncompatibleModified = true
isFailOnModification = true
txtOutputFile = file("$buildDir/reports/japi.txt")
ignoreMissingClasses = true
includeSynthetic = true
isIgnoreMissingClasses = true
isIncludeSynthetic = true
}

tasks.named("check").configure {
Expand Down
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ buildscript {
}

plugins {
id("com.vanniktech.maven.publish") version "0.13.0" apply false
id("org.jetbrains.dokka") version "1.4.10" apply false
id("com.diffplug.spotless") version "5.6.0"
id("ru.vyarus.animalsniffer") version "1.5.1" apply false
id("me.champeau.gradle.japicmp") version "0.2.8" apply false
id("com.vanniktech.maven.publish") version "0.14.2" apply false
id("org.jetbrains.dokka") version "1.4.30" apply false
id("com.diffplug.spotless") version "5.11.0"
id("ru.vyarus.animalsniffer") version "1.5.3" apply false
id("me.champeau.gradle.japicmp") version "0.2.9" apply false
}

spotless {
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ object Dependencies {
}

object Kotlin {
const val version = "1.4.30"
const val version = "1.4.31"
const val metadata = "org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.2.0"
}

object KotlinPoet {
private const val version = "1.7.2"
private const val version = "1.8.0"
const val kotlinPoet = "com.squareup:kotlinpoet:$version"
const val metadata = "com.squareup:kotlinpoet-metadata-specs:$version"
const val metadataSpecs = "com.squareup:kotlinpoet-metadata-specs:$version"
Expand All @@ -54,7 +54,7 @@ object Dependencies {
object Testing {
const val assertj = "org.assertj:assertj-core:3.11.1"
const val compileTesting = "com.github.tschuchortdev:kotlin-compile-testing:1.3.6"
const val junit = "junit:junit:4.13.1"
const val junit = "junit:junit:4.13.2"
const val truth = "com.google.truth:truth:1.0.1"
}
}
8 changes: 4 additions & 4 deletions moshi/japicmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ val japicmp = tasks.register<JapicmpTask>("japicmp") {
dependsOn("jar")
oldClasspath = baseline
newClasspath = latest
onlyBinaryIncompatibleModified = true
failOnModification = true
isOnlyBinaryIncompatibleModified = true
isFailOnModification = true
txtOutputFile = file("$buildDir/reports/japi.txt")
ignoreMissingClasses = true
includeSynthetic = true
isIgnoreMissingClasses = true
isIncludeSynthetic = true
classExcludes = listOf(
"com.squareup.moshi.internal.NonNullJsonAdapter", // Internal.
"com.squareup.moshi.internal.NullSafeJsonAdapter", // Internal.
Expand Down

0 comments on commit b33a94d

Please sign in to comment.