Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
decoupling aws pom version
  • Loading branch information
A.Moscatelli authored and A.Moscatelli committed Jul 26, 2023
1 parent 6644096 commit a9439e7
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
41 changes: 40 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
The Quarkus JNoSql Extension adds support for
[JNoSQL](http://www.jnosql.org/), an implementation of [Jakarta NoSQL](https://jakarta.ee/specifications/nosql/).

:information_source: **Recommended Quarkus version: `3.1.0.Final` or higher**
:information_source: **Recommended Quarkus version: `3.2.2.Final` or higher**

### Usage

Expand Down Expand Up @@ -75,6 +75,19 @@ Add the dependency to the target project:

Please refer to the [DynamoDB Quarkiverse extension](https://quarkiverse.github.io/quarkiverse-docs/quarkus-amazon-services/dev/amazon-dynamodb.html) for specific configuration.

### Hazelcast

Add the dependency to the target project:

```xml
<dependency>
<groupId>io.quarkiverse.jnosql</groupId>
<artifactId>quarkus-jnosql-keyvalue-hazelcast</artifactId>
</dependency>
```

Please refer to the [Quarkus Hazelcast extension](https://github.com/hazelcast/quarkus-hazelcast-client) for specific configuration.

### Redis

Add the dependency to the target project:
Expand Down Expand Up @@ -122,6 +135,19 @@ Add the dependency to the target project:

Please refer to the [AranboDB JNoSQL driver](https://github.com/eclipse/jnosql-databases#arangodb) for specific configuration.

### CouchDB

Add the dependency to the target project:

```xml
<dependency>
<groupId>io.quarkiverse.jnosql</groupId>
<artifactId>quarkus-jnosql-document-couchdb</artifactId>
</dependency>
```

Please refer to the [CouchDB JNoSQL driver](https://github.com/eclipse/jnosql-databases#couchdb) for specific configuration.

### Elasticsearch

Add the dependency to the target project:
Expand All @@ -148,6 +174,19 @@ Add the dependency to the target project:

Please refer to the [MongoDB Quarkus extension](https://quarkus.io/guides/mongodb) for specific configuration.

### Solr

Add the dependency to the target project:

```xml
<dependency>
<groupId>io.quarkiverse.jnosql</groupId>
<artifactId>quarkus-jnosql-document-solr</artifactId>
</dependency>
```

Please refer to the [Solr JNoSQL driver](https://github.com/eclipse/jnosql-databases#solr) for specific configuration.

## Column

### Configuration
Expand Down
2 changes: 1 addition & 1 deletion keyvalue-parent/dynamodb-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-amazon-services-bom</artifactId>
<version>${quarkus.version}</version>
<version>${quarkus-amazon-services-bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.version>3.2.2.Final</quarkus.version>
<quarkus-amazon-services-bom.version>3.2.2.Final</quarkus-amazon-services-bom.version>
<cassandra-quarkus-bom.version>1.2.0</cassandra-quarkus-bom.version>
<quarkus-hazelcast-client-bom.version>4.0.0</quarkus-hazelcast-client-bom.version>
<camel-quarkus-solr-parent.version>3.0.0-M1</camel-quarkus-solr-parent.version>
Expand Down

0 comments on commit a9439e7

Please sign in to comment.