xref: /aosp_15_r20/external/robolectric/scripts/pom_template.xml (revision e6ba16074e6af37d123cb567d575f496bf0a58ee)
1<?xml version="1.0" encoding="UTF-8"?>
2<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 http://maven.apache.org/maven-v4_0_0.xsd">
3    <modelVersion>4.0.0</modelVersion>
4    <groupId>org.robolectric</groupId>
5    <artifactId>ARTIFACT_ID</artifactId>
6    <version>VERSION</version>
7    <packaging>jar</packaging>
8    <parent>
9        <groupId>org.sonatype.oss</groupId>
10        <artifactId>oss-parent</artifactId>
11        <version>9</version>
12    </parent>
13    <name>Google Android ARTIFACT_ID Library</name>
14    <description>
15        A library jar that provides APIs for Applications written for the Google Android Platform.
16    </description>
17    <url>http://source.android.com/</url>
18    <inceptionYear>2008</inceptionYear>
19    <licenses>
20        <license>
21            <name>Apache 2.0</name>
22            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
23            <comments>
24                While the EULA for the Android SDK restricts distribution of those binaries, the source code is licensed under Apache 2.0 which allows compiling binaries from source and then distributing those versions.
25            </comments>
26            <distribution>repo</distribution>
27        </license>
28    </licenses>
29    <scm>
30        <url>https://android.git.kernel.org/</url>
31        <connection>git://android.git.kernel.org/platform/manifest.git</connection>
32    </scm>
33    <developers>
34        <developer>
35            <name>The Android Open Source Projects</name>
36        </developer>
37    </developers>
38</project>