pac4j-openid
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.pac4j</groupId> <artifactId>pac4j-openid</artifactId> <version>4.5.8</version> </dependency>
<?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>4.5.8</version> </parent> <artifactId>pac4j-openid</artifactId> <packaging>jar</packaging> <name>pac4j: Java web security via OpenId protocol</name> <properties> <openid4java.version>1.0.0</openid4java.version> <xml-apis.version>2.0.2</xml-apis.version> </properties> <dependencies> <dependency> <groupId>org.pac4j</groupId> <artifactId>pac4j-core</artifactId> </dependency> <dependency> <groupId>org.openid4java</groupId> <artifactId>openid4java</artifactId> <version>${openid4java.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>${xml-apis.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </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> <!-- for testing --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Automatic-Module-Name>pac4j.openid</Automatic-Module-Name> <Bundle-SymbolicName>org.pac4j.openid</Bundle-SymbolicName> <Export-Package>org.pac4j.openid.*;version=${project.version}</Export-Package> <Import-Package>*</Import-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>