File tree Expand file tree Collapse file tree 12 files changed +65
-11
lines changed Expand file tree Collapse file tree 12 files changed +65
-11
lines changed Original file line number Diff line number Diff line change 77 required : true
88 default : ' 0.0.0'
99jobs :
10- build :
10+ publish :
1111 runs-on : ubuntu-latest
1212 steps :
1313 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change 3535 SLACK_ICON_EMOJI : ' :bot:'
3636 SLACK_CHANNEL : ' cryptomator-desktop'
3737 SLACK_TITLE : " Published ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}"
38- SLACK_MESSAGE : " Ready to <https://github.com/${{ github.repository }}/actions?query=workflow%3A%22Publish+to+Maven+Central%22 |deploy to Maven Central>."
38+ SLACK_MESSAGE : " Ready to <https://github.com/${{ github.repository }}/actions/workflows/publish-central.yml |deploy to Maven Central>."
3939 SLACK_FOOTER :
40- MSG_MINIMAL : true
40+ MSG_MINIMAL : true
Original file line number Diff line number Diff line change 11# Java RFC 5297 SIV Authenticated Encryption
22
33[ ![ Build] ( https://github.com/cryptomator/siv-mode/workflows/Build/badge.svg )] ( https://github.com/cryptomator/siv-mode/actions?query=workflow%3ABuild )
4- [ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/8b274788dab046259a40e56688236790 )] ( https://www.codacy.com/app /cryptomator/siv-mode )
5- [ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Coverage/8b274788dab046259a40e56688236790 )] ( https://www.codacy.com/app /cryptomator/siv-mode )
4+ [ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/8b274788dab046259a40e56688236790 )] ( https://www.codacy.com/gh /cryptomator/siv-mode/dashboard )
5+ [ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Coverage/8b274788dab046259a40e56688236790 )] ( https://www.codacy.com/gh /cryptomator/siv-mode/dashboard )
66[ ![ Known Vulnerabilities] ( https://snyk.io/test/github/cryptomator/siv-mode/badge.svg )] ( https://snyk.io/test/github/cryptomator/siv-mode )
77[ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.cryptomator/siv-mode.svg?maxAge=86400 )] ( https://repo1.maven.org/maven2/org/cryptomator/siv-mode/ )
88[ ![ Javadocs] ( http://www.javadoc.io/badge/org.cryptomator/siv-mode.svg )] ( http://www.javadoc.io/doc/org.cryptomator/siv-mode )
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >org.cryptomator</groupId >
55 <artifactId >siv-mode</artifactId >
6- <version >1.4.1 </version >
6+ <version >1.4.2 </version >
77
88 <name >SIV Mode</name >
99 <description >RFC 5297 SIV mode: deterministic authenticated encryption</description >
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+ }
You can’t perform that action at this time.
0 commit comments