Skip to content

Latest commit

 

History

History
47 lines (23 loc) · 2.65 KB

README.md

File metadata and controls

47 lines (23 loc) · 2.65 KB

Eclipse JNoSQL Archetype Project

Eclipse JNoSQL Archetype

This project contains quick start to Eclipse JNoSQL project using the Maven Archetype.

Java SE

The archetypes that run Eclipse JNoSQL using CDI 2.0, JSON-B and JSON-P, where by default it uses the Reference implementation to each implementation, thereby Eclipse Yasson, Eclipse Glassfish JSON, and Weld.

KeyValue SE

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=se-key-value -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false

Column Family SE

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=se-column -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false

Document SE

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=se-document -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false

Graph SE

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=se-graph -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false

Java Web

The archetypes that run Eclipse JNoSQL using Java EE, Jakarta EE as API provided.

KeyValue Web

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=web-key-value -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false

Column Family Web

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=web-column -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false

Document Web

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=web-document -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false

Graph Web

mvn archetype:generate -DarchetypeGroupId=org.jnosql.archetype -DarchetypeArtifactId=web-graph -DarchetypeVersion=0.0.6 -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -DinteractiveMode=false