Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sluehr committed Sep 28, 2022
1 parent 29922eb commit f1f5eb0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id 'maven-publish'
id 'signing'
id 'org.sonarqube' version '3.4.0.2513'
id 'com.diffplug.spotless' version '6.6.0'
id 'com.diffplug.spotless' version '6.11.0'
id 'jacoco'
}

Expand All @@ -18,15 +18,15 @@ version = gitTagVersion.commitDistance == 0
: "${gitTagVersion.lastTag}+${gitTagVersion.commitDistance}-SNAPSHOT"

ext {
axonVersion = '4.5.10'
axonVersion = '4.6.0'
guavaVersion = '31.1-jre'
jacksonVersion = '2.13.1'
lombokVersion = '1.18.24'
springBootVersion = '2.7.0'
springBootVersion = '2.7.4'

h2Version = '1.4.200'
junitVersion = '5.8.2'
mockitoVersion = '4.6.1'
junitVersion = '5.9.0'
mockitoVersion = '4.8.0'
}

dependencyManagement {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
* symmetric keys that are generated and stored alongside the Axon event log and saga store. Encryption keys are identified via the
* {@code @EncryptionKeyIdentifier} annotation. This annotation accepts an optional keyType parameter that is used to differentiate between
* identifiers when key uniqueness cannot be globally guaranteed (such as when using monotonically increasing integers).
*
* A 256 bit AES (symmetric) key is generated for each {identifier, keyType} tuple. Each field annotated with {@code @EncryptedField} is
* <p>
* A 256-bit AES (symmetric) key is generated for each {identifier, keyType} tuple. Each field annotated with {@code @EncryptedField} is
* encrypted using an initialisation vector unique to that field. This initialisation vector is stored as part of the serialised field
* payload.
*/
Expand Down

0 comments on commit f1f5eb0

Please sign in to comment.