Skip to content

Commit d25226e

Browse files
committed
Update build scripts.
1 parent a875590 commit d25226e

File tree

4 files changed

+3
-17
lines changed

4 files changed

+3
-17
lines changed

gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
kotlinVersion = 1.9.23

settings.gradle

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
pluginManagement {
2-
plugins {
3-
id 'org.jetbrains.kotlin.jvm' version '1.9.23'
4-
}
5-
}
6-
plugins {
7-
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
8-
}
91
rootProject.name = 'Sierra'
102

113
include 'sierra', 'sierra-test'

sierra-test/build.gradle

+1-8
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,16 @@
1414

1515
plugins {
1616
id 'application'
17-
id 'org.jetbrains.kotlin.jvm'
17+
id 'org.jetbrains.kotlin.jvm' version "${kotlinVersion}"
1818
}
1919

2020
dependencies {
2121
implementation project(':sierra')
2222

2323
implementation 'com.formdev:flatlaf:3.4.1'
2424
implementation 'com.formdev:flatlaf-extras:3.4.1'
25-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
2625
}
2726

2827
jar {
2928
archiveFileName = "${project.name}.jar"
3029
}
31-
repositories {
32-
mavenCentral()
33-
}
34-
kotlin {
35-
jvmToolchain(17)
36-
}

sierra/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414

1515
plugins {
16-
id 'org.jetbrains.kotlin.jvm'
16+
id 'org.jetbrains.kotlin.jvm' version "${kotlinVersion}"
1717
id 'org.jetbrains.dokka' version '1.9.20'
1818
}
1919

0 commit comments

Comments
 (0)