Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade JUnit and add OWASP plugin #87

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/.settings/
*.class
*.iml
.idea/
13 changes: 0 additions & 13 deletions .idea/libraries/Maven__junit_junit_maven_plugin_4_11.xml

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/libraries/Maven__org_hamcrest_hamcrest_all_1_3.xml

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml

This file was deleted.

7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Download the latest .jar from the releases tab and place it in your classpath.
Gradle users:

```
compile 'net.i2p.crypto:eddsa:0.3.0'
compile 'net.i2p.crypto:eddsa:0.3.1'
```

Java 7 and above are supported.
Expand Down Expand Up @@ -66,6 +66,11 @@ For ease of following, here are the main methods in ref10 and their equivalents
Important changes
-----------------

### 0.3.1 - Build improvements

- Upgraded JUnit to remove CVE-2020-15250 vulnerability
- Added OWASP plugin to check vulnerabilities

### 0.3.0

- The library has been extensively profiled for contention issues in a multi-threaded environment. The only
Expand Down
18 changes: 0 additions & 18 deletions eddsa.iml

This file was deleted.

20 changes: 18 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.i2p.crypto</groupId>
<artifactId>eddsa</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<name>EdDSA-Java</name>
<packaging>bundle</packaging>
<description>Implementation of EdDSA in Java</description>
Expand Down Expand Up @@ -149,6 +149,22 @@
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>6.5.3</version>
<configuration>
<skipTestScope>false</skipTestScope>
<failBuildOnCVSS>0</failBuildOnCVSS>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
Expand All @@ -161,7 +177,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>4.13.2</version>
<type>maven-plugin</type>
<scope>test</scope>
</dependency>
Expand Down