组织ID: |
org.pac4j |
项目ID: |
pac4j-http |
版本: |
2.2.0 |
最后修改时间: |
2018-07-27 17:47:47 |
包类型: |
jar |
标题: |
pac4j for HTTP protocol |
大小: |
39.24KB |
|
Maven引入代码: |
<dependency>
<groupId>org.pac4j</groupId>
<artifactId>pac4j-http</artifactId>
<version>2.2.0</version>
</dependency>
|
Gradle引入代码: |
org.pac4j:pac4j-http:2.2.0
|
下载Jar包: |
|
POM文件内容: |
<?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.pac4j</groupId>
<artifactId>pac4j</artifactId>
<version>2.2.0</version>
</parent>
<artifactId>pac4j-http</artifactId>
<packaging>jar</packaging>
<name>pac4j for HTTP protocol</name>
<properties>
<nanohttpd.version>2.3.1</nanohttpd.version>
</properties>
<dependencies>
<dependency>
<groupId>org.pac4j</groupId>
<artifactId>pac4j-core</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.pac4j</groupId>
<artifactId>pac4j-core</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.nanohttpd</groupId>
<artifactId>nanohttpd</artifactId>
<version>${nanohttpd.version}</version>
<scope>test</scope>
</dependency>
<!-- for testing -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>org.pac4j.http</Bundle-SymbolicName>
<Export-Package>org.pac4j.http.*;version=${project.version}</Export-Package>
<Import-Package>*</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.pac4j.http.authorization.authorizer.IpRegexpAuthorizer.class
org.pac4j.http.authorization.generator.RememberMeAuthorizationGenerator.class
org.pac4j.http.client.direct.CookieClient.class
org.pac4j.http.client.direct.DirectBasicAuthClient.class
org.pac4j.http.client.direct.DirectDigestAuthClient.class
org.pac4j.http.client.direct.DirectFormClient.class
org.pac4j.http.client.direct.HeaderClient.class
org.pac4j.http.client.direct.IpClient.class
org.pac4j.http.client.direct.ParameterClient.class
org.pac4j.http.client.indirect.FormClient.class
org.pac4j.http.client.indirect.IndirectBasicAuthClient.class
org.pac4j.http.credentials.authenticator.IpRegexpAuthenticator.class
org.pac4j.http.credentials.authenticator.RestAuthenticator.class
org.pac4j.http.credentials.authenticator.test.SimpleTestDigestAuthenticator.class
org.pac4j.http.credentials.authenticator.test.SimpleTestTokenAuthenticator.class
org.pac4j.http.credentials.authenticator.test.SimpleTestUsernamePasswordAuthenticator.class
org.pac4j.http.credentials.CredentialUtil.class
org.pac4j.http.credentials.DigestCredentials.class
org.pac4j.http.credentials.extractor.CookieExtractor.class
org.pac4j.http.credentials.extractor.DigestAuthExtractor.class
org.pac4j.http.credentials.extractor.IpExtractor$1.class
org.pac4j.http.credentials.extractor.IpExtractor.class
org.pac4j.http.profile.IpProfile.class
org.pac4j.http.profile.RestProfile.class
META-INF/maven/org.pac4j/pac4j-http/pom.xml
META-INF/maven/org.pac4j/pac4j-http/pom.properties
|
依赖Jar: |
nanohttpd-${nanohttpd.version}.jar
/org.nanohttpd/nanohttpd/${nanohttpd.version}
查看nanohttpd所有版本文件
|