Skip to content

Commit 10d3ad2

Browse files
authored
[build] revert Kotlin version to 1.3.72 (#858)
We are hitting some library and plugin issues with incompatibilities between Kotlin versions. Downgrading back to 1.3.72 for now, we will revisit update to 1.4 sometime in the future.
1 parent a86c451 commit 10d3ad2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ org.gradle.jvmargs=-Xmx2g -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError
1515

1616
# dependencies
1717
kotlinJvmVersion = 1.8
18-
kotlinVersion = 1.4.0
19-
kotlinCoroutinesVersion = 1.3.9
18+
kotlinVersion = 1.3.72
19+
kotlinCoroutinesVersion = 1.3.8
2020

2121
classGraphVersion = 4.8.87
2222
graphQLJavaVersion = 15.0

plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginAbstractIT.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ abstract class GraphQLGradlePluginAbstractIT {
3535
// unsure if there is a better way - correct values are set from Gradle build
3636
// when running directly from IDE you will need to manually update those to correct values
3737
private val gqlKotlinVersion = System.getProperty("graphQLKotlinVersion") ?: "4.0.0-SNAPSHOT"
38-
private val kotlinVersion = System.getProperty("kotlinVersion") ?: "1.4.0"
38+
private val kotlinVersion = System.getProperty("kotlinVersion") ?: "1.3.72"
3939
private val junitVersion = System.getProperty("junitVersion") ?: "5.6.2"
4040

4141
val testSchema = loadResource("mocks/schema.graphql")

plugins/graphql-kotlin-maven-plugin/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ dependencies {
3434
implementation("org.apache.maven:maven-plugin-api:$mavenPluginApiVersion")
3535
implementation("org.apache.maven:maven-project:$mavenProjectVersion")
3636
implementation("org.apache.maven.plugin-tools:maven-plugin-annotations:$mavenPluginAnnotationVersion")
37-
testImplementation(project(path = ":graphql-kotlin-client"))
3837
}
3938

4039
tasks {

0 commit comments

Comments
 (0)