Skip to content

Commit 92e2294

Browse files
committed
Make OWASP dependency check plugin work
1 parent 2c50ebf commit 92e2294

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v2.1.0] - 2024-02-23
8+
### Add
9+
- env variable to make Dependency-Check plugin work
10+
711
## [v2.0.0] - 2023-05-22
812
### Changed
913
- Debian `stretch` to `buster` due to apt mirror missing packages

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,11 @@ RUN flutter config --no-analytics \
116116
&& flutter doctor \
117117
&& flutter update-packages
118118

119+
# Dependency-Check Gradle plugin
120+
#
121+
# We use this Gradle plugin https://github.com/jeremylong/DependencyCheck for checking vulnerabilities in our dependencies, but it relies
122+
# on env variable to determine encoding for dependency parsing, so we need to set this variable to make the task work as discussed and described more
123+
# here https://github.com/jeremylong/DependencyCheck/issues/1742
124+
ENV LC_ALL C.UTF-8
125+
119126
VOLUME /root/.gradle

0 commit comments

Comments
 (0)