Skip to content

Commit

Permalink
Update Dokka to 1.9.10 and Kotlin to 1.9.21 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg authored Dec 5, 2023
1 parent bd8e272 commit 00f8023
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ plugins {

repositories {
mavenCentral()
jcenter()
gradlePluginPortal()
}

Expand All @@ -26,7 +25,6 @@ allprojects {
apply(plugin = "org.gradle.maven-publish")

repositories {
jcenter()
mavenCentral()
}

Expand All @@ -36,6 +34,11 @@ allprojects {
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.1")
testImplementation(kotlin("test-junit"))
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

tasks.withType<KotlinCompile> {
kotlinOptions.apply {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
#

version=0.5.0-Beta-SNAPSHOT
version=0.5.0-SNAPSHOT
group=org.jetbrains.kotlinx

kotlinVersion=1.8.10
dokkaVersion=1.8.10
kotlinVersion=1.9.21
dokkaVersion=1.9.10
freemarkerVersion=2.3.29
pluginPublishVersion=0.15.0

0 comments on commit 00f8023

Please sign in to comment.