Skip to content

Commit

Permalink
Add changes for wso2/api-manager#2943
Browse files Browse the repository at this point in the history
  • Loading branch information
YasasRangika committed Jul 3, 2024
1 parent bcd6df2 commit dc7ecfa
Show file tree
Hide file tree
Showing 8 changed files with 2,283 additions and 16 deletions.
19 changes: 9 additions & 10 deletions abdera/1.0.0.wso2v4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,19 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>

<version>2.4.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-Vendor>WSO2 Inc</Bundle-Vendor>
<Bundle-Description>${project.description}</Bundle-Description>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Export-Package>
org.apache.abdera.*;version="${project.version}"
</Export-Package>
<Bundle-Name>${pom.artifactId}</Bundle-Name>
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
<Export-Package>org.apache.abdera.*;-split-package:=merge-first</Export-Package>
<Private-Package>
</Private-Package>
<Import-Package>
!org.apache.abdera.*,
javax.xml.stream.*;version="1.0.1",
javax.activation.*;version="[0.0.0, 2.0.0)"
javax.activation.*;version="[0.0.0, 2.0.0)",
*;resolution:=optional
</Import-Package>
<Include-Resource>
META-INF/services/org.apache.abdera.factory.ExtensionFactory=META-INF/services/org.apache.abdera.factory.ExtensionFactory,
Expand All @@ -103,6 +101,7 @@
</plugin>
</plugins>
</build>

<properties>
<version.abdera>1.0-wso2v2</version.abdera>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion json-schema-validator-all/2.2.6.wso2v4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@

<!--OSGI version range-->
<com.google.common.imp.pkg.version.range>[19.0.0,20.0.0]</com.google.common.imp.pkg.version.range>
<javax.mail.internet.imp.pkg.version.range>[1.4.0,1.5.0)</javax.mail.internet.imp.pkg.version.range>
<javax.mail.internet.imp.pkg.version.range>[1.6.0,1.7.0)</javax.mail.internet.imp.pkg.version.range>
<org.joda.time.imp.pkg.version.range>[2.6.0, 3.0.0)</org.joda.time.imp.pkg.version.range>
<jackson.databind.imp.pkg.version.range>[2.6.0, 3.0.0)</jackson.databind.imp.pkg.version.range>
<com.fasterxml.jackson.core.imp.pkg.version.range>[2.6.0, 3.0.0)</com.fasterxml.jackson.core.imp.pkg.version.range>
Expand Down
9 changes: 4 additions & 5 deletions log4j/1.2.17.wso2v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
<version>${version.log4j}</version>
</dependency>
</dependencies>
Expand Down Expand Up @@ -73,8 +73,7 @@
</plugins>
</build>
<properties>
<version.log4j>1.2.17</version.log4j>
<orbit.version.log4j>${version.log4j}.wso2v1</orbit.version.log4j>
<version.log4j>1.2.19</version.log4j>
<orbit.version.log4j>1.2.17.wso2v1</orbit.version.log4j>
</properties>
</project>

105 changes: 105 additions & 0 deletions oltu/1.0.0.wso2v4/pom.xml
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>
Loading

0 comments on commit dc7ecfa

Please sign in to comment.