diff options
author | Jim Hahn <jrh3@att.com> | 2020-04-03 16:33:39 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-04-03 16:35:42 -0400 |
commit | c80213e91c20dca8794a7d7540d9afb876b6d693 (patch) | |
tree | 1b68f10247804ebd2dfccf3ed3813b8c87a74cb9 | |
parent | b00006fd6505588ec3210d826020fc87939ee076 (diff) |
Add RE2J in lieu of java.util Pattern
Sonar complains about java.util Pattern usage when the pattern
has quanitifiers like "*" or "+". It suggests using RE2J instead.
Added that to the parent pom - hope it doesn't have licensing issues.
Issue-ID: POLICY-2305
Change-Id: I4a79d073e911f42911dabfab92177bce5893efd7
Signed-off-by: Jim Hahn <jrh3@att.com>
-rw-r--r-- | integration/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index 978ecbba..0e06fc84 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -172,6 +172,13 @@ <version>${version.jersey}</version> </dependency> + <!-- RE2J in lieu of java.util Pattern --> + <dependency> + <groupId>com.google.re2j</groupId> + <artifactId>re2j</artifactId> + <version>1.3</version> + </dependency> + <!-- MariaDB --> <dependency> <groupId>org.mariadb.jdbc</groupId> |