forked from wso2/orbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add changes for wso2/api-manager#2943
- Loading branch information
1 parent
bcd6df2
commit dc7ecfa
Showing
8 changed files
with
2,283 additions
and
16 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
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
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
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 |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<!-- | ||
~ Copyright (c) 2015, 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.apache.oltu.oauth2</groupId> | ||
<artifactId>oltu</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>WSO2 Carbon Orbit - Apache OLTU Library</name> | ||
<version>1.0.0.wso2v4</version> | ||
<description> | ||
This bundle will export packages from Apache OLTU library. | ||
</description> | ||
<url>http://wso2.org</url> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.oltu.oauth2</groupId> | ||
<artifactId>org.apache.oltu.oauth2.common</artifactId> | ||
<version>${oltu.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.oltu.oauth2</groupId> | ||
<artifactId>org.apache.oltu.oauth2.authzserver</artifactId> | ||
<version>${oltu.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.oltu.oauth2</groupId> | ||
<artifactId>org.apache.oltu.oauth2.client</artifactId> | ||
<version>${oltu.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>wso2.releases</id> | ||
<name>WSO2 internal Repository</name> | ||
<url>https://maven.wso2.org/nexus/content/repositories/releases/</url> | ||
</repository> | ||
|
||
<snapshotRepository> | ||
<id>wso2.snapshots</id> | ||
<name>Apache Snapshot Repository</name> | ||
<url>https://maven.wso2.org/nexus/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
</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>${project.artifactId}</Bundle-SymbolicName> | ||
<Bundle-Name>${project.artifactId}</Bundle-Name> | ||
<Export-Package> | ||
org.apache.oltu.*; version="${project.version}" | ||
</Export-Package> | ||
<Import-Package> | ||
!org.apache.oltu.*, | ||
javax.servlet.*;version="${javax.servlet.version.range}", | ||
org.apache.commons.codec.*;version="${org.apache.commons.codec.version.range}";resolution:=optional, | ||
org.json.*;version="${org.json.version.range}", | ||
org.slf4j.*;version="${org.slf4j.version.range}" | ||
</Import-Package> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<properties> | ||
<oltu.version>1.0.0</oltu.version> | ||
<javax.servlet.version.range>[2.6.0,5.0.0)</javax.servlet.version.range> | ||
<org.apache.commons.codec.version.range>[1.4.0,2.0.0)</org.apache.commons.codec.version.range> | ||
<org.json.version.range>[3.0.0, 4.0.0)</org.json.version.range> | ||
<org.slf4j.version.range>[1.6.0,2.0.0)</org.slf4j.version.range> | ||
</properties> | ||
|
||
</project> |
Oops, something went wrong.