Skip to content
This repository was archived by the owner on Jan 10, 2020. It is now read-only.

Commit 0aa4cbe

Browse files
author
Jenkins
committed
Merge branch 'release/2.0.8'
2 parents 0238734 + e07405d commit 0aa4cbe

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
![ArangoDB-Logo](https://www.arangodb.org/wp-content/uploads/2012/10/logo_arangodb_transp.png)
1+
![ArangoDB-Logo](https://docs.arangodb.com/assets/arangodb_logo_2016_inverted.png)
22

33
arangodb object mapper
44
=========================
55

6-
[![Build Status](https://secure.travis-ci.org/triAGENS/arangodb-objectmapper.png)](http://travis-ci.org/triAGENS/arangodb-objectmapper)
7-
86
A simple object mapper (based on [Jackson](http://wiki.fasterxml.com/JacksonHome)) to store java objects into a ArangoDB database.
97

108

119
Installation & Testing
1210
=======================
1311

1412
Please check the
15-
[ArangoDB Installation Manual](http://www.arangodb.org/manuals/current/InstallManual.html)
13+
[ArangoDB Documentation](https://www.arangodb.com/documentation/)
1614
for installation and compilation instructions.
1715

1816
Start ArangoDB on localhost port 8529.

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.arangodb.objectmapper</groupId>
88
<artifactId>arangodb-objectmapper</artifactId>
9-
<version>2.0.6-SNAPSHOT</version>
9+
<version>2.0.8</version>
1010

1111
<name>ArangoDB object mapper for Java</name>
1212
<description>Java ODM for ArangoDB</description>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>org.apache.httpcomponents</groupId>
2121
<artifactId>httpclient</artifactId>
22-
<version>4.5.6</version>
22+
<version>4.5.7</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>log4j</groupId>
@@ -174,7 +174,7 @@
174174
<owner>arangodb-helper</owner>
175175
<repository>arangodb-objectmapper</repository>
176176
<server>github-oauth</server>
177-
<tagName>${project.version}</tagName>
177+
<tagName>v${project.version}</tagName>
178178
<assets>
179179
<asset>target/arangodb-objectmapper-${project.version}.jar</asset>
180180
<asset>target/arangodb-objectmapper-${project.version}-sources.jar</asset>

src/test/java/org/arangodb/objectmapper/test/BaseTestCase.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private Properties loadPropertiesFromFile() {
106106

107107
try {
108108

109-
LOG.debug("Try to load Properties from " + BaseTestCase.class.getResource("/arangodb.properties").getFile());
109+
LOG.info("Try to load Properties from " + BaseTestCase.class.getResource("/arangodb.properties").getFile());
110110

111111
InputStream resourceAsStream = BaseTestCase.class.getResourceAsStream("/arangodb.properties");
112112
props.load(resourceAsStream);
@@ -115,13 +115,13 @@ private Properties loadPropertiesFromFile() {
115115

116116
props.forEach((key, val) -> {
117117

118-
String systemPropName = key.toString().replace(".", "_");
119-
LOG.debug("Check Env " + systemPropName + " for override of " + key);
120-
String systemProp = System.getProperty(systemPropName);
118+
String systemEnvName = key.toString().replace(".", "_");
119+
LOG.debug("Check Env " + systemEnvName + " for override of " + key);
120+
String systemEnv = System.getenv(systemEnvName);
121121

122-
if(systemProp != null) {
123-
LOG.info("Found System Property for " + key + " with Value " + systemProp);
124-
props.put(key, systemProp);
122+
if(systemEnv != null) {
123+
LOG.info("Found Env Property for " + key + " with Value " + systemEnv);
124+
props.put(key, systemEnv);
125125
}
126126

127127
});

0 commit comments

Comments
 (0)