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

Commit e6d4f3e

Browse files
committed
Merge branch 'release/2.0.1'
2 parents 2490b0d + 686e27f commit e6d4f3e

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0"
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
4+
55
<modelVersion>4.0.0</modelVersion>
6-
6+
77
<groupId>org.arangodb.objectmapper</groupId>
88
<artifactId>arangodb-objectmapper</artifactId>
99
<version>2.0.0-SNAPSHOT</version>
10-
10+
1111
<name>ArangoDB object mapper for Java</name>
1212
<description>Java ODM for ArangoDB</description>
1313

@@ -74,6 +74,14 @@
7474
</plugins>
7575
</pluginManagement>
7676
<plugins>
77+
<plugin>
78+
<groupId>com.amashchenko.maven.plugin</groupId>
79+
<artifactId>gitflow-maven-plugin</artifactId>
80+
<version>1.11.0</version>
81+
<configuration>
82+
83+
</configuration>
84+
</plugin>
7785
<plugin>
7886
<inherited>true</inherited>
7987
<groupId>org.apache.maven.plugins</groupId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected void setUp() {
4949
try {
5050

5151
ArangoDbHttpClient.Builder builder = new ArangoDbHttpClient.Builder();
52-
client = builder.username("root").password("root").build();
52+
client = builder.username("root").password("").build();
5353

5454
} catch (ArangoDb4JException e1) {
5555
e1.printStackTrace();

0 commit comments

Comments
 (0)