Skip to content

Commit 67abb23

Browse files
committed
Update README and CHANGELOG
1 parent a46bd6d commit 67abb23

File tree

3 files changed

+23
-10
lines changed

3 files changed

+23
-10
lines changed

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ native-libs/**
4343
# CMake
4444
cmake-build-*/
4545

46-
# Mongo Explorer plugin
47-
.idea/**/mongoSettings.xml
48-
4946
# File-based project format
5047
*.iws
5148

@@ -133,8 +130,6 @@ hs_err_pid*
133130

134131
# CMake
135132

136-
# Mongo Explorer plugin
137-
138133
# File-based project format
139134

140135
# IntelliJ

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9-
[Unreleased]: https://github.com/bad-opensource/spring-cache-dynamo/compare/HEAD
9+
## [0.9.0] - 2019-09-06
10+
### Added
11+
- initial code base by [@derXear](https://github.com/derXear)
12+
13+
[Unreleased]: https://github.com/bad-opensource/spring-cache-dynamodb/compare/v0.9.0...HEAD
14+
[0.9.0]: https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.0

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,26 @@
88
99
## Install
1010

11-
### Maven dependency
11+
[![](https://jitpack.io/v/bad-opensource/spring-cache-dynamodb.svg)](https://jitpack.io/#bad-opensource/spring-cache-dynamodb)
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
1326
```xml
1427
<dependency>
15-
<groupId>com.dasburo</groupId>
16-
<artifactId>spring-cache-dynamodb</artifactId>
17-
<version>1.0.0</version>
28+
<groupId>com.github.bad-opensource</groupId>
29+
<artifactId>spring-cache-dynamodb</artifactId>
30+
<version>0.9.0</version>
1831
</dependency>
1932
```
2033

0 commit comments

Comments
 (0)