Publish Gradle metadata for kotlin-stdlib-common, KT-60911

This makes it depend on kotlin-stdlib in all targets
and have no artifacts from Gradle's point of view
This commit is contained in:
Ilya Gorbunov
2023-08-08 17:18:54 +02:00
committed by Space Team
parent e8289181e6
commit 3e4cbd6dd2
3 changed files with 61 additions and 3 deletions
@@ -1,11 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" 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-stdlib-common</artifactId>
<version>ArtifactsTest.version</version>
<name>Kotlin Stdlib Common</name>
<description>Kotlin Common Standard Library</description>
<description>Kotlin Common Standard Library (legacy, use kotlin-stdlib instead)</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -25,4 +30,13 @@
<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</artifactId>
<version>ArtifactsTest.version</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>