Skip to content

Commit

Permalink
Add Janugraph core dependency management version (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierlemee authored Jul 19, 2024
1 parent 926cf30 commit a782679
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
15 changes: 12 additions & 3 deletions demonstrators-line/demonstrator-v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.cybnity</groupId>
<artifactId>techstack</artifactId>
<version>0.32.0</version>
<version>0.33.0</version>
<packaging>pom</packaging>
<name>CYBNITY Official Standard Techstack</name>

Expand Down Expand Up @@ -54,7 +54,9 @@

<!-- TECHSTACK STANDARD TECHNOLOGIES -->
<vertx.version>4.4.8</vertx.version> <!-- [4.3.2,) -->
<janusgraph.core>[1.1.0,)</janusgraph.core>
<janusgraph.driver>[1.1.0,)</janusgraph.driver>
<janusgraph.inmemory>[1.1.0,)</janusgraph.inmemory>
<junit-jupiter.version>5.9.3</junit-jupiter.version> <!-- 5.7.0 -->
<junit-jupiter-platform.version>[1.9.2,)</junit-jupiter-platform.version>
<cucumber.version>7.12.1</cucumber.version>
Expand Down Expand Up @@ -241,6 +243,13 @@
<scope>import</scope>
<type>pom</type>
</dependency>
<!-- JanusGraph core -->
<dependency>
<groupId>org.janusgraph</groupId>
<artifactId>janusgraph-core</artifactId>
<version>${janusgraph.core}</version>
<scope>compile</scope>
</dependency>
<!-- JanusGraph and Gremlin client connector approach -->
<dependency>
<groupId>org.janusgraph</groupId>
Expand All @@ -252,8 +261,8 @@
<!-- Embedded in-memory graph -->
<groupId>org.janusgraph</groupId>
<artifactId>janusgraph-inmemory</artifactId>
<version>[1.0.0,)</version>
<scope>test</scope>
<version>${janusgraph.inmemory}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.janusgraph</groupId>
Expand Down
2 changes: 1 addition & 1 deletion demonstrators-line/demonstrator-v0/sample-project-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.cybnity</groupId>
<artifactId>techstack</artifactId>
<version>0.31.0</version>
<version>0.33.0</version>
</parent>

<groupId>org.cybnity.techstack.quality</groupId>
Expand Down
6 changes: 3 additions & 3 deletions demonstrators-line/demonstrator-v0/v0-technologies-stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ Should allow definition and test of basic software factory implementation allowi
None supervision requirements required regarding the step of the CYBNITY Foundation project.

# CURRENT MPP OFFICIAL VERSION
- Version: 0.32.0
- Released at: June, 19, 2024
- Version: 0.33.0
- Released at: July, 19, 2024
- Status: `RELEASED`
- Documentation: [technologies-stack-analysis](technologies-stack-analysis.md)
- Deliverables:
Expand All @@ -80,7 +80,7 @@ None supervision requirements required regarding the step of the CYBNITY Foundat
<parent>
<groupId>org.cybnity</groupId>
<artifactId>techstack</artifactId>
<version>0.32.0</version>
<version>0.33.0</version>
</parent>

<repositories>
Expand Down

0 comments on commit a782679

Please sign in to comment.