Skip to content

Update jnosql 1 1 7 #222

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ To begin using JNoSQL with Quarkus, follow these steps:
1. Add the Quarkus JNoSQL Extension to your project's dependencies that fits with your necessities. Here are the supported
databases by now and their respective NoSQL types:

| Database Vendor | Supported NoSQL Type | Supports Jakarta Data | Supports Native Compilation | JNoSQL version |
|---------------------------------|------------------------|---------------------------| -------------------------- |----------------|
| [MongoDB](#mongodb) | Document | ✅ | ✅ | 1.1.6 |
| [Cassandra](#cassandra) | Column | ✅ | ✅ | 1.1.6 |
| [CouchDB](#couchdb) | Document | ✅ | ✅ | 1.1.6 |
| [ArangoDB](#arangodb) | Document and Key-Value | ✅ | ✅ | 1.1.6 |
| [DynamoDB](#dynamodb) | Key-Value | ❌ | ✅ | 1.1.6 |
| [Elasticsearch](#elasticsearch) | Document | ✅ | ❌ | 1.1.6 |
| [Hazelcast](#hazelcast) | Key-Value | ❌ | ✅ | 1.1.6 |
| [Solr](#solr) | Document | ✅ | ✅ | 1.1.6 |
| [Neo4j](#neo4j) | Graph | ❌ | ✅ | 1.1.7-SNAPSHOT |
| [Oracle NoSQL](#oracle-nosql) | Document and Key-Value | ✅ | ✅ | 1.1.6 |
| Database Vendor | Supported NoSQL Type | Supports Jakarta Data | Supports Native Compilation |
|---------------------------------|------------------------|---------------------------| -------------------------- |
| [MongoDB](#mongodb) | Document | ✅ | ✅ |
| [Cassandra](#cassandra) | Column | ✅ | ✅ |
| [CouchDB](#couchdb) | Document | ✅ | ✅ |
| [ArangoDB](#arangodb) | Document and Key-Value | ✅ | ✅ |
| [DynamoDB](#dynamodb) | Key-Value | ❌ | ✅ |
| [Elasticsearch](#elasticsearch) | Document | ✅ | ❌ |
| [Hazelcast](#hazelcast) | Key-Value | ❌ | ✅ |
| [Solr](#solr) | Document | ✅ | ✅ |
| [Neo4j](#neo4j) | Graph | ❌ | ✅ |
| [Oracle NoSQL](#oracle-nosql) | Document and Key-Value | ✅ | ✅ |


2. If you're using **Java 21** or above you should activate explicitly the annotation processor execution by setting `<proc>full</proc>` on the maven-compiler plugin. If you're using any previous Java version, e.g. **Java 17**, you can skip this step.
Expand Down
4 changes: 0 additions & 4 deletions neo4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
<version>3.3.5-SNAPSHOT</version>
</parent>

<properties>
<jnosql.version>1.1.7-SNAPSHOT</jnosql.version>
</properties>

<packaging>pom</packaging>
<artifactId>quarkus-jnosql-neo4j-parent</artifactId>
<name>Quarkus JNoSQL - Neo4J - Parent</name>
Expand Down
5 changes: 1 addition & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@

<modules>
<module>core</module>
<!-- <module>document-parent</module>-->
<!-- <module>keyvalue-parent</module>-->
<!-- <module>column-parent</module>-->
<module>mongodb</module>
<module>arangodb</module>
<module>cassandra</module>
Expand Down Expand Up @@ -50,7 +47,7 @@
<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>
<quarkus-neo4j.version>5.4.0</quarkus-neo4j.version>
<jnosql.version>1.1.6</jnosql.version>
<jnosql.version>1.1.7</jnosql.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down