1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2	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>com.google.android</groupId>
5	<artifactId>annotations</artifactId>
6	<version>4.1.1.4</version>
7	<packaging>jar</packaging>
8
9	<parent>
10		<groupId>org.sonatype.oss</groupId>
11		<artifactId>oss-parent</artifactId>
12		<version>7</version>
13	</parent>
14
15	<name>Google Android Annotations Library</name>
16	<description>A library jar that provides annotations for the Google Android Platform.</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
25				is licensed under Apache 2.0 which allows compiling binaries from source and then distributing
26				those versions.
27			</comments>
28			<distribution>repo</distribution>
29		</license>
30	</licenses>
31	<scm>
32		<url>https://android.git.kernel.org/</url>
33		<connection>git://android.git.kernel.org/platform/manifest.git</connection>
34	</scm>
35	<developers>
36		<developer>
37			<name>The Android Open Source Projects</name>
38		</developer>
39	</developers>
40
41	<properties>
42		<release.name>jellybean-4.1</release.name>
43		<platform>android-16</platform>
44		<branch.tag>android-4.1.1_r4</branch.tag>
45	</properties>
46
47	<build>
48		<plugins>
49			<plugin>
50				<groupId>org.apache.maven.plugins</groupId>
51				<artifactId>maven-compiler-plugin</artifactId>
52				<version>2.3.2</version>
53				<configuration>
54					<source>1.5</source>
55					<target>1.5</target>
56				</configuration>
57			</plugin>
58		</plugins>
59
60	</build>
61
62</project>
63