|
| 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" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>com.larswerkman</groupId> |
| 6 | + <artifactId>colorpicker</artifactId> |
| 7 | + <packaging>apklib</packaging> |
| 8 | + <name>Holo ColorPicker</name> |
| 9 | + <description>A Holo themed colorpicker designed by Marie Schweiz and Nick Butcher.</description> |
| 10 | + <url>https://github.com/LarsWerkman/HoloColorPicker</url> |
| 11 | + <parent> |
| 12 | + <groupId>org.sonatype.oss</groupId> |
| 13 | + <artifactId>oss-parent</artifactId> |
| 14 | + <version>7</version> |
| 15 | + </parent> |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>Apache License Version 2.0</name> |
| 19 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 20 | + <distribution>repo</distribution> |
| 21 | + </license> |
| 22 | + </licenses> |
| 23 | + <scm> |
| 24 | + <url>https://github.com/LarsWerkman/HoloColorPicker</url> |
| 25 | + <connection>scm:git:git://github.com/LarsWerkman/HoloColorPicker.git</connection> |
| 26 | + < developerConnection>scm:git: [email protected]:LarsWerkman/HoloColorPicker.git</ developerConnection> |
| 27 | + </scm> |
| 28 | + <developers> |
| 29 | + <developer> |
| 30 | + <name>Lars Werkman</name> |
| 31 | + <url>http://www.androidviews.net/</url> |
| 32 | + <id>LarsWerkman</id> |
| 33 | + </developer> |
| 34 | + </developers> |
| 35 | + <properties> |
| 36 | + <!-- build settings --> |
| 37 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 39 | + <java.version>1.6</java.version> |
| 40 | + <android.version>4.1.1.4</android.version> |
| 41 | + <android.platform>16</android.platform> |
| 42 | + <android-maven.version>3.2.0</android-maven.version> |
| 43 | + <android-support.version>r99</android-support.version> |
| 44 | + </properties> |
| 45 | + <dependencies> |
| 46 | + <dependency> |
| 47 | + <groupId>com.google.android</groupId> |
| 48 | + <artifactId>android</artifactId> |
| 49 | + <version>${android.version}</version> |
| 50 | + <scope>provided</scope> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.google.android</groupId> |
| 54 | + <artifactId>support-v4</artifactId> |
| 55 | + <version>${android-support.version}</version> |
| 56 | + <scope>system</scope> |
| 57 | + <systemPath>${basedir}/libs/android-support-v4.jar</systemPath> |
| 58 | + </dependency> |
| 59 | + </dependencies> |
| 60 | + <build> |
| 61 | + <plugins> |
| 62 | + <plugin> |
| 63 | + <groupId>com.jayway.maven.plugins.android.generation2</groupId> |
| 64 | + <artifactId>android-maven-plugin</artifactId> |
| 65 | + </plugin> |
| 66 | + <plugin> |
| 67 | + <groupId>org.apache.maven.plugins</groupId> |
| 68 | + <artifactId>maven-eclipse-plugin</artifactId> |
| 69 | + </plugin> |
| 70 | + </plugins> |
| 71 | + <pluginManagement> |
| 72 | + <plugins> |
| 73 | + <!-- compiler settings --> |
| 74 | + <plugin> |
| 75 | + <groupId>org.apache.maven.plugins</groupId> |
| 76 | + <artifactId>maven-compiler-plugin</artifactId> |
| 77 | + <version>2.3.2</version> |
| 78 | + <configuration> |
| 79 | + <source>${java.version}</source> |
| 80 | + <target>${java.version}</target> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + <plugin> |
| 84 | + <groupId>org.apache.maven.plugins</groupId> |
| 85 | + <artifactId>maven-release-plugin</artifactId> |
| 86 | + <version>2.3.2</version> |
| 87 | + <configuration> |
| 88 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 89 | + </configuration> |
| 90 | + </plugin> |
| 91 | + <plugin> |
| 92 | + <groupId>com.jayway.maven.plugins.android.generation2</groupId> |
| 93 | + <artifactId>android-maven-plugin</artifactId> |
| 94 | + <version>${android-maven.version}</version> |
| 95 | + <configuration> |
| 96 | + <sdk> |
| 97 | + <platform>${android.platform}</platform> |
| 98 | + </sdk> |
| 99 | + <undeployBeforeDeploy>true</undeployBeforeDeploy> |
| 100 | + <source>${sourceCompatibility}</source> |
| 101 | + <target>${sourceCompatibility}</target> |
| 102 | + </configuration> |
| 103 | + <extensions>true</extensions> |
| 104 | + </plugin> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-eclipse-plugin</artifactId> |
| 108 | + <version>2.8</version> |
| 109 | + <configuration> |
| 110 | + <excludes> |
| 111 | + <exclude>com.google.android:android</exclude> |
| 112 | + </excludes> |
| 113 | + <buildOutputDirectory>bin</buildOutputDirectory> |
| 114 | + <classpathContainers> |
| 115 | + <classpathContainer>com.android.ide.eclipse.adt.ANDROID_FRAMEWORK</classpathContainer> |
| 116 | + </classpathContainers> |
| 117 | + <additionalProjectnatures> |
| 118 | + <projectnature>com.android.ide.eclipse.adt.AndroidNature</projectnature> |
| 119 | + </additionalProjectnatures> |
| 120 | + <additionalBuildcommands> |
| 121 | + <buildcommand>com.android.ide.eclipse.adt.ResourceManagerBuilder</buildcommand> |
| 122 | + <buildcommand>com.android.ide.eclipse.adt.PreCompilerBuilder</buildcommand> |
| 123 | + <buildcommand>com.android.ide.eclipse.adt.ApkBuilder</buildcommand> |
| 124 | + </additionalBuildcommands> |
| 125 | + </configuration> |
| 126 | + </plugin> |
| 127 | + </plugins> |
| 128 | + </pluginManagement> |
| 129 | + <sourceDirectory>src</sourceDirectory> |
| 130 | + </build> |
| 131 | +</project> |
0 commit comments