Kotlin version 1.7.20, kotlin-komponent version 1.0.7, gradle version 7.5.1

This commit is contained in:
2022-10-14 19:47:18 +02:00
parent ae4500e73d
commit cbcbbaa698
5 changed files with 5 additions and 11 deletions

View File

@@ -1,8 +1,6 @@
<component name="ArtifactManager">
<artifact type="jar" name="komp-todo-js-1.0.0">
<output-path>$PROJECT_DIR$/build/libs</output-path>
<root id="archive" name="komp-todo-js-1.0.0.jar">
<element id="module-output" name="komp-todo.jsMain" />
</root>
<root id="archive" name="komp-todo-js-1.0.0.jar" />
</artifact>
</component>

2
.idea/komp-todo.iml generated
View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="komp-todo" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="nl.astraeus" external.system.module.version="0.1.0-SNAPSHOT" type="JAVA_MODULE" version="4" />

View File

@@ -1,5 +1,5 @@
plugins {
kotlin("multiplatform") version "1.6.10"
kotlin("multiplatform") version "1.7.20"
`maven-publish`
}
@@ -15,7 +15,7 @@ kotlin {
/* Targets configuration omitted.
* To find out how to configure the targets, please follow the link:
* https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#setting-up-targets */
js((IR)) {
js(IR) {
binaries.executable()
browser {
//produceKotlinLibrary()
@@ -33,7 +33,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("nl.astraeus:kotlin-komponent:1.0.7-SNAPSHOT")
implementation("nl.astraeus:kotlin-komponent:1.0.7")
}
}
val jsMain by getting

View File

@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip

View File

@@ -7,5 +7,3 @@ pluginManagement {
}
rootProject.name = "komp-todo"
enableFeaturePreview("GRADLE_METADATA")