127 lines
4.5 KiB
XML
127 lines
4.5 KiB
XML
<?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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>7</version>
|
|
</parent>
|
|
|
|
<groupId>net.simonvt</groupId>
|
|
<artifactId>android-menudrawer-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>2.0.3-SNAPSHOT</version>
|
|
|
|
<name>Android MenuDrawer (Parent)</name>
|
|
<description>A menu drawer implementation which allows dragging of both the content, and the entire window.</description>
|
|
<url>https://github.com/SimonVT/android-menudrawer</url>
|
|
<inceptionYear>2012</inceptionYear>
|
|
|
|
<modules>
|
|
<module>library</module>
|
|
<module>samples</module>
|
|
</modules>
|
|
|
|
<scm>
|
|
<url>http://github.com/SimonVT/android-menudrawer/</url>
|
|
<connection>scm:git:git://github.com/SimonVT/android-menudrawer.git</connection>
|
|
<developerConnection>scm:git:git@github.com:SimonVT/android-menudrawer.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<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>
|
|
|
|
<issueManagement>
|
|
<system>GitHub Issues</system>
|
|
<url>https://github.com/SimonVT/android-menudrawer/issues</url>
|
|
</issueManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>1.6</java.version>
|
|
<android.version>4.1.1.4</android.version>
|
|
<android.platform>16</android.platform>
|
|
|
|
<android-support.version>r7</android-support.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.android</groupId>
|
|
<artifactId>android</artifactId>
|
|
<version>${android.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.0</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
|
<artifactId>android-maven-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<configuration>
|
|
<sdk>
|
|
<platform>${android.platform}</platform>
|
|
</sdk>
|
|
</configuration>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
<configuration>
|
|
<failsOnError>true</failsOnError>
|
|
<!-- Relative to module directory. -->
|
|
<configLocation>../checkstyle.xml</configLocation>
|
|
<consoleOutput>true</consoleOutput>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>checkstyle</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|