1<?xml version="1.0" encoding="UTF-8"?> 2<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"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>org.jetbrains.kotlin</groupId> 5 <artifactId>kotlin-compose-compiler-plugin</artifactId> 6 <version>2.0.0</version> 7 <name>AndroidX Compose Hosted Compiler Plugin</name> 8 <description>Contains the Kotlin compiler plugin for Compose used in Android Studio and IDEA</description> 9 <url>https://kotlinlang.org/</url> 10 <licenses> 11 <license> 12 <name>The Apache License, Version 2.0</name> 13 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 14 </license> 15 </licenses> 16 <developers> 17 <developer> 18 <name>Kotlin Team</name> 19 <organization>JetBrains</organization> 20 <organizationUrl>https://www.jetbrains.com</organizationUrl> 21 </developer> 22 <developer> 23 <name>The Android Open Source Project</name> 24 </developer> 25 </developers> 26 <scm> 27 <connection>scm:git:https://github.com/JetBrains/kotlin.git</connection> 28 <developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection> 29 <url>https://github.com/JetBrains/kotlin</url> 30 </scm> 31 <dependencies> 32 <dependency> 33 <groupId>org.jetbrains.kotlin</groupId> 34 <artifactId>kotlin-stdlib</artifactId> 35 <version>2.0.0</version> 36 <scope>runtime</scope> 37 </dependency> 38 </dependencies> 39</project> 40