Skip to content

Commit

Permalink
Merge pull request #41 from /issues/40-export-priv
Browse files Browse the repository at this point in the history
Fix #40: Update dependencies, add method for exporting private key
  • Loading branch information
petrdvorak authored Jun 7, 2022
2 parents 10479c1 + 71901e7 commit 51cb4e8
Show file tree
Hide file tree
Showing 4 changed files with 150 additions and 78 deletions.
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,29 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

**/.DS_Store
**/target/
**/src/main/java/generated/
**/.springBeans

### NetBeans template
**/nbproject/private/
**/nbproject/

### Eclipse template
**/.settings
**/.project
**/.classpath

### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
*.iml
## Directory-based project format:
.idea/
.mvn
dist/

### JRebel
rebel.xml

26 changes: 16 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

<groupId>com.wultra</groupId>
<artifactId>ssl-pinning-tool</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.9.RELEASE</version>
<version>2.6.8</version>
</parent>

<inceptionYear>2018</inceptionYear>
Expand Down Expand Up @@ -64,32 +64,38 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.69</version>
<version>1.70</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.69</version>
<version>1.70</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-java-crypto</artifactId>
<version>1.0.0</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.4</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.2.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -100,14 +106,14 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.0.9.RELEASE</version>
<version>2.6.8</version>
<configuration>
<mainClass>com.wultra.security.ssl.pinning.Application</mainClass>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<version>2.22.2</version>
</plugin>
</plugins>
</build>
Expand Down
Loading

0 comments on commit 51cb4e8

Please sign in to comment.