Skip to content
Merged
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
8 changes: 2 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ init-examples-submodule:
install: | install-checkstyle

## lint - Lints the project
lint: checkstyle scan
lint: checkstyle

## publish - Publish a release of the project (will build the project via the `mvn deploy` command)
# @parameters:
Expand All @@ -60,10 +60,6 @@ publish-dry:
release:
gh release create ${tag} target/*.jar target/*.asc target/*.pom --target ${target}

## scan - Scan the project for serious security issues
scan:
mvn verify -DskipTests=true -Dgpg.skip=true -Dcheckstyle.skip=true -Djavadoc.skip=true -Djacoco.skip=true -Ddependency-check.failBuildOnCVSS=0 -Ddependency-check.junitFailOnCVSS=0

## test - Test the project
test:
mvn test -Dgpg.skip=true -Dcheckstyle.skip=true -Ddependency-check.skip=true -Djavadoc.skip=true -Djacoco.skip=true
Expand All @@ -77,4 +73,4 @@ update-examples-submodule:
git submodule init
git submodule update --remote

.PHONY: help build clean coverage docs install-checkstyle install-styleguide install lint publish publish-dry release scan scan-strict test test-ci update-examples-submodule
.PHONY: help build clean coverage docs install-checkstyle install-styleguide install lint publish publish-dry release test test-ci update-examples-submodule
11 changes: 0 additions & 11 deletions dependency-check-suppressions.xml

This file was deleted.

19 changes: 0 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -335,25 +335,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<!-- Can't upgrade to `v11` or newer versions as it requires Java 11 -->
<!-- TODO: API key now recommended (we must upgrade to v10) to avoid rate limiting: https://github.com/dependency-check/DependencyCheck?tab=readme-ov-file#nvd-api-key-highly-recommended -->
<version>8.4.0</version>
<configuration>
<suppressionFile>dependency-check-suppressions.xml</suppressionFile>
<failBuildOnCVSS>7</failBuildOnCVSS>
<junitFailOnCVSS>7</junitFailOnCVSS>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading