pushy: Native SSL provider not available under Windows after update to 0.8.1

I have use pushy for a long time, and it is really good for me. It works well when I use version 0.7.2, and this is my maven pom.xml:

        <dependency>
            <groupId>com.relayrides</groupId>
            <artifactId>pushy</artifactId>
            <version>0.7.2</version>
        </dependency>
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-tcnative-boringssl-static</artifactId>
            <version>1.1.33.Fork17</version>
        </dependency>

but when I just change the versions , it can not work:

        <dependency>
            <groupId>com.relayrides</groupId>
            <artifactId>pushy</artifactId>
            <version>0.8.1</version>
        </dependency>
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-tcnative-boringssl-static</artifactId>
            <version>1.1.33.Fork22</version>
        </dependency>

The log is :

Native SSL provider not available; will use JDK SSL provider.

So how can I solve this problem?

About this issue

  • Original URL
  • State: closed
  • Created 8 years ago
  • Comments: 21 (12 by maintainers)

Most upvoted comments

@petrdvorak everything is ok, Thank u all guys