Skip to content

Commit 13f039f

Browse files
author
Chris Banes
committed
Update dependencies
- AGP 7.0.0-rc01 - Spotless 5.14.2 - Gradle 7.1.1 Change-Id: I1eb53f5e3ac245b3e2e85e75f13a3c8eef2fa5c3
1 parent 673ffa6 commit 13f039f

File tree

28 files changed

+31
-31
lines changed

28 files changed

+31
-31
lines changed

Crane/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ buildscript {
3030
}
3131

3232
plugins {
33-
id 'com.diffplug.spotless' version '5.12.4'
33+
id 'com.diffplug.spotless' version '5.14.2'
3434
}
3535

3636
subprojects {

Crane/buildSrc/src/main/java/com/example/crane/buildsrc/Dependencies.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object Versions {
2121
}
2222

2323
object Libs {
24-
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-beta05"
24+
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-rc01"
2525
const val ktLint = "com.pinterest:ktlint:${Versions.ktLint}"
2626

2727
object GoogleMaps {
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

JetNews/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ buildscript {
2626
}
2727

2828
dependencies {
29-
classpath 'com.android.tools.build:gradle:7.0.0-beta05'
29+
classpath 'com.android.tools.build:gradle:7.0.0-rc01'
3030
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3131
}
3232
}
3333

3434
plugins {
35-
id 'com.diffplug.spotless' version '5.11.1'
35+
id 'com.diffplug.spotless' version '5.14.2'
3636
}
3737

3838
subprojects {
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

Jetcaster/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ buildscript {
3030
}
3131

3232
plugins {
33-
id 'com.diffplug.spotless' version '5.11.1'
33+
id 'com.diffplug.spotless' version '5.14.2'
3434
}
3535

3636
subprojects {

Jetcaster/buildSrc/src/main/java/com/example/jetcaster/buildsrc/dependencies.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object Versions {
2121
}
2222

2323
object Libs {
24-
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-beta05"
24+
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-rc01"
2525
const val jdkDesugar = "com.android.tools:desugar_jdk_libs:1.0.9"
2626

2727
object Accompanist {
@@ -38,7 +38,7 @@ object Libs {
3838
}
3939

4040
object Coroutines {
41-
private const val version = "1.4.2"
41+
private const val version = "1.5.1"
4242
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
4343
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
4444
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
333 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

Jetcaster/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ case "`uname`" in
7272
Darwin* )
7373
darwin=true
7474
;;
75-
MINGW* )
75+
MSYS* | MINGW* )
7676
msys=true
7777
;;
7878
NONSTOP* )

Jetchat/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ buildscript {
3232
}
3333

3434
plugins {
35-
id 'com.diffplug.spotless' version '5.11.1'
35+
id 'com.diffplug.spotless' version '5.14.2'
3636
}
3737

3838
subprojects {

Jetchat/buildSrc/src/main/java/com/example/compose/jetchat/buildsrc/dependencies.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object Versions {
2121
}
2222

2323
object Libs {
24-
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-beta05"
24+
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-rc01"
2525
const val jdkDesugar = "com.android.tools:desugar_jdk_libs:1.0.9"
2626

2727
const val junit = "junit:junit:4.13"
@@ -41,7 +41,7 @@ object Libs {
4141
}
4242

4343
object Coroutines {
44-
private const val version = "1.4.2"
44+
private const val version = "1.5.1"
4545
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
4646
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
4747
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
333 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

Jetchat/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ case "`uname`" in
7272
Darwin* )
7373
darwin=true
7474
;;
75-
MINGW* )
75+
MSYS* | MINGW* )
7676
msys=true
7777
;;
7878
NONSTOP* )

Jetsnack/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ buildscript {
2929
}
3030

3131
plugins {
32-
id 'com.diffplug.spotless' version '5.11.1'
32+
id 'com.diffplug.spotless' version '5.14.2'
3333
}
3434

3535
subprojects {

Jetsnack/buildSrc/src/main/java/com/example/jetsnack/buildsrc/Dependencies.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object Versions {
2121
}
2222

2323
object Libs {
24-
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-beta05"
24+
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-rc01"
2525

2626
object Accompanist {
2727
const val version = "0.14.0"
@@ -37,7 +37,7 @@ object Libs {
3737
}
3838

3939
object Coroutines {
40-
private const val version = "1.4.1"
40+
private const val version = "1.5.1"
4141
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
4242
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
4343
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
333 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

Jetsnack/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ case "`uname`" in
7272
Darwin* )
7373
darwin=true
7474
;;
75-
MINGW* )
75+
MSYS* | MINGW* )
7676
msys=true
7777
;;
7878
NONSTOP* )

Jetsurvey/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ buildscript {
2929
}
3030

3131
plugins {
32-
id 'com.diffplug.spotless' version '5.11.1'
32+
id 'com.diffplug.spotless' version '5.14.2'
3333
}
3434

3535
subprojects {

Jetsurvey/buildSrc/src/main/java/com/example/compose/jetsurvey/buildsrc/dependencies.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ object Versions {
2121
}
2222

2323
object Libs {
24-
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-beta05"
25-
const val jdkDesugar = "com.android.tools:desugar_jdk_libs:1.0.9"
24+
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-rc01"
25+
const val jdkDesugar = "com.android.tools:desugar_jdk_libs:1.1.5"
2626

2727
const val junit = "junit:junit:4.13"
2828

@@ -41,7 +41,7 @@ object Libs {
4141
}
4242

4343
object Coroutines {
44-
private const val version = "1.4.1"
44+
private const val version = "1.5.1"
4545
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
4646
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
4747
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

Owl/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ buildscript {
2929
}
3030

3131
plugins {
32-
id 'com.diffplug.spotless' version '5.12.4'
32+
id 'com.diffplug.spotless' version '5.14.2'
3333
}
3434

3535
subprojects {

Owl/buildSrc/src/main/java/com/example/owl/buildsrc/Dependencies.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object Versions {
2121
}
2222

2323
object Libs {
24-
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-beta05"
24+
const val androidGradlePlugin = "com.android.tools.build:gradle:7.0.0-rc01"
2525

2626
object Accompanist {
2727
const val version = "0.14.0"
@@ -36,7 +36,7 @@ object Libs {
3636
}
3737

3838
object Coroutines {
39-
private const val version = "1.4.2"
39+
private const val version = "1.5.1"
4040
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
4141
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
4242
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"

Owl/gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

Owl/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ case "`uname`" in
7272
Darwin* )
7373
darwin=true
7474
;;
75-
MINGW* )
75+
MSYS* | MINGW* )
7676
msys=true
7777
;;
7878
NONSTOP* )

0 commit comments

Comments
 (0)