#!/bin/sh -
#
# build script for 1.3
#
# If it's given a buildname it creates a subdirectory and places a build in it,
# otherwise it just creates the docs and class files.
#

WINDOWTITLE='Bouncy Castle Cryptography 1.20 API Specification'
HEADER='<b>Bouncy Castle Cryptography 1.20</b>'
DOCTITLE='Bouncy Castle 1.20 API Specification'

javadoc -windowtitle "$WINDOWTITLE" -doctitle "$DOCTITLE" \
    -header "$HEADER" -group "Core Packages" "org.bouncycastle*" \
    -group "Example Packages" "example*" \
    -d docs -sourcepath src \
    javax.crypto  \
    javax.crypto.interfaces \
    javax.crypto.spec \
    org.bouncycastle.jce \
    org.bouncycastle.asn1 \
    org.bouncycastle.asn1.cms \
    org.bouncycastle.asn1.smime \
    org.bouncycastle.asn1.pkcs \
    org.bouncycastle.asn1.x509 \
    org.bouncycastle.asn1.x9 \
    org.bouncycastle.asn1.ocsp \
    org.bouncycastle.asn1.oiw \
    org.bouncycastle.asn1.sec \
    org.bouncycastle.asn1.util \
    org.bouncycastle.asn1.misc \
    org.bouncycastle.asn1.test \
    org.bouncycastle.bcpg \
    org.bouncycastle.bcpg.sig \
    org.bouncycastle.math.ec \
    org.bouncycastle.crypto \
    org.bouncycastle.crypto.agreement \
    org.bouncycastle.crypto.digests \
    org.bouncycastle.crypto.encodings \
    org.bouncycastle.crypto.engines \
    org.bouncycastle.crypto.generators \
    org.bouncycastle.crypto.io \
    org.bouncycastle.crypto.macs \
    org.bouncycastle.crypto.modes \
    org.bouncycastle.crypto.paddings \
    org.bouncycastle.crypto.params \
    org.bouncycastle.crypto.signers \
    org.bouncycastle.crypto.test \
    org.bouncycastle.crypto.examples \
    org.bouncycastle.jce.interfaces \
    org.bouncycastle.jce.spec \
    org.bouncycastle.jce.examples \
    org.bouncycastle.jce.provider \
    org.bouncycastle.jce.provider.test \
    org.bouncycastle.util.encoders \
    org.bouncycastle.util.test \
    org.bouncycastle.ocsp \
    org.bouncycastle.cms \
    org.bouncycastle.cms.test \
    org.bouncycastle.mail.smime \
    org.bouncycastle.mail.smime.handlers \
    org.bouncycastle.mail.smime.test \
    org.bouncycastle.mail.smime.examples \
    org.bouncycastle.openpgp \
    org.bouncycastle.openpgp.examples \
    org.bouncycastle.openpgp.test \
    org.bouncycastle.openssl > /dev/null \

