96 lines
3.6 KiB
XML
96 lines
3.6 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.cyanogenmod</groupId>
|
|
<artifactId>platform.sdk</artifactId>
|
|
<version>6.0</version>
|
|
<packaging>aar</packaging>
|
|
|
|
<name>CyanogenMod Platform SDK</name>
|
|
<description>The Platform SDK provides a set of APIs that give you easy access to a variety of different features within CyanogenMod. The SDK exposes APIs and system level framework access in the Android framework that aren't available in any other distribution.</description>
|
|
<url>https://github.com/CyanogenMod/cm_platform_sdk</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>cm-maven</id>
|
|
<name>CyanogenMod Maven Team</name>
|
|
<email>devrel@cyanogenmod.org</email>
|
|
<url>http://www.cyanogenmod.org</url>
|
|
<organization>CyanogenMod</organization>
|
|
<organizationUrl>http://www.cynanogenmod.org</organizationUrl>
|
|
</developer>
|
|
<developer>
|
|
<id>Decad3nce</id>
|
|
<name>Adnan Begovic</name>
|
|
<email>adnan@cyngn.com</email>
|
|
<url>http://www.github.com/Decad3nce</url>
|
|
<roles>
|
|
<role>architect</role>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<url>https://github.com/CyanogenMod/cm_platform_sdk</url>
|
|
<connection>scm:git:git://github.com/CyanogenMod/cm_platform_sdk.git</connection>
|
|
<developerConnection>scm:git:git@github.com:CyanogenMod/cm_platform_sdk.git</developerConnection>
|
|
</scm>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>deploy</phase>
|
|
<goals><goal>jar-no-fork</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<phase>deploy</phase>
|
|
<goals><goal>jar</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>deploy</id>
|
|
<phase>deploy</phase>
|
|
<goals><goal>deploy</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|