[Wasm] Add wasi kotlin.test target gradle buildscript

This commit is contained in:
Igor Yakovlev
2023-07-26 18:22:31 +02:00
committed by Zalim Bashorov
parent d1c7caf15c
commit f42d0b1ed4
11 changed files with 255 additions and 93 deletions
@@ -8,11 +8,11 @@
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-wasm</artifactId>
<artifactId>kotlin-test-wasm-js</artifactId>
<version>ArtifactsTest.version</version>
<packaging>klib</packaging>
<name>Kotlin Test Wasm</name>
<description>Kotlin Test for WASM</description>
<name>Kotlin Test Wasm Js</name>
<description>Kotlin Test for Wasm JS</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -35,9 +35,9 @@
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-wasm</artifactId>
<artifactId>kotlin-stdlib-wasm-js</artifactId>
<version>ArtifactsTest.version</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-wasm-wasi</artifactId>
<version>ArtifactsTest.version</version>
<packaging>klib</packaging>
<name>Kotlin Test Wasm Wasi</name>
<description>Kotlin Test for Wasm WASI</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Kotlin Team</name>
<organization>JetBrains</organization>
<organizationUrl>https://www.jetbrains.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/JetBrains/kotlin.git</connection>
<developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
<url>https://github.com/JetBrains/kotlin</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-wasm-wasi</artifactId>
<version>ArtifactsTest.version</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>