Skip to content

Commit e28d1fd

Browse files
#129: updated dependencies (#130)
* #129: updated dependencies
1 parent 6f2126d commit e28d1fd

14 files changed

+38
-38
lines changed

pom.xml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.exasol</groupId>
66
<artifactId>virtual-schema-common-java</artifactId>
7-
<version>8.0.1</version>
7+
<version>8.0.2</version>
88
<name>Common module of Exasol Virtual Schemas Adapters</name>
99
<description>This is one of the modules of Virtual Schemas Adapters. The libraries provided by this project are the foundation of the adapter development, i.e. adapters must be implemented on top of them.</description>
1010
<url>https://github.com/exasol/virtual-schema-common-java</url>
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1414
<java.version>11</java.version>
15-
<junit.version>5.4.2</junit.version>
16-
<junit.platform.version>1.4.2</junit.platform.version>
17-
<maven.surefire.version>3.0.0-M3</maven.surefire.version>
15+
<junit.version>5.6.1</junit.version>
16+
<junit.platform.version>1.6.1</junit.platform.version>
17+
<maven.surefire.version>3.0.0-M4</maven.surefire.version>
1818
<gpg.skip>true</gpg.skip>
1919
</properties>
2020
<licenses>
@@ -67,17 +67,17 @@
6767
<dependency>
6868
<groupId>org.glassfish</groupId>
6969
<artifactId>javax.json</artifactId>
70-
<version>1.0.4</version>
70+
<version>1.1.4</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>com.exasol</groupId>
7474
<artifactId>exasol-script-api</artifactId>
75-
<version>6.1.0</version>
75+
<version>6.1.7</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.hamcrest</groupId>
7979
<artifactId>hamcrest</artifactId>
80-
<version>2.1</version>
80+
<version>2.2</version>
8181
<scope>test</scope>
8282
</dependency>
8383
<dependency>
@@ -107,24 +107,25 @@
107107
<dependency>
108108
<groupId>org.mockito</groupId>
109109
<artifactId>mockito-core</artifactId>
110-
<version>2.24.0</version>
110+
<version>3.3.3</version>
111+
<scope>test</scope>
111112
</dependency>
112113
<dependency>
113114
<groupId>org.mockito</groupId>
114115
<artifactId>mockito-junit-jupiter</artifactId>
115-
<version>2.23.4</version>
116+
<version>3.3.3</version>
116117
<scope>test</scope>
117118
</dependency>
118119
<dependency>
119120
<groupId>org.itsallcode</groupId>
120121
<artifactId>junit5-system-extensions</artifactId>
121-
<version>1.0.3</version>
122+
<version>1.1.0</version>
122123
<scope>test</scope>
123124
</dependency>
124125
<dependency>
125126
<groupId>nl.jqno.equalsverifier</groupId>
126127
<artifactId>equalsverifier</artifactId>
127-
<version>3.1.7</version>
128+
<version>3.1.13</version>
128129
<scope>test</scope>
129130
</dependency>
130131
</dependencies>
@@ -133,7 +134,7 @@
133134
<plugin>
134135
<groupId>org.apache.maven.plugins</groupId>
135136
<artifactId>maven-compiler-plugin</artifactId>
136-
<version>3.2</version>
137+
<version>3.8.1</version>
137138
<configuration>
138139
<source>${java.version}</source>
139140
<target>${java.version}</target>
@@ -142,7 +143,7 @@
142143
<plugin>
143144
<groupId>org.jacoco</groupId>
144145
<artifactId>jacoco-maven-plugin</artifactId>
145-
<version>0.8.3</version>
146+
<version>0.8.5</version>
146147
<executions>
147148
<execution>
148149
<goals>
@@ -166,7 +167,7 @@
166167
<plugin>
167168
<groupId>org.apache.maven.plugins</groupId>
168169
<artifactId>maven-source-plugin</artifactId>
169-
<version>3.0.1</version>
170+
<version>3.2.1</version>
170171
<executions>
171172
<execution>
172173
<id>attach-sources</id>
@@ -179,7 +180,7 @@
179180
<plugin>
180181
<groupId>org.apache.maven.plugins</groupId>
181182
<artifactId>maven-javadoc-plugin</artifactId>
182-
<version>3.0.1</version>
183+
<version>3.2.0</version>
183184
<executions>
184185
<execution>
185186
<id>attach-javadocs</id>

src/test/java/com/exasol/adapter/AbstractAdapterPropertiesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.exasol.adapter;
22

33
import static org.hamcrest.Matchers.*;
4-
import static org.junit.Assert.assertThat;
4+
import static org.hamcrest.MatcherAssert.assertThat;
55
import static org.junit.Assert.assertTrue;
66

77
import java.util.*;

src/test/java/com/exasol/adapter/AdapterPropertiesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import static com.exasol.adapter.AdapterProperties.*;
44
import static org.hamcrest.Matchers.*;
5-
import static org.junit.Assert.assertThat;
5+
import static org.hamcrest.MatcherAssert.assertThat;
66
import static org.junit.jupiter.api.Assertions.assertThrows;
77

88
import java.lang.reflect.*;

src/test/java/com/exasol/adapter/AdapterRegistryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import static org.hamcrest.Matchers.instanceOf;
55
import static org.hamcrest.collection.IsEmptyCollection.emptyCollectionOf;
66
import static org.hamcrest.collection.IsIterableContainingInAnyOrder.containsInAnyOrder;
7-
import static org.junit.Assert.assertThat;
7+
import static org.hamcrest.MatcherAssert.assertThat;
88
import static org.junit.jupiter.api.Assertions.assertThrows;
99

1010
import org.junit.jupiter.api.AfterEach;

src/test/java/com/exasol/adapter/RequestDispatcherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import static org.hamcrest.Matchers.containsString;
44
import static org.hamcrest.Matchers.startsWith;
5-
import static org.junit.Assert.assertThat;
5+
import static org.hamcrest.MatcherAssert.assertThat;
66
import static org.junit.jupiter.api.Assertions.assertAll;
77
import static org.junit.jupiter.api.Assertions.assertThrows;
88
import static org.mockito.ArgumentMatchers.any;

src/test/java/com/exasol/adapter/capabilities/CapabilityAssertions.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.exasol.adapter.capabilities;
22

3+
import static org.hamcrest.MatcherAssert.assertThat;
34
import static org.hamcrest.collection.IsEmptyIterable.emptyIterableOf;
45
import static org.hamcrest.collection.IsIterableContainingInAnyOrder.containsInAnyOrder;
5-
import static org.junit.Assert.assertThat;
66

77
public final class CapabilityAssertions {
88
private CapabilityAssertions() {
@@ -58,5 +58,4 @@ public static void assertCapabilitesContainAllOf(final Capabilities capabilities
5858
assertThat("Contains aggregate function capabilities", capabilities.getAggregateFunctionCapabilities(),
5959
containsInAnyOrder(expectedCapabilities));
6060
}
61-
6261
}

src/test/java/com/exasol/adapter/metadata/TableMetadataTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.exasol.adapter.metadata;
22

3+
import static org.hamcrest.MatcherAssert.assertThat;
34
import static org.hamcrest.Matchers.equalTo;
4-
import static org.junit.Assert.assertThat;
55

66
import java.util.*;
77

src/test/java/com/exasol/adapter/request/LoggingConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import static com.exasol.adapter.AdapterProperties.DEBUG_ADDRESS_PROPERTY;
44
import static com.exasol.adapter.AdapterProperties.LOG_LEVEL_PROPERTY;
55
import static org.hamcrest.Matchers.equalTo;
6-
import static org.junit.Assert.assertThat;
6+
import static org.hamcrest.MatcherAssert.assertThat;
77
import static org.junit.jupiter.api.Assertions.assertAll;
88

99
import java.util.HashMap;

src/test/java/com/exasol/adapter/request/parser/PushDownSqlParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
import static com.exasol.adapter.sql.SqlNodeType.*;
2121
import static org.hamcrest.Matchers.*;
22-
import static org.junit.Assert.assertThat;
22+
import static org.hamcrest.MatcherAssert.assertThat;
2323
import static org.junit.jupiter.api.Assertions.assertAll;
2424

2525
class PushDownSqlParserTest {

src/test/java/com/exasol/adapter/request/parser/RequestParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.exasol.adapter.request.parser;
22

3+
import static org.hamcrest.MatcherAssert.assertThat;
34
import static org.hamcrest.Matchers.*;
45
import static org.hamcrest.collection.IsMapContaining.hasEntry;
5-
import static org.junit.Assert.assertThat;
66
import static org.junit.jupiter.api.Assertions.assertAll;
77
import static org.junit.jupiter.api.Assertions.assertThrows;
88

0 commit comments

Comments
 (0)