Skip to content

Commit 654b165

Browse files
Merge branch 'release/1.3.0'
2 parents 82b7e33 + 5c0d440 commit 654b165

File tree

4 files changed

+44
-14
lines changed

4 files changed

+44
-14
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,10 @@ hs_err_pid*
1414
.settings
1515
.classpath
1616
.project
17+
18+
# IntelliJ Settings Files #
19+
.idea/
20+
out/
21+
.idea_modules/
22+
*.iml
23+
*.iws

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,21 @@ addons:
3030
notification_email: sebastian.stenzel@cryptomator.org
3131
build_command_prepend: "mvn clean"
3232
build_command: "mvn -DskipTests=true compile"
33-
branch_pattern: master
33+
branch_pattern: release.*
3434
before_deploy:
35+
- jdk_switcher use oraclejdk9
3536
- gpg --import 34C80F11.gpg
3637
deploy:
3738
- provider: script # SNAPSHOTS
3839
script: mvn clean deploy -DskipTests -Prelease --settings settings.xml
3940
skip_cleanup: true
4041
on:
4142
repo: cryptomator/siv-mode
42-
branch: master
43+
branch: develop
4344
condition: $TRAVIS_TAG = ''
44-
jdk: openjdk7
4545
- provider: script # RELEASES
4646
script: mvn clean versions:set -DnewVersion=${TRAVIS_TAG} deploy -DskipTests -Prelease --settings settings.xml
4747
skip_cleanup: true
4848
on:
4949
repo: cryptomator/siv-mode
5050
tags: true
51-
jdk: openjdk7

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# RFC 5297 SIV mode of operation in Java
22

3-
[![Build Status](https://travis-ci.org/cryptomator/siv-mode.svg?branch=master)](https://travis-ci.org/cryptomator/siv-mode)
3+
[![Build Status](https://travis-ci.org/cryptomator/siv-mode.svg?branch=develop)](https://travis-ci.org/cryptomator/siv-mode)
44
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/8b274788dab046259a40e56688236790)](https://www.codacy.com/app/cryptomator/siv-mode)
55
[![Codacy Badge](https://api.codacy.com/project/badge/Coverage/8b274788dab046259a40e56688236790)](https://www.codacy.com/app/cryptomator/siv-mode)
6-
[![Coverity Scan Build Status](https://scan.coverity.com/projects/10005/badge.svg)](https://scan.coverity.com/projects/cryptomator-siv-mode)
6+
[![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)
99

pom.xml

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.cryptomator</groupId>
55
<artifactId>siv-mode</artifactId>
6-
<version>1.2.3</version>
6+
<version>1.3.0</version>
77

88
<name>SIV Mode</name>
99
<description>RFC 5297 SIV mode: deterministic authenticated encryption</description>
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.bouncycastle</groupId>
4343
<artifactId>bcprov-jdk15on</artifactId>
44-
<version>1.57</version>
44+
<version>1.59</version>
4545
<!-- see maven-shade-plugin; we don't want this as a transitive dependency in other projects -->
4646
<optional>true</optional>
4747
</dependency>
@@ -56,25 +56,25 @@
5656
<dependency>
5757
<groupId>org.mockito</groupId>
5858
<artifactId>mockito-core</artifactId>
59-
<version>2.8.47</version>
59+
<version>2.16.0</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.google.guava</groupId>
6464
<artifactId>guava</artifactId>
65-
<version>23.6-jre</version>
65+
<version>24.0-jre</version>
6666
<scope>test</scope>
6767
</dependency>
6868
<dependency>
6969
<groupId>org.openjdk.jmh</groupId>
7070
<artifactId>jmh-core</artifactId>
71-
<version>1.19</version>
71+
<version>1.20</version>
7272
<scope>test</scope>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.openjdk.jmh</groupId>
7676
<artifactId>jmh-generator-annprocess</artifactId>
77-
<version>1.19</version>
77+
<version>1.20</version>
7878
<scope>test</scope>
7979
</dependency>
8080
</dependencies>
@@ -142,6 +142,30 @@
142142
</execution>
143143
</executions>
144144
</plugin>
145+
<plugin>
146+
<groupId>org.moditect</groupId>
147+
<artifactId>moditect-maven-plugin</artifactId>
148+
<version>1.0.0.Alpha2</version>
149+
<executions>
150+
<execution>
151+
<id>add-module-infos</id>
152+
<phase>package</phase>
153+
<goals>
154+
<goal>add-module-info</goal>
155+
</goals>
156+
<configuration>
157+
<module>
158+
<moduleInfo>
159+
<name>org.cryptomator.siv</name>
160+
<exports>
161+
org.cryptomator.siv;
162+
</exports>
163+
</moduleInfo>
164+
</module>
165+
</configuration>
166+
</execution>
167+
</executions>
168+
</plugin>
145169
<plugin>
146170
<groupId>org.sonatype.plugins</groupId>
147171
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -164,7 +188,7 @@
164188
<plugin>
165189
<groupId>org.owasp</groupId>
166190
<artifactId>dependency-check-maven</artifactId>
167-
<version>2.1.1</version>
191+
<version>3.1.1</version>
168192
<configuration>
169193
<cveValidForHours>24</cveValidForHours>
170194
<failBuildOnCVSS>0</failBuildOnCVSS>
@@ -188,7 +212,7 @@
188212
<plugin>
189213
<groupId>org.jacoco</groupId>
190214
<artifactId>jacoco-maven-plugin</artifactId>
191-
<version>0.7.9</version>
215+
<version>0.8.0</version>
192216
<executions>
193217
<execution>
194218
<id>prepare-agent</id>

0 commit comments

Comments
 (0)