File tree Expand file tree Collapse file tree 9 files changed +59
-5
lines changed
Expand file tree Collapse file tree 9 files changed +59
-5
lines changed Original file line number Diff line number Diff line change 4141
4242 <!-- test dependencies -->
4343 <junit .version>5.7.1</junit .version>
44- <mockito .version>3.7.7 </mockito .version>
45- <jmh .version>1.27 </jmh .version>
44+ <mockito .version>3.10.0 </mockito .version>
45+ <jmh .version>1.31 </jmh .version>
4646 <hamcrest .version>2.2</hamcrest .version>
47- <guava .version>30.1-jre</guava .version>
47+ <guava .version>30.1.1 -jre</guava .version>
4848 </properties >
4949
5050 <dependencies >
Original file line number Diff line number Diff line change 1717
1818import javax .crypto .IllegalBlockSizeException ;
1919import javax .crypto .SecretKey ;
20- import java .nio .ByteBuffer ;
2120import java .security .Provider ;
2221import java .util .Arrays ;
2322
Original file line number Diff line number Diff line change 1+ package org .cryptomator .siv .org .bouncycastle .crypto ;
2+
3+ /**
4+ * module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+ * to avoid complaints about this package being empty.
6+ */
7+ class Placeholder {
8+ }
Original file line number Diff line number Diff line change 1+ package org .cryptomator .siv .org .bouncycastle .crypto .macs ;
2+
3+ /**
4+ * module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+ * to avoid complaints about this package being empty.
6+ */
7+ class Placeholder {
8+ }
Original file line number Diff line number Diff line change 1+ package org .cryptomator .siv .org .bouncycastle .crypto .modes ;
2+
3+ /**
4+ * module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+ * to avoid complaints about this package being empty.
6+ */
7+ class Placeholder {
8+ }
Original file line number Diff line number Diff line change 1+ package org .cryptomator .siv .org .bouncycastle .crypto .paddings ;
2+
3+ /**
4+ * module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+ * to avoid complaints about this package being empty.
6+ */
7+ class Placeholder {
8+ }
Original file line number Diff line number Diff line change 1+ package org .cryptomator .siv .org .bouncycastle .crypto .params ;
2+
3+ /**
4+ * module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+ * to avoid complaints about this package being empty.
6+ */
7+ class Placeholder {
8+ }
Original file line number Diff line number Diff line change 1+ package org .cryptomator .siv .org .bouncycastle .util ;
2+
3+ /**
4+ * module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+ * to avoid complaints about this package being empty.
6+ */
7+ class Placeholder {
8+ }
Original file line number Diff line number Diff line change 11module org .cryptomator .siv {
2- exports org .cryptomator .siv ;
32 requires static org .bouncycastle .provider ;
3+
4+ exports org .cryptomator .siv ;
5+ exports org .cryptomator .siv .org .bouncycastle .crypto ;
6+ exports org .cryptomator .siv .org .bouncycastle .crypto .macs ;
7+ exports org .cryptomator .siv .org .bouncycastle .crypto .modes ;
8+ exports org .cryptomator .siv .org .bouncycastle .crypto .paddings ;
9+ exports org .cryptomator .siv .org .bouncycastle .crypto .params ;
10+ exports org .cryptomator .siv .org .bouncycastle .util ;
411}
You can’t perform that action at this time.
0 commit comments