Last active
May 30, 2023 17:45
-
-
Save alexjlockwood/30ea2fec0f1aa08e79ae269c1169fd49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<!-- 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>androidx.compose.foundation</groupId> | |
<artifactId>foundation</artifactId> | |
<version>1.5.0-beta01</version> | |
<name>Compose Foundation</name> | |
<description>Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers</description> | |
<url>https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.5.0-beta01</url> | |
<inceptionYear>2018</inceptionYear> | |
<licenses> | |
<license> | |
<name>The Apache Software License, Version 2.0</name> | |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
<developers> | |
<developer> | |
<name>The Android Open Source Project</name> | |
</developer> | |
</developers> | |
<scm> | |
<connection>scm:git:https://android.googlesource.com/platform/frameworks/support</connection> | |
<url>https://cs.android.com/androidx/platform/frameworks/support</url> | |
</scm> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>androidx.compose.foundation</groupId> | |
<artifactId>foundation-layout</artifactId> | |
<version>1.5.0-beta01</version> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>androidx.compose.animation</groupId> | |
<artifactId>animation</artifactId> | |
<version>1.5.0-beta01</version> | |
<scope>runtime</scope> | |
<type>aar</type> | |
</dependency> | |
<dependency> | |
<groupId>androidx.compose.runtime</groupId> | |
<artifactId>runtime</artifactId> | |
<version>1.5.0-beta01</version> | |
<scope>runtime</scope> | |
<type>aar</type> | |
</dependency> | |
<dependency> | |
<groupId>androidx.compose.ui</groupId> | |
<artifactId>ui</artifactId> | |
<version>1.5.0-beta01</version> | |
<scope>runtime</scope> | |
<type>aar</type> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment