openid4java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.wso2.orbit.org.openid4java</groupId>
<artifactId>openid4java</artifactId>
<version>1.0.0.wso2v5</version>
</dependency><!--
~ Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
~
-->
<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>org.wso2.orbit.org.openid4java</groupId>
<artifactId>openid4java</artifactId>
<packaging>bundle</packaging>
<name>WSO2 Carbon Orbit - OpenID4Java Library</name>
<version>1.0.0.wso2v5</version>
<description>
This bundle will export packages from OpenID4Java library.
</description>
<url>http://wso2.org</url>
<dependencies>
<dependency>
<groupId>org.openid4java</groupId>
<artifactId>openid4java</artifactId>
<version>${openid4java.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.openxri</groupId>
<artifactId>openxri-client</artifactId>
<version>${openxri-client.version}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jcl</artifactId>
</exclusion>
<exclusion>
<groupId>jug</groupId>
<artifactId>jug</artifactId>
</exclusion>
<exclusion>
<groupId>xml-security</groupId>
<artifactId>xmlsec</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openxri</groupId>
<artifactId>openxri-syntax</artifactId>
<version>${openxri-syntax.version}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jcl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>${nekohtml.version}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>wso2.releases</id>
<name>WSO2 internal Repository</name>
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>1.4.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Vendor>WSO2 Inc</Bundle-Vendor>
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${pom.artifactId}</Bundle-Name>
<Export-Package>
org.openid4java.*; version="${project.version}"
</Export-Package>
<Import-Package>
!org.openid4java.*,
com.google.inject;version="${code.google.imp.pkg.version.range}",
javax.crypto.*;version="${javax.crypto.version}",
javax.net.*;version="${javax.net.version}",
javax.servlet.*;version="${javax.servlet.imp.pkg.version.range}",
javax.xml.*;version="${javax.xml.version}",
net.sf.ehcache;version="${net.sf.ehcache.imp.pkg.version.range}",
org.apache.commons.codec.*;version="${commons.codec.imp.pkg.version.range}",
org.apache.commons.logging; version="${commons.logging.imp.pkg.version.range}",
org.apache.html.*;resolution:=optional,
org.apache.http.conn.*; version="${http.client.imp.pkg.version.range}",
org.apache.http.auth; version="${http.client.imp.pkg.version.range}",
org.apache.http.client.*; version="${http.client.imp.pkg.version.range}",
org.apache.http.impl.conn.*; version="${http.client.imp.pkg.version.range}",
org.apache.http.impl.client; version="${http.client.imp.pkg.version.range}",
org.apache.http.*; version="${http.imp.pkg.version.range}",
org.apache.xerces.*;resolution:=optional,
org.springframework.*;resolution:=optional,
org.w3c.*;version="${org.w3c.version}",
org.xml.sax.*;version="${org.xml.sax.version}",
com.ibm.icu.*;resolution:=optional,
org.apache.xml.*;resolution:=optional,
org.doomdark.uuid;resolution:=optional,
</Import-Package>
<Embed-Dependency>nekohtml,openxri-syntax,openxri-client;scope=compile|runtime;inline=false
</Embed-Dependency>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<openid4java.version>1.0.0</openid4java.version>
<openid4java.export.version>1.0.0</openid4java.export.version>
<net.sourceforge.nekohtml.version>1.9.13</net.sourceforge.nekohtml.version>
<code.google.imp.pkg.version.range>[1.3.0,1.4.0)</code.google.imp.pkg.version.range>
<javax.crypto.version>0.0.0</javax.crypto.version>
<javax.net.version>0.0.0</javax.net.version>
<javax.servlet.imp.pkg.version.range>[2.6.0,2.7.0)</javax.servlet.imp.pkg.version.range>
<javax.xml.version>0.0.0</javax.xml.version>
<net.sf.ehcache.imp.pkg.version.range>[1.5,1.6)</net.sf.ehcache.imp.pkg.version.range>
<commons.codec.imp.pkg.version.range>[1.4.0,2.0.0)</commons.codec.imp.pkg.version.range>
<commons.logging.imp.pkg.version.range>[1.2.0,1.3.0)</commons.logging.imp.pkg.version.range>
<http.client.imp.pkg.version.range>[4.5,5.0)</http.client.imp.pkg.version.range>
<http.imp.pkg.version.range>[4.3.3, 5.0.0)</http.imp.pkg.version.range>
<org.w3c.version>0.0.0</org.w3c.version>
<org.xml.sax.version>0.0.0</org.xml.sax.version>
<openxri-syntax.version>1.2.0</openxri-syntax.version>
<openxri-client.version>1.2.0</openxri-client.version>
<nekohtml.version>1.9.10</nekohtml.version>
</properties>
</project>