8000 fixed some version numbers · anderick/arangodb-java-driver@e012314 · GitHub
[go: up one dir, main page]

Skip to content

Commit e012314

Browse files
committed
fixed some version numbers
1 parent 5e41e5c commit e012314

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed
< 8000 /div>

pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<plugin>
6060
<groupId>org.sonatype.plugins</groupId>
6161
<artifactId>nexus-staging-maven-plugin</artifactId>
62-
<version>1.6.3</version>
62+
<version>1.6.5</version>
6363
<extensions>true</extensions>
6464
<configuration>
6565
<serverId>ossrh</serverId>
@@ -135,6 +135,9 @@
135135
<goals>
136136
<goal>jar</goal>
137137
</goals>
138+
<configuration>
139+
<additionalparam>-Xdoclint:none</additionalparam>
140+
</configuration>
138141
</execution>
139142
</executions>
140143
</plugin>

src/test/java/com/arangodb/ArangoConfigureTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void load_from_proerty_file2() {
6565

6666
}
6767

68-
@Ignore
68+
/* @Ignore
6969
@Test
7070
public void connect_timeout() throws ArangoException {
7171
@@ -84,7 +84,7 @@ public void connect_timeout() throws ArangoException {
8484
8585
configure.shutdown();
8686
87-
}
87+
}*/
8888

8989
@Test
9090
public void so_connect_timeout() throws ArangoException {

src/test/java/com/arangodb/ArangoDriverAdminTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public void test_version() throws ArangoException {
5252

5353
ArangoVersion version = driver.getVersion();
5454
assertThat(version.getServer(), is("arango"));
55-
assertThat(version.getVersion(), is("2.3.0-devel"));
55+
// assertThat(version.getVersion(), is("2.3.0-devel"));
56+
assertThat(version.getVersion(), is("2.3.5"));
5657

5758
}
5859

0 commit comments

Comments
 (0)
0