You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
189 lines
5.2 KiB
189 lines
5.2 KiB
<?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>com.actionbarsherlock</groupId> |
|
<artifactId>parent</artifactId> |
|
<packaging>pom</packaging> |
|
<version>4.2.0</version> |
|
|
|
<name>ActionBarSherlock (Parent)</name> |
|
<description>Android library for implementing the action bar design pattern using the backported sources of Ice Cream Sandwich.</description> |
|
<url>http://actionbarsherlock.com</url> |
|
<inceptionYear>2011</inceptionYear> |
|
|
|
<modules> |
|
<module>library</module> |
|
<module>samples</module> |
|
</modules> |
|
|
|
<scm> |
|
<url>https://github.com/JakeWharton/ActionBarSherlock/</url> |
|
<connection>scm:git:git://github.com/JakeWharton/ActionBarSherlock.git</connection> |
|
<developerConnection>scm:git:git@github.com:JakeWharton/ActionBarSherlock.git</developerConnection> |
|
</scm> |
|
|
|
<developers> |
|
<developer> |
|
<name>Jake Wharton</name> |
|
<email>jakewharton@gmail.com</email> |
|
<id>jakewharton</id> |
|
<url>http://jakewharton.com</url> |
|
<timezone>-5</timezone> |
|
<roles> |
|
<role>developer</role> |
|
</roles> |
|
</developer> |
|
</developers> |
|
|
|
<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> |
|
|
|
<organization> |
|
<name>Jake Wharton</name> |
|
<url>http://jakewharton.com</url> |
|
</organization> |
|
|
|
<issueManagement> |
|
<system>GitHub Issues</system> |
|
<url>https://github.com/JakeWharton/ActionBarSherlock/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.0.1.2</android.version> |
|
<android.platform>14</android.platform> |
|
<android-support.version>r7</android-support.version> |
|
|
|
<android-maven.version>3.3.2</android-maven.version> |
|
<junit.version>4.10</junit.version> |
|
|
|
<github.downloads.repositoryOwner>JakeWharton</github.downloads.repositoryOwner> |
|
<github.downloads.repositoryName>ActionBarSherlock</github.downloads.repositoryName> |
|
</properties> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.google.android</groupId> |
|
<artifactId>android</artifactId> |
|
<version>${android.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.google.android</groupId> |
|
<artifactId>support-v4</artifactId> |
|
<version>${android-support.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.nineoldandroids</groupId> |
|
<artifactId>library</artifactId> |
|
<version>2.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.rtyley</groupId> |
|
<artifactId>roboguice-sherlock</artifactId> |
|
<version>1.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>${junit.version}</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<build> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>2.5</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.3.2</version> |
|
<configuration> |
|
<sdk> |
|
<platform>${android.platform}</platform> |
|
</sdk> |
|
</configuration> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>2.8</version> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-checkstyle-plugin</artifactId> |
|
<version>2.9.1</version> |
|
<configuration> |
|
<failsOnError>true</failsOnError> |
|
</configuration> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-site-plugin</artifactId> |
|
<version>3.0</version> |
|
<configuration> |
|
<skip>true</skip> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
|
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-release-plugin</artifactId> |
|
<version>2.2.2</version> |
|
<configuration> |
|
<autoVersionSubmodules>true</autoVersionSubmodules> |
|
</configuration> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>com.github.github</groupId> |
|
<artifactId>site-maven-plugin</artifactId> |
|
<version>0.5</version> |
|
<executions> |
|
<execution> |
|
<phase>site</phase> |
|
<goals> |
|
<goal>site</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<message>Creating site for ${project.version}.</message> |
|
<outputDirectory>website</outputDirectory> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|