Skip to content

Commit

Permalink
refactor pom.xml: add gremlin.version as property
Browse files Browse the repository at this point in the history
  • Loading branch information
mpollmeier committed Nov 19, 2015
1 parent 9274b81 commit e74374c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<gremlin.version>3.0.2-incubating</gremlin.version>
</properties>

<developers>
Expand Down Expand Up @@ -42,12 +43,12 @@
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-core</artifactId>
<version>3.0.2-incubating</version>
<version>${gremlin.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-groovy</artifactId>
<version>3.0.2-incubating</version>
<version>${gremlin.version}</version>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
Expand All @@ -58,13 +59,13 @@
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-test</artifactId>
<version>3.0.2-incubating</version>
<version>${gremlin.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-groovy-test</artifactId>
<version>3.0.2-incubating</version>
<version>${gremlin.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit e74374c

Please sign in to comment.