-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update pom.xml to include description, url, developers for maven release
- Loading branch information
Showing
1 changed file
with
123 additions
and
112 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,123 +1,134 @@ | ||
<?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> | ||
<groupId>com.microsoftopentechnologies</groupId> | ||
<artifactId>adal</artifactId> | ||
<version>0.6-alpha</version> | ||
<packaging>aar</packaging> | ||
<name>adal</name> | ||
<scm> | ||
<url>https://github.com/MSOpenTech/azure-activedirectory-library-for-android.git</url> | ||
</scm> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.microsoftopentechnologies</groupId> | ||
<artifactId>adal</artifactId> | ||
<version>0.6-alpha</version> | ||
<packaging>aar</packaging> | ||
<name>adal</name> | ||
<description> | ||
Azure active directory library for Android gives you the ability to add Windows Azure Active Directory authentication to your application with just a few lines of additional code. Using our ADAL SDKs you can quickly and easily extend your existing application to all the employees that use Windows Azure AD and Active Directory on-premises using Active Directory Federation Services, including Office365 customers. | ||
</description> | ||
<url>https://github.com/MSOpenTech/azure-activedirectory-library-for-android</url> | ||
<developers> | ||
<developer> | ||
<id>msopentech</id> | ||
<name>Microsoft Open Technologies, Inc.</name> | ||
</developer> | ||
</developers> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
</license> | ||
</licenses> | ||
<properties> | ||
<android.support.version>[18,)</android.support.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>android</groupId> | ||
<artifactId>android</artifactId> | ||
<version>[4.4.0,)</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>android.support</groupId> | ||
<artifactId>compatibility-v4</artifactId> | ||
<version>${android.support.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.2.4</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<inceptionYear>2003</inceptionYear> | ||
<scm> | ||
<url>https://github.com/MSOpenTech/azure-activedirectory-library-for-android.git</url> | ||
</scm> | ||
<properties> | ||
<android.support.version>[18,)</android.support.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>android</groupId> | ||
<artifactId>android</artifactId> | ||
<version>[4.4.0,)</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>android.support</groupId> | ||
<artifactId>compatibility-v4</artifactId> | ||
<version>${android.support.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.2.4</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>install-jar</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>copy</goal> | ||
</goals> | ||
<configuration> | ||
<artifactItems> | ||
<artifactItem> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.2.4</version> | ||
</artifactItem> | ||
<artifactItem> | ||
<groupId>android.support</groupId> | ||
<artifactId>compatibility-v4</artifactId> | ||
<version>LATEST</version> | ||
</artifactItem> | ||
</artifactItems> | ||
<outputDirectory>./libs</outputDirectory> | ||
<stripVersion>true</stripVersion> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | ||
<artifactId>android-maven-plugin</artifactId> | ||
<version>3.8.2</version> | ||
<configuration> | ||
<androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile> | ||
<assetsDirectory>${project.basedir}/assets</assetsDirectory> | ||
<resourceDirectory>${project.basedir}/res</resourceDirectory> | ||
<nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory> | ||
<sdk> | ||
<platform>19</platform> | ||
</sdk> | ||
<deleteConflictingFiles>true</deleteConflictingFiles> | ||
<undeployBeforeDeploy>true</undeployBeforeDeploy> | ||
</configuration> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>install-jar</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>copy</goal> | ||
</goals> | ||
<configuration> | ||
<artifactItems> | ||
<artifactItem> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.2.4</version> | ||
</artifactItem> | ||
<artifactItem> | ||
<groupId>android.support</groupId> | ||
<artifactId>compatibility-v4</artifactId> | ||
<version>LATEST</version> | ||
</artifactItem> | ||
</artifactItems> | ||
<outputDirectory>./libs</outputDirectory> | ||
<stripVersion>true</stripVersion> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | ||
<artifactId>android-maven-plugin</artifactId> | ||
<version>3.8.2</version> | ||
<configuration> | ||
<androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile> | ||
<assetsDirectory>${project.basedir}/assets</assetsDirectory> | ||
<resourceDirectory>${project.basedir}/res</resourceDirectory> | ||
<nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory> | ||
<sdk> | ||
<platform>19</platform> | ||
</sdk> | ||
<deleteConflictingFiles>true</deleteConflictingFiles> | ||
<undeployBeforeDeploy>true</undeployBeforeDeploy> | ||
</configuration> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |