Skip to content

Commit

Permalink
Merge pull request #3 from nordhealth/dev
Browse files Browse the repository at this point in the history
Upgrade Log4j dependency to patch Log4Shell vulnerability
  • Loading branch information
drjustigious authored Dec 14, 2021
2 parents 86a5770 + dfba93e commit b0a8fbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ allprojects {

dependencies {
// The production code uses the SLF4J logging API at compile time
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.2'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.2'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.11.2'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.16.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.16.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.16.0'

implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.7'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ public class Config {
public static String APP_NAME = "WebApp Hardware Bridge";
public static String APP_ID = "tigerworkshop.webapphardwarebridge";
public static final String DOCUMENT_PATH = "documents/";
public static String VERSION = "0.13.2";
public static String VERSION = "0.13.3";
}

0 comments on commit b0a8fbc

Please sign in to comment.