forked from jfeinstein10/SlidingMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jfeinstein10#415 from donnfelker/master
POM Updates required by Sonatype for Preparation for Sonatype Push
- Loading branch information
Showing
1 changed file
with
41 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,55 @@ | ||
<?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"> | ||
|
||
<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.jeremyfeinstein.slidingmenu</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>1.3-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<version>1.3-SNAPSHOT</version> | ||
|
||
<name>SlidingMenu (Parent)</name> | ||
<description>SlidingMenu is an Open Source Android library that allows developers to easily create applications with sliding menus like those made popular in the Google+, YouTube, and Facebook apps.</description> | ||
<url>https://github.com/jfeinstein10/SlidingMenu</url> | ||
<inceptionYear>2012</inceptionYear> | ||
|
||
<modules> | ||
<module>library</module> | ||
<module>library-maps-support</module> | ||
</modules> | ||
|
||
<scm> | ||
<url>https://github.com/jfeinstein10/SlidingMenu</url> | ||
<connection>scm:git:git://github.com/jfeinstein10/SlidingMenu.git</connection> | ||
<developerConnection>scm:git:[email protected]:jfeinstein10/SlidingMenu.git</developerConnection> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Jeremy Feinstein</name> | ||
<email>[email protected]</email> | ||
<id>jfeinstein10</id> | ||
<url>http://jeremyfeinstein.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> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
|