Skip to content

Commit

Permalink
Update dependencies that have reported vulnerabilities to new versions (
Browse files Browse the repository at this point in the history
  • Loading branch information
lbergelson authored Nov 15, 2023
1 parent 77a2292 commit e29e1e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@ configurations {
dependencies {
implementation(
fileTree(dir: 'lib', include: '*.jar'), // first search on disk (old behavior), then maven repos
[group: 'com.google.code.gson', name: 'gson', version: '2.8.5'],
[group: 'com.google.code.gson', name: 'gson', version: '2.8.9'],
[group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'],
[group: 'commons-io', name: 'commons-io', version: '2.6'],
[group: 'org.apache.commons', name: 'commons-compress', version: '1.18'],
[group: 'commons-io', name: 'commons-io', version: '2.7'],
[group: 'org.apache.commons', name: 'commons-compress', version: '1.21'],
[group: 'org.xerial.snappy', name: 'snappy-java', version: '1.1.7.3'],
[group: 'org.apache.commons', name: 'commons-jexl', version: '2.1.1'],
[group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'],
[group: 'com.github.samtools', name: 'htsjdk', version: '3.0.5'],
[group: 'org.swinglabs', name: 'swing-layout', version: '1.0.3'],
[group: 'com.formdev', name: 'jide-oss', version: '3.7.12'],
[group: 'com.google.guava', name: 'guava', version: '27.0.1-jre'],
[group: 'com.google.guava', name: 'guava', version: '32.1.3-jre'],
[group: 'org.apache.xmlgraphics', name: 'batik-dom', version: '1.11'],
[group: 'org.apache.xmlgraphics', name: 'batik-svggen', version: '1.11'],
[group: 'org.apache.xmlgraphics', name: 'batik-codec', version: '1.11'],
Expand All @@ -128,9 +128,9 @@ dependencies {
)

testImplementation(
[group: 'junit', name: 'junit', version: '4.13'],
[group: 'com.sparkjava', name: 'spark-core', version: '2.2'],
[group: 'org.glassfish.jersey.core', name: 'jersey-common', version: '2.22.4']
[group: 'junit', name: 'junit', version: '4.13.1'],
[group: 'com.sparkjava', name: 'spark-core', version: '2.7.2'],
[group: 'org.glassfish.jersey.core', name: 'jersey-common', version: '2.34']
)
testRuntimeOnly(
[group: 'org.junit.vintage', name:'junit-vintage-engine', version:'5.8.2']
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

requires com.google.common;
requires commons.math3;
requires gson;
requires com.google.gson;
requires htsjdk;
requires java.datatransfer;
requires java.desktop;
Expand Down

0 comments on commit e29e1e2

Please sign in to comment.