组织ID: |
com.microsoft.azure |
项目ID: |
adal4j |
版本: |
1.6.0 |
最后修改时间: |
2018-08-03 02:57:45 |
包类型: |
jar |
标题: |
adal4j |
描述: |
Azure active directory library for Java gives you the ability to add Windows Azure Active Directory
authentication to your web 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.
|
相关URL: |
https://github.com/AzureAD/azure-activedirectory-library-for-java |
大小: |
92.24KB |
|
Maven引入代码: |
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>adal4j</artifactId>
<version>1.6.0</version>
</dependency>
|
Gradle引入代码: |
com.microsoft.azure:adal4j:1.6.0
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>adal4j</artifactId>
<version>1.6.0</version>
<packaging>jar</packaging>
<name>adal4j</name>
<description>
Azure active directory library for Java gives you the ability to add Windows Azure Active Directory
authentication to your web 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/AzureAD/azure-activedirectory-library-for-java</url>
<developers>
<developer>
<id>msopentech</id>
<name>Microsoft Open Technologies, Inc.</name>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
</license>
</licenses>
<inceptionYear>2013</inceptionYear>
<scm>
<url>https://github.com/AzureAD/azure-activedirectory-library-for-java.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<id>standard-jdk</id>
<activation>
<file>
<exists>${java.home}/../lib/tools.jar</exists>
</file>
</activation>
<properties>
<tools-jar>${java.home}/../lib/tools.jar</tools-jar>
</properties>
</profile>
<profile>
<id>apple-jdk</id>
<activation>
<activeByDefault>true</activeByDefault>
<file>
<exists>${java.home}/../Classes/classes.jar</exists>
</file>
</activation>
<properties>
<tools-jar>${java.home}/../Classes/classes.jar</tools-jar>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
<version>5.24.1</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-testng</artifactId>
<version>1.6.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-easymock</artifactId>
<version>1.6.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
<version>2.0.3</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.10</version>
<configuration>
<argLine>-noverify</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<instrumentation>
<excludes>
<exclude>*/*Test.class</exclude>
</excludes>
</instrumentation>
<formats>
<format>xml</format>
<format>html</format>
</formats>
</configuration>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.6</version>
<scope>system</scope>
<systemPath>${tools-jar}</systemPath>
</dependency>
</dependencies>
</plugin>
<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>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.4</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<includeTests>false</includeTests>
<failOnError>true</failOnError>
<excludeFilterFile>${project.basedir}/build/findbugs-exclude.xml</excludeFilterFile>
<plugins>
<plugin>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-plugin</artifactId>
<version>1.6.0</version>
</plugin>
</plugins>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>xml</format>
<format>html</format>
</formats>
<instrumentation>
<includes/>
<excludes/>
</instrumentation>
<aggregate>false</aggregate>
</configuration>
<executions>
<execution>
<id>package-9af52907-6506-4b87-b16a-9883edee41bc</id>
<goals>
<goal>cobertura</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/MSFTSIG.SF
META-INF/MSFTSIG.RSA
META-INF/maven/com.microsoft.azure/adal4j/pom.xml
META-INF/maven/com.microsoft.azure/adal4j/pom.properties
com.microsoft.aad.adal4j.AcquireDeviceCodeCallable.class
com.microsoft.aad.adal4j.AcquireTokenCallable.class
com.microsoft.aad.adal4j.AdalAccessTokenResponse.class
com.microsoft.aad.adal4j.AdalAuthorizationGrant.class
com.microsoft.aad.adal4j.AdalCallable.class
com.microsoft.aad.adal4j.AdalClaimsChallengeException.class
com.microsoft.aad.adal4j.AdalDeviceCodeAuthorizationGrant.class
com.microsoft.aad.adal4j.AdalErrorCode.class
com.microsoft.aad.adal4j.AdalIntegratedAuthorizationGrant.class
com.microsoft.aad.adal4j.AdalOAuthAuthorizationGrant.class
com.microsoft.aad.adal4j.AdalOAuthRequest.class
com.microsoft.aad.adal4j.AdalTokenRequest.class
com.microsoft.aad.adal4j.AsymmetricKeyCredential.class
com.microsoft.aad.adal4j.AuthenticationAuthority.class
com.microsoft.aad.adal4j.AuthenticationCallback.class
com.microsoft.aad.adal4j.AuthenticationConstants.class
com.microsoft.aad.adal4j.AuthenticationContext.class
com.microsoft.aad.adal4j.AuthenticationErrorMessage.class
com.microsoft.aad.adal4j.AuthenticationException.class
com.microsoft.aad.adal4j.AuthenticationResult.class
com.microsoft.aad.adal4j.AuthorityType.class
com.microsoft.aad.adal4j.BindingPolicy.class
com.microsoft.aad.adal4j.ClientAssertion.class
com.microsoft.aad.adal4j.ClientAuthenticationPost.class
com.microsoft.aad.adal4j.ClientCredential.class
com.microsoft.aad.adal4j.ClientDataHttpHeaders.class
com.microsoft.aad.adal4j.DeviceCode.class
com.microsoft.aad.adal4j.DeviceCodeRequest.class
com.microsoft.aad.adal4j.DeviceCodeTokenErrorResponse.class
com.microsoft.aad.adal4j.HttpHelper.class
com.microsoft.aad.adal4j.InstanceDiscoveryResponse.class
com.microsoft.aad.adal4j.JsonHelper.class
com.microsoft.aad.adal4j.JwtHelper.class
com.microsoft.aad.adal4j.LogHelper.class
com.microsoft.aad.adal4j.MexParser$1.class
com.microsoft.aad.adal4j.MexParser$NegotiateAuthenticationPolicySelector.class
com.microsoft.aad.adal4j.MexParser$PolicySelector.class
com.microsoft.aad.adal4j.MexParser$WsTrustEndpointPolicySelector.class
com.microsoft.aad.adal4j.MexParser.class
com.microsoft.aad.adal4j.NamespaceContextImpl.class
com.microsoft.aad.adal4j.SafeDocumentBuilderFactory.class
com.microsoft.aad.adal4j.SAML11BearerGrant.class
com.microsoft.aad.adal4j.StringHelper.class
com.microsoft.aad.adal4j.UserAssertion.class
com.microsoft.aad.adal4j.UserDiscoveryRequest.class
com.microsoft.aad.adal4j.UserDiscoveryResponse.class
com.microsoft.aad.adal4j.UserInfo.class
com.microsoft.aad.adal4j.WSTrustRequest.class
com.microsoft.aad.adal4j.WSTrustResponse.class
com.microsoft.aad.adal4j.WSTrustVersion.class
|
依赖Jar: |
javax.servlet-api-3.0.1.jar
/javax.servlet/javax.servlet-api/3.0.1
查看javax.servlet-api所有版本文件
oauth2-oidc-sdk-5.24.1.jar
/com.nimbusds/oauth2-oidc-sdk/5.24.1
查看oauth2-oidc-sdk所有版本文件
gson-2.8.0.jar
/com.google.code.gson/gson/2.8.0
查看gson所有版本文件
slf4j-api-1.7.21.jar
/org.slf4j/slf4j-api/1.7.21
查看slf4j-api所有版本文件
commons-codec-1.10.jar
/commons-codec/commons-codec/1.10
查看commons-codec所有版本文件
testng-6.8.8.jar
/org.testng/testng/6.8.8
查看testng所有版本文件
powermock-module-testng-1.6.5.jar
/org.powermock/powermock-module-testng/1.6.5
查看powermock-module-testng所有版本文件
powermock-api-easymock-1.6.5.jar
/org.powermock/powermock-api-easymock/1.6.5
查看powermock-api-easymock所有版本文件
easymock-3.4.jar
/org.easymock/easymock/3.4
查看easymock所有版本文件
cobertura-2.0.3.jar
/net.sourceforge.cobertura/cobertura/2.0.3
查看cobertura所有版本文件
|