File tree Expand file tree Collapse file tree 5 files changed +22
-21
lines changed
src/main/java/com/dasburo/spring/cache/dynamo Expand file tree Collapse file tree 5 files changed +22
-21
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66
77## [ Unreleased]
88
9+ ## [ 0.9.2] - 2019-12-04
10+ ### Changed
11+ - fix javadoc and maven-gpg-plugin configuration by [ @derXear ] ( https://github.com/derXear )
12+
913## [ 0.9.1] - 2019-09-09
1014### Fixed
11- - Fix locking DefaultDynamoCacheWriter by [ @derXear ] ( https://github.com/derXear )
15+ - fix locking DefaultDynamoCacheWriter by [ @derXear ] ( https://github.com/derXear )
1216
1317## [ 0.9.0] - 2019-09-06
1418### Added
1519- initial code base by [ @derXear ] ( https://github.com/derXear )
1620
17- [ Unreleased ] : https://github.com/bad-opensource/spring-cache-dynamodb/compare/v0.9.1...HEAD
21+ [ Unreleased ] : https://github.com/bad-opensource/spring-cache-dynamodb/compare/v0.9.2...HEAD
22+ [ 0.9.2 ] : https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.1...v0.9.2
1823[ 0.9.1 ] : https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.0...v0.9.1
1924[ 0.9.0 ] : https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.0
Original file line number Diff line number Diff line change 88
99## Install
1010
11- [ ![ ] ( https://jitpack.io/v/bad-opensource/spring-cache-dynamodb.svg )] ( https://jitpack.io/#bad-opensource/spring-cache-dynamodb )
11+ To integrate this Git repository into your project, simply add the maven dependency
1212
13- To integrate this Git repository into your project, simply follow these 2 steps (example for Maven)
14-
15- ** Step 1:** Add the JitPack repository to your build file
16- ``` xml
17- <repositories >
18- <repository >
19- <id >jitpack.io</id >
20- <url >https://jitpack.io</url >
21- </repository >
22- </repositories >
23- ```
24-
25- ** Step 2:** Add the dependency
2613``` xml
2714<dependency >
28- <groupId >com.github.bad-opensource </groupId >
15+ <groupId >com.dasburo </groupId >
2916 <artifactId >spring-cache-dynamodb</artifactId >
30- <version >0.9.1 </version >
17+ <version >0.9.2 </version >
3118</dependency >
3219```
3320
Original file line number Diff line number Diff line change 1111
1212 <groupId >com.dasburo</groupId >
1313 <artifactId >spring-cache-dynamodb</artifactId >
14- <version >1.0.0-SNAPSHOT </version >
14+ <version >0.9.2 </version >
1515
1616 <name >Amazon DynamoDB for Spring Cache</name >
1717 <description >Spring Cache implementation based on Amazon DynamoDB</description >
238238 <plugin >
239239 <groupId >org.apache.maven.plugins</groupId >
240240 <artifactId >maven-gpg-plugin</artifactId >
241+ <version >1.6</version >
241242 <executions >
242243 <execution >
243244 <id >sign-artifacts</id >
244245 <phase >verify</phase >
245246 <goals >
246247 <goal >sign</goal >
247248 </goals >
249+ <configuration >
250+ <gpgArguments >
251+ <arg >--pinentry-mode</arg >
252+ <arg >loopback</arg >
253+ </gpgArguments >
254+ </configuration >
248255 </execution >
249256 </executions >
250257 </plugin >
Original file line number Diff line number Diff line change 3131
3232/**
3333 * {@link DynamoCacheWriter} implementation capable of reading/writing binary data from/to DynamoDB in {@literal standalone}
34- * and {@literal cluster} environments. Works upon a given {@link AmazonDynamoDB} holds the actual connection. <br />
34+ * and {@literal cluster} environments. Works upon a given {@link AmazonDynamoDB} holds the actual connection.
35+ * <p>
3536 * {@link DefaultDynamoCacheWriter} can be used in
3637 * {@link DynamoCacheWriter#lockingDynamoCacheWriter(AmazonDynamoDB) locking} or
3738 * {@link DynamoCacheWriter#nonLockingDynamoCacheWriter(AmazonDynamoDB) non-locking} mode. While
Original file line number Diff line number Diff line change 2323
2424/**
2525 * {@link DynamoCacheWriter} provides low level access to DynamoDB commands ({@code PUT, GET, ...}) used for
26- * caching. <br />
26+ * caching.
27+ * <p>
2728 * The {@link DynamoCacheWriter} is responsible for writing / reading binary data to / from DynamoDB.
2829 *
2930 * @author Georg Zimmermann
You can’t perform that action at this time.
0 commit comments