Skip to content

Commit

Permalink
chore: update using book
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <[email protected]>
  • Loading branch information
otaviojava committed Aug 30, 2023
1 parent 55762ca commit 02073e0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions chapter-14/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<version>1.0.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<weld.se.core.version>5.1.1.SP2</weld.se.core.version>
<jnosql.version>1.0.2-SNAPSHOT</jnosql.version>
<maven.compile.version>3.11.0</maven.compile.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package expert.os.books.persistence.nosql.chapter14;

import jakarta.nosql.Column;
import jakarta.nosql.Entity;
import jakarta.nosql.Id;

@Entity
public record Book(@Id String isbn, @Column String title, @Column String publisher, int edition) {
}
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
jnosql.column.database=developers
jnosql.document.database=library
jnosql.mongodb.host=localhost:27017
5 changes: 0 additions & 5 deletions chapter-14/src/main/resources/cassandra.cql

This file was deleted.

0 comments on commit 02073e0

Please sign in to comment.