Skip to content

Commit

Permalink
issues/1649: Migrate Strongbox from OrientDB to JanusGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
sbespalov committed Oct 24, 2020
1 parent f1c9601 commit a7d10ea
Showing 1 changed file with 138 additions and 8 deletions.
146 changes: 138 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.carlspring.strongbox</groupId>
<artifactId>strongbox-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0-PR-62-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Strongbox: Parent</name>
Expand Down Expand Up @@ -64,8 +64,8 @@
<version.apache.commons.io>2.8.0</version.apache.commons.io>
<version.apache.commons.compress>1.19</version.apache.commons.compress>
<version.appassembler>2.1.0</version.appassembler>
<version.groovy>2.4.7</version.groovy>
<version.guava>27.0.1-jre</version.guava>
<version.groovy>2.5.7</version.groovy>
<version.guava>20.0</version.guava>
<version.hamcrest>2.2</version.hamcrest>
<version.hazelcast>3.10.2</version.hazelcast>
<version.httpclient>4.5</version.httpclient>
Expand All @@ -81,14 +81,13 @@
<version.logback>1.2.3</version.logback>
<version.maven>3.3.9</version.maven>
<version.mockito>3.1.0</version.mockito>
<version.orientdb>3.0.0</version.orientdb>
<version.c3p0>0.9.5.4</version.c3p0>
<version.quartz>2.3.2</version.quartz>
<version.servlet.api>3.1.0</version.servlet.api>
<version.slf4j>1.7.30</version.slf4j>
<version.spring.boot>2.2.4.RELEASE</version.spring.boot>
<version.rest.assured>3.3.0</version.rest.assured>
<version.hibernate.validator>6.1.0.Final</version.hibernate.validator>
<version.rest.assured>4.2.0</version.rest.assured>
<version.hibernate.validator>6.1.2.Final</version.hibernate.validator>
<version.glassfish.javax.el>3.0.1-b08</version.glassfish.javax.el>
<version.antlr>4.7.1</version.antlr>
<version.liquibase>3.6.3</version.liquibase>
Expand All @@ -102,6 +101,13 @@
<version.semver>0.9.34-SNAPSHOT</version.semver>
<version.springfox>2.9.2</version.springfox>
<version.redline>1.2.9</version.redline>

<version.janusgraph>0.5.0</version.janusgraph>
<version.cassandra>3.11.5</version.cassandra>
<version.tinkerpop>3.4.6</version.tinkerpop>

<verion.opencypher>1.0.4</verion.opencypher>

<!-- Version properties. -->
<surefireArgLine/>
<failsafeArgLine/>
Expand Down Expand Up @@ -171,7 +177,8 @@

<!-- This field needs to be set to 1 or jacoco reports will be incorrect/missing! -->
<forkCount>1</forkCount>

<trimStackTrace>false</trimStackTrace>

<systemPropertyVariables>
<strongbox.home>${project.build.directory}/strongbox</strongbox.home>
<strongbox.vault>${project.build.directory}/strongbox-vault</strongbox.vault>
Expand Down Expand Up @@ -921,6 +928,8 @@
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${version.groovy}</version>
<type>pom</type>
<scope>import</scope>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
Expand Down Expand Up @@ -978,7 +987,20 @@
<version>${version.rest.assured}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-path</artifactId>
<version>${version.rest.assured}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>xml-path</artifactId>
<version>${version.rest.assured}</version>
<scope>test</scope>
</dependency>


<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
Expand Down Expand Up @@ -1041,7 +1063,7 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>2.4.4</version>
<version>${version.groovy}</version>
</dependency>


Expand Down Expand Up @@ -1358,6 +1380,114 @@
<artifactId>rxjava</artifactId>
<version>2.2.11</version>
</dependency>

<dependency>
<groupId>org.janusgraph</groupId>
<artifactId>janusgraph-core</artifactId>
<version>${version.janusgraph}</version>
</dependency>
<dependency>
<groupId>org.janusgraph</groupId>
<artifactId>janusgraph-cql</artifactId>
<version>${version.janusgraph}</version>
</dependency>
<dependency>
<groupId>org.janusgraph</groupId>
<artifactId>janusgraph-inmemory</artifactId>
<version>${version.janusgraph}</version>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
<version>${version.cassandra}</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>3.2.2</version>
</dependency>

<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-core</artifactId>
<version>${version.tinkerpop}</version>
</dependency>
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-driver</artifactId>
<version>${version.tinkerpop}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-json</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-server</artifactId>
<version>${version.tinkerpop}</version>
</dependency>
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-groovy</artifactId>
<version>${version.tinkerpop}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-groovysh</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>cypher-gremlin-neo4j-driver</artifactId>
<version>${verion.opencypher}</version>
</dependency>
<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>cypher-gremlin-server-plugin</artifactId>
<version>${verion.opencypher}</version>
</dependency>

<dependency>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-api</artifactId>
<version>3.2.10</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-core</artifactId>
<version>3.2.10</version>
</dependency>

<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>5.2.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-bolt-driver</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

</dependencyManagement>
Expand Down

0 comments on commit a7d10ea

Please sign in to comment.