Skip to content

Commit 59ff24c

Browse files
dependency bump
1 parent fb251f7 commit 59ff24c

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
1818
<maven.compiler.release>16</maven.compiler.release>
1919

2020
<!-- dependencies -->
21-
<cryptolib.version>2.0.0-rc4</cryptolib.version>
21+
<cryptolib.version>2.0.0-rc5</cryptolib.version>
2222
<jwt.version>3.15.0</jwt.version>
23-
<dagger.version>2.35.1</dagger.version>
23+
<dagger.version>2.37</dagger.version>
2424
<guava.version>30.1.1-jre</guava.version>
25-
<slf4j.version>1.7.30</slf4j.version>
25+
<slf4j.version>1.7.31</slf4j.version>
2626

2727
<!-- test dependencies -->
2828
<junit.jupiter.version>5.7.2</junit.jupiter.version>
29-
<mockito.version>3.10.0</mockito.version>
29+
<mockito.version>3.11.2</mockito.version>
3030
<hamcrest.version>2.2</hamcrest.version>
3131

3232
<!-- build plugin dependencies -->
33-
<dependency-check.version>6.1.6</dependency-check.version>
34-
<jacoco.version>0.8.6</jacoco.version>
33+
<dependency-check.version>6.2.2</dependency-check.version>
34+
<jacoco.version>0.8.7</jacoco.version>
3535
<nexus-staging.version>1.6.8</nexus-staging.version>
3636
</properties>
3737

src/main/java/module-info.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@
66
requires transitive org.cryptomator.cryptolib;
77
requires com.google.common;
88
requires org.slf4j;
9+
requires dagger;
910

1011
/* TODO: filename-based modules: */
1112
requires java.jwt;
12-
requires dagger;
13-
requires static javax.inject; // probably no longer needed if dagger is an automatic module (but might require --patch-module in case of split packages)
13+
14+
// filename-based module required by dagger
15+
// we will probably need to live with this for a while:
16+
// https://github.com/javax-inject/javax-inject/issues/33
17+
// May be provided by another lib during runtime
18+
requires static javax.inject;
1419

1520
exports org.cryptomator.cryptofs;
1621
exports org.cryptomator.cryptofs.common;

0 commit comments

Comments
 (0)