Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Bump version again, oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Oct 5, 2021
1 parent 9129bbb commit f7d2908
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
val kotlinVersion = "1.5.31"
kotlin("jvm") version kotlinVersion apply false
kotlin("kapt") version kotlinVersion apply false
id("com.github.johnrengelman.shadow") version "7.0.0"
id("com.github.johnrengelman.shadow") version "7.1.0"
id("org.jmailen.kotlinter") version "3.6.0" apply false
id("com.github.ben-manes.versions") version "0.39.0"
}
Expand Down
10 changes: 9 additions & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm")
`java-gradle-plugin`
Expand All @@ -7,7 +9,7 @@ plugins {
}

group = "com.github.cs125-illinois"
version = "2021.10.3"
version = "2021.10.5"

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.5.31")
Expand Down Expand Up @@ -42,3 +44,9 @@ publishing {
}
}
}
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
apiVersion = "1.4"
languageVersion = "1.4"
}
}

0 comments on commit f7d2908

Please sign in to comment.