Skip to content

Commit d76c49a

Browse files
committed
Fix javadoc and maven-gpg-plugin configuration
1 parent 47484e7 commit d76c49a

File tree

5 files changed

+22
-21
lines changed

5 files changed

+22
-21
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,13 @@
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

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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>
@@ -238,13 +238,20 @@
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>

src/main/java/com/dasburo/spring/cache/dynamo/DefaultDynamoCacheWriter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
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

src/main/java/com/dasburo/spring/cache/dynamo/DynamoCacheWriter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
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

0 commit comments

Comments
 (0)