Skip to content

Commit

Permalink
Implemented SSL support
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Spector committed Aug 28, 2014
1 parent 4a1e810 commit cdd9d21
Show file tree
Hide file tree
Showing 9 changed files with 734 additions and 53 deletions.
2 changes: 2 additions & 0 deletions assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
<outputDirectory>lib</outputDirectory>
<includes>
<include>mqtt-client-0.4.0.jar</include>
<include>bcprov-jdk15on-1.48.jar</include>
<include>bcpkix-jdk15on-1.48.jar</include>
</includes>
</fileSet>
<fileSet>
Expand Down
Binary file modified doc/example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@
<artifactId>mqtt-client</artifactId>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.48</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.48</version>
</dependency>
</dependencies>


Expand Down
Loading

0 comments on commit cdd9d21

Please sign in to comment.