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.
Adding updated versions of bcpkix and jscep
- Loading branch information
Showing
2 changed files
with
204 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
<!-- | ||
~ Copyright (c) 2016, 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.bouncycastle</groupId> | ||
<artifactId>bcpkix-jdk15on</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>bcpkix</name> | ||
<version>1.52.0.wso2v2</version> | ||
<description> | ||
This bundle will represent bouncycastle PKIX 1.52 | ||
</description> | ||
<url>http://wso2.org</url> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>wso2.releases</id> | ||
<name>WSO2 internal Repository</name> | ||
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcpkix-jdk15on</artifactId> | ||
<version>1.52</version> | ||
<!-- By setting optional false, dependent projects of this orbit bundle will be able to see bcprov-jdk15on library as a transitive dependency. | ||
This is required because we are embedding bcprov-jdk15on library inside this orbit bundle without extracting the content, | ||
becuase bcprov-jdk15on library is signed. | ||
If you embed a dependency and set optional to true, then dependent projects will not be alble to compile their source with this orbit bundle.--> | ||
<optional>false</optional> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>1.4.0</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> | ||
<Bundle-Name>${project.artifactId}</Bundle-Name> | ||
<Import-Package> | ||
org.bouncycastle.x509.*;version="${imp.pkg.version.range.bcprov}", | ||
org.bouncycastle.util.*;version="${imp.pkg.version.range.bcprov}", | ||
org.bouncycastle.math.*;version="${imp.pkg.version.range.bcprov}", | ||
org.bouncycastle.jce.*;version="${imp.pkg.version.range.bcprov}", | ||
org.bouncycastle.jcajce.*;version="${imp.pkg.version.range.bcprov}", | ||
org.bouncycastle.crypto.*;version="${imp.pkg.version.range.bcprov}", | ||
org.bouncycastle.asn1.*;version="${imp.pkg.version.range.bcprov}", | ||
*;resolution:=optional | ||
</Import-Package> | ||
<Embed-Dependency>bcpkix-jdk15on;scope=compile|runtime;inline=false | ||
</Embed-Dependency> | ||
<_exportcontents> | ||
!org.bouncycastle.x509, | ||
!org.bouncycastle.util, | ||
!org.bouncycastle.pqc, | ||
!org.bouncycastle.ocsp, | ||
!org.bouncycastle.math, | ||
!org.bouncycastle.jce, | ||
!org.bouncycastle.jcajce, | ||
!org.bouncycastle.i18n, | ||
!org.bouncycastle.crypto, | ||
!org.bouncycastle.asn1, | ||
org.bouncycastle.cert;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.bc;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.cmp;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.crmf;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.crmf.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.ocsp;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.ocsp.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.selector;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cert.selector.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cms;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cms.bc;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.cms.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.dvcs;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.eac;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.eac.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.eac.operator;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.eac.operator.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.mozilla;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.openssl;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.openssl.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.operator;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.operator.bc;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.operator.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.pkcs;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.pkcs.bc;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.pkcs.jcajce;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.tsp;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.tsp.cms;version="${exp.pkg.version.bcpkix}", | ||
org.bouncycastle.voms;version="${exp.pkg.version.bcpkix}" | ||
</_exportcontents> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<properties> | ||
<exp.pkg.version.bcpkix>1.52.0.wso2v2</exp.pkg.version.bcpkix> | ||
<imp.pkg.version.range.bcprov>[1.52.0, 1.55.0)</imp.pkg.version.range.bcprov> | ||
</properties> | ||
|
||
</project> |
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,74 @@ | ||
<!-- | ||
~ Copyright (c) 2016, 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.com.google.code.jscep</groupId> | ||
<artifactId>jscep</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>commons.io.wso2</name> | ||
<version>2.3.0.wso2v2</version> | ||
<description> | ||
JSCEP bundle 2.3.0.wso2v2 | ||
</description> | ||
<url>http://wso2.org</url> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>wso2.releases</id> | ||
<name>WSO2 internal Repository</name> | ||
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.code.jscep</groupId> | ||
<artifactId>jscep</artifactId> | ||
<version>2.3.0</version> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>1.4.0</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> | ||
<Bundle-Name>${project.artifactId}</Bundle-Name> | ||
<Export-Package> | ||
org.jscep.*;version="2.3.0", | ||
</Export-Package> | ||
<Import-Package> | ||
!org.jscep.*, | ||
org.apache.commons.io.*;version="[2.4.0, 2.5.0)", | ||
*;resolution:=optional | ||
</Import-Package> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |