Skip to content

Commit ece9fdd

Browse files
authored
Upgrade Gradle to version 7.3.3 (#1822)
* Upgrade to Gradle 7.3.3 Necessary changes include: - Rename configurations created by the `java` plugin. - Upgrade the `protobuf-gradle-plugin` to avoid the "Configuration with name 'compile' not found" error. - Remove the deprecated `kotlin.parallel.tasks.in.project` property, which got replaced by the Gradle parallel project execution option. - Stop using the deprecated `maven` plugin in favor of only the `maven-publish` plugin [1]. - Remove the deprecated / inactive `GRADLE_METADATA` feature preview flag [2] [3]. - For yet unclear reasons the JUnit imports in the HOCON tests needed to be made explicit to avoid compile errors. [1]: https://docs.gradle.org/4.8/release-notes.html [2]: gradle/gradle#16118 [3]: https://kotlinlang.org/docs/migrating-multiplatform-project-to-14.html#simplify-your-build-configuration * Gradle: Remove an unused import * Gradle: Use single quotes where no variable interpolation is required * Gradle: Use the compact string notation to declare dependencies This creates consistency with the majority of declarations.
1 parent a27c365 commit ece9fdd

22 files changed

+446
-340
lines changed

benchmark/build.gradle

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ apply plugin: 'java'
66
apply plugin: 'kotlin'
77
apply plugin: 'kotlinx-serialization'
88
apply plugin: 'idea'
9-
apply plugin: "net.ltgt.apt"
10-
apply plugin: "com.github.johnrengelman.shadow"
11-
apply plugin: "me.champeau.gradle.jmh"
9+
apply plugin: 'net.ltgt.apt'
10+
apply plugin: 'com.github.johnrengelman.shadow'
11+
apply plugin: 'me.champeau.gradle.jmh'
1212

1313
sourceCompatibility = 1.8
1414
targetCompatibility = 1.8
@@ -22,11 +22,11 @@ jmhJar {
2222
}
2323

2424
dependencies {
25-
compile "org.openjdk.jmh:jmh-core:1.22"
25+
implementation 'org.openjdk.jmh:jmh-core:1.22'
2626
implementation 'com.google.guava:guava:24.1.1-jre'
27-
compile 'com.fasterxml.jackson.core:jackson-databind:2.12.1'
28-
compile 'com.fasterxml.jackson.module:jackson-module-kotlin:2.12.1'
29-
compile project(':kotlinx-serialization-core')
30-
compile project(':kotlinx-serialization-json')
31-
compile project(':kotlinx-serialization-protobuf')
27+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.1'
28+
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.12.1'
29+
implementation project(':kotlinx-serialization-core')
30+
implementation project(':kotlinx-serialization-json')
31+
implementation project(':kotlinx-serialization-protobuf')
3232
}

bom/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
// It shouldn't be a problem as usually consumers need to use generic *-native artifact
2020
// Gradle will choose correct variant by using metadata attributes
2121
if (it.artifacts.any { it.extension == 'klib' }) return
22-
api(group: it.groupId, name: it.artifactId, version: it.version)
22+
api("${it.groupId}:${it.artifactId}:${it.version}")
2323
}
2424
}
2525
}

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ buildscript {
7070
classpath "org.jetbrains.kotlinx:kotlinx-knit:$knit_version"
7171
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.5.3' // Android API check
7272

73-
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.8'
73+
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
7474

7575
// Various benchmarking stuff
7676
classpath "com.github.jengelman.gradle.plugins:shadow:4.0.2"

core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ kotlin {
1414
dependencies {
1515
implementation 'io.kotlintest:kotlintest:2.0.7'
1616
implementation 'com.google.guava:guava:24.1.1-jre'
17-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
17+
implementation 'com.google.code.gson:gson:2.8.5'
1818
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
1919
}
2020
}

formats/cbor/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ kotlin {
1919
jvmTest {
2020
dependencies {
2121
implementation 'io.kotlintest:kotlintest:2.0.7'
22-
implementation group: 'com.upokecenter', name: 'cbor', version: '4.2.0'
23-
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jackson_version
24-
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jackson_version
25-
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: jackson_version
26-
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-cbor', version: jackson_version
22+
implementation 'com.upokecenter:cbor:4.2.0'
23+
implementation "com.fasterxml.jackson.core:jackson-core:$jackson_version"
24+
implementation "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
25+
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version"
26+
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:$jackson_version"
2727
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
2828
}
2929
}

formats/hocon/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ java {
1919

2020

2121
dependencies {
22-
compile project(':kotlinx-serialization-core')
22+
implementation project(':kotlinx-serialization-core')
2323
api 'org.jetbrains.kotlin:kotlin-stdlib'
2424

2525
api 'com.typesafe:config:1.4.1'
2626

27-
testCompile "org.jetbrains.kotlin:kotlin-test"
28-
testCompile group: 'junit', name: 'junit', version: '4.12'
27+
testImplementation 'org.jetbrains.kotlin:kotlin-test'
28+
testImplementation 'junit:junit:4.12'
2929
}
3030

3131
Java9Modularity.configureJava9ModuleInfo(project)

formats/hocon/src/test/kotlin/kotlinx/serialization/hocon/HoconEncoderTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package kotlinx.serialization.hocon
22

33
import kotlinx.serialization.*
4-
import org.junit.*
4+
import org.junit.Test
55
import kotlin.test.*
66

77
class HoconEncoderTest {

formats/hocon/src/test/kotlin/kotlinx/serialization/hocon/HoconRootObjectsTest.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ package kotlinx.serialization.hocon
66

77
import com.typesafe.config.*
88
import kotlinx.serialization.*
9-
import org.junit.*
9+
import org.junit.Ignore
10+
import org.junit.Test
1011
import kotlin.test.*
1112

1213
class HoconRootMapTest {

formats/hocon/src/test/kotlin/kotlinx/serialization/hocon/HoconValuesTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ package kotlinx.serialization.hocon
77
import kotlin.test.*
88
import kotlinx.serialization.*
99
import kotlinx.serialization.builtins.*
10-
import org.junit.*
1110
import org.junit.Assert.*
11+
import org.junit.Test
1212

1313
class HoconValuesTest {
1414

formats/json/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ kotlin {
1818

1919
jvmTest {
2020
dependencies {
21-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
21+
implementation 'com.google.code.gson:gson:2.8.5'
2222
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
2323
}
2424
}

formats/properties/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ kotlin {
2020
jvmTest {
2121
dependencies {
2222
implementation 'io.kotlintest:kotlintest:2.0.7'
23-
implementation group: 'com.upokecenter', name: 'cbor', version: '4.0.0-beta1'
24-
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jackson_version
25-
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jackson_version
26-
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: jackson_version
27-
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-cbor', version: jackson_version
23+
implementation 'com.upokecenter:cbor:4.0.0-beta1'
24+
implementation "com.fasterxml.jackson.core:jackson-core:$jackson_version"
25+
implementation "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
26+
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version"
27+
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:$jackson_version"
2828
}
2929
}
3030
}

gradle.properties

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ kotlin.mpp.enableCompatibilityMetadataVariant=true
2727
kotlin.mpp.stability.nowarn=true
2828

2929
kotlin.js.compiler=both
30-
kotlin.parallel.tasks.in.project=true
3130
kotlin.incremental.multiplatform=true
3231

3332
org.gradle.parallel=true

gradle/publishing.gradle

-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
import org.gradle.util.VersionNumber
2-
31
/*
42
* Copyright 2017-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
53
*/
64

75
// Configures publishing of Maven artifacts to MavenCentral
86

9-
apply plugin: 'maven'
107
apply plugin: 'maven-publish'
118
apply plugin: 'signing'
129

gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
+1-1
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-6.9.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)