Skip to content

Commit

Permalink
Release 2.3.0.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
Anastasiia Smirnova committed Dec 23, 2019
1 parent 3190aec commit 45a9c24
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add the Maven dependency:
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.3.0.RELEASE</version>
</dependency>
```

Expand All @@ -49,7 +49,7 @@ Both dependencies will be provided for you by `spring-data-aerospike`, so no nee

### AerospikeTemplate

AerospikeTemplate is the central support class for Aerospike database operations. It provides:
`AerospikeTemplate` is the central support class for Aerospike database operations. It provides:

* Basic POJO mapping support to and from Bins
* Convenience methods to interact with the store (insert object, update objects) and Aerospike specific ones.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.aerospike</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.3.0.RELEASE</version>
<name>Spring Data Aerospike</name>
<organization>
<name>Aerospike Inc.</name>
Expand Down
18 changes: 16 additions & 2 deletions src/main/asciidoc/reference/aerospike.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ First you need to set up a running Aerospike server.

To create a Spring project in STS go to File -> New -> Spring Template Project -> Simple Spring Utility Project -> press Yes when prompted. Then enter a project and a package name such as org.spring.aerospike.example.

Then add the following to pom.xml dependencies section.
Then add the following to `pom.xml` dependencies section.

[source,xml]
----
Expand All @@ -33,14 +33,28 @@ Then add the following to pom.xml dependencies section.
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.3.0.RELEASE</version>
</dependency>
</dependencies>
----

You can either setup Spring Boot or Spring application. Basic setup of Spring Boot application is described under the following link: https://projects.spring.io/spring-boot.

.Spring Boot compatibility
|===
|Spring-data-aerospike Version |Spring Boot Version

|2.3.0.RELEASE
|2.2.x

|2.1.1.RELEASE
|2.1.x, 2.0.x

|1.2.1.RELEASE
|1.5.x
|===

In case you do no want to use Spring Boot, the best way to manage Spring dependencies is declaring `spring-framework-bom` of needed version in `dependencyManagement` section of your `pom.xml`:

[source,xml]
Expand Down

0 comments on commit 45a9c24

Please sign in to comment.