|
|
Author: djencks
Date: Wed Apr 2 11:18:30 2008
New Revision: 644002
URL: http://svn.apache.org/viewvc?rev=644002&view=rev
Log:
Better excludes and partial includes in bc repackaging. License/notice files
wrong
Modified:
directory/shared/branches/bigbang/shared-bouncycastle-reduced/pom.xml
Modified: directory/shared/branches/bigbang/shared-bouncycastle-reduced/pom.xml
URL:
http://svn.apache.org/viewvc/directory/shared/branches/bigbang/shared-bouncycastle-reduced/pom.xml?rev=644002&r1=644001&r2=644002&view=diff
==============================================================================
--- directory/shared/branches/bigbang/shared-bouncycastle-reduced/pom.xml
(original)
+++ directory/shared/branches/bigbang/shared-bouncycastle-reduced/pom.xml Wed
Apr 2 11:18:30 2008
@@ -45,17 +45,36 @@
<configuration>
<artifactSet>
<excludes>
- <exclude> org.slf4j:slf4j-api</exclude>
+ <exclude>org.slf4j:slf4j-api</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>bouncycastle:bcprov-jdk15</artifact>
+ <!-- includes contains some of the bc classes needed for
startTLS functionality. List is not yet complete-->
+ <!-- It is much easier to experiment with the installer
noarch bundle which is extracting files from bc directly -->
+<!--
<includes>
<include>org/bouncycastle/jce/provider/BouncyCastleProvider.class</include>
<include>org/bouncycastle/x509/X509V1CertificateGenerator.class</include>
+
<include>org/bouncycastle/jce/interfaces/ConfigurableProvider.class</include>
+
<include>org/bouncycastle/jce/provider/symmetric/AESMappings.class</include>
+
<include>org/bouncycastle/asn1/nist/NISTObjectIdentifiers.class</include>
+
<include>org/bouncycastle/asn1/DERObjectIdentifier.class</include>
+ <include>org/bouncycastle/asn1/ASN1Object.class</include>
+ <include>org/bouncycastle/asn1/DERObject.class</include>
+ <include>org/bouncycastle/asn1/DERTags.class</include>
+
<include>org/bouncycastle/asn1/ASN1Encodable.class</include>
+ <include>org/bouncycastle/asn1/DEREncodable.class</include>
+
<include>org/bouncycastle/jce/provider/symmetric/CamelliaMappings.class</include>
+
<include>org/bouncycastle/asn1/ntt/NTTObjectIdentifiers.class</include>
</includes>
+-->
<excludes>
+ <!-- signature files -->
+ <exclude>META-INF/BCKEY.SF</exclude>
+ <exclude>META-INF/BCKEY.DSA</exclude>
+ <!-- IDEA patent implementation -->
<exclude>org/bouncycastle/crypto/engines/IDEAEngine.class</exclude>
<exclude>org/bouncycastle/asn1/misc/IDEACBCPar.class</exclude>
<exclude>org/bouncycastle/jce/provider/JDKAlgorithmParameterGenerator$IDEA.class</exclude>
|
|