[kotlin-test] Custom publishing layout KT-61969

This commit is contained in:
Ilya Gorbunov
2023-11-24 05:00:41 +01:00
committed by Space Team
parent ffe54d3fc4
commit b91e4e24c4
11 changed files with 163 additions and 13 deletions
@@ -1,12 +1,18 @@
<?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-annotations-common</artifactId>
<version>ArtifactsTest.version</version>
<packaging>pom</packaging>
<name>Kotlin Test Annotations Common</name>
<description>Kotlin Test Common</description>
<description>Legacy artifact of Kotlin Test library. Use kotlin-test instead</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -29,7 +35,7 @@
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<artifactId>kotlin-test</artifactId>
<version>ArtifactsTest.version</version>
<scope>compile</scope>
</dependency>
@@ -1,12 +1,18 @@
<?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-common</artifactId>
<version>ArtifactsTest.version</version>
<packaging>pom</packaging>
<name>Kotlin Test Common</name>
<description>Kotlin Test Common</description>
<description>Legacy artifact of Kotlin Test library. Use kotlin-test instead</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -29,7 +35,7 @@
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<artifactId>kotlin-test</artifactId>
<version>ArtifactsTest.version</version>
<scope>compile</scope>
</dependency>
@@ -12,7 +12,7 @@
<version>ArtifactsTest.version</version>
<packaging>klib</packaging>
<name>Kotlin Test Js</name>
<description>Kotlin Test for JS</description>
<description>Kotlin Test library for JS</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -11,7 +11,7 @@
<artifactId>kotlin-test-junit</artifactId>
<version>ArtifactsTest.version</version>
<name>Kotlin Test Junit</name>
<description>Kotlin Test Support for junit</description>
<description>Kotlin Test library support for JUnit</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -11,7 +11,7 @@
<artifactId>kotlin-test-junit5</artifactId>
<version>ArtifactsTest.version</version>
<name>Kotlin Test Junit5</name>
<description>Kotlin Test Support for junit5</description>
<description>Kotlin Test library support for JUnit5</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -11,7 +11,7 @@
<artifactId>kotlin-test-testng</artifactId>
<version>ArtifactsTest.version</version>
<name>Kotlin Test Testng</name>
<description>Kotlin Test Support for testng</description>
<description>Kotlin Test library support for TestNG</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -12,7 +12,7 @@
<version>ArtifactsTest.version</version>
<packaging>klib</packaging>
<name>Kotlin Test Wasm Js</name>
<description>Kotlin Test for Wasm JS</description>
<description>Kotlin Test library for experimental WebAssembly JS platform</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -12,7 +12,7 @@
<version>ArtifactsTest.version</version>
<packaging>klib</packaging>
<name>Kotlin Test Wasm Wasi</name>
<description>Kotlin Test for Wasm WASI</description>
<description>Kotlin Test library for experimental WebAssembly WASI platform</description>
<url>https://kotlinlang.org/</url>
<licenses>
<license>
@@ -1,5 +1,6 @@
<?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">
<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 -->
@@ -30,6 +31,20 @@
<developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
<url>https://github.com/JetBrains/kotlin</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-common</artifactId>
<version>ArtifactsTest.version</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-annotations-common</artifactId>
<version>ArtifactsTest.version</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>