ryantenney / passkit4j

Java library for generating Apple Passbook (.pkpass) files

Home Page:http://www.ryantenney.com/passkit4j/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why the update of bcmail-jdk15on?

fkrauthan opened this issue · comments

I am wondering why you changed the bcmail-jdk15on version from 1.46 to 1.47 after the 1.0.0 release. This cause now issues again since the other org.bouncycastle libs we are using are not released in 1.47 on maven. If there is no important reason for that can you change it back?

I'm sorry for the delayed response. I try to build libraries against the latest stable version of dependencies. If this is still an issue I'd recommend excluding the bouncycastle dependency when you declare the passkit4j dependency in maven:

<dependency>
    <groupId>com.ryantenney.passkit4j</groupId>
    <artifactId>passkit4j</artifactId>
    <version>1.0.1</version>
    <exclusions>
        <exclusion>
            <groupId>org.bouncycastle</groupId>
            <artifactId>bcmail-jdk15on</artifactId>
        </exclusion>
    </exclusions> 
</dependency>