Skip to content

Commit

Permalink
#352: updated dependencies (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSergienko authored Jul 6, 2020
1 parent f3a4432 commit 8d4b840
Show file tree
Hide file tree
Showing 19 changed files with 38 additions and 26 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependency-reduced-pom.xml

# Integration tests
src/test/resources/integration/driver/hive/*.jar
src/test/resources/integration/driver/mysql/*.jar
src/test/resources/integration/driver/oracle/*.jar
src/test/resources/integration/driver/oracle/*.zip

Expand Down
17 changes: 14 additions & 3 deletions doc/changes/changes-4.0.2.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# Exasol Virtual Schemas 4.0.2, unreleased yyyy-mm-dd
# Exasol Virtual Schemas 4.0.2, released 2020-07-06

## Features / Enhancements

* #350: Improved Hive Kerberos documentation with HTTP protocol usage and
troubleshooting findings.
* #350: Improved Hive Kerberos documentation with HTTP protocol usage and troubleshooting findings.

## Refactoring

* #352: Updated dependencies.

## Dependency updates

* Updated `com.exasol:exasol-testcontainers` from 2.0.2 to 2.0.3
* Updated `com.exasol:hamcrest-resultset-matcher` from 1.1.0 to 1.1.1
* Updated `com.exasol:test-db-builder-java` from 1.0.0 to 1.0.1
* Updated `com.exasol:virtual-schema-common-jdbc` from 5.0.1 to 5.0.2
* Updated `org.testcontainers:junit-jupiter` from 1.14.2 to 1.14.3
* Updated `org.testcontainers:mysql` from 1.14.2 to 1.14.3
* Updated `org.testcontainers:oracle-xe` from 1.14.2 to 1.14.3
* Updated `org.testcontainers:postgresql` from 1.14.2 to 1.14.3
* Removed `hive-jdbc` transitive dependency `org.apache.logging.log4j:log4j-core`
* Removed `hbase-server` transitive dependency `com.nimbusds:nimbus-jose-jwt`
2 changes: 1 addition & 1 deletion doc/dialects/athena.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/AthenaJDBC42-<JDBC driver version>.jar;
/
;
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/aurora.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/postgresql-<JDBC driver version>.jar;
/
```
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/bigquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ List all the JAR files from Magnitude Simba JDBC driver.
```sql
CREATE JAVA ADAPTER SCRIPT SCHEMA_FOR_VS_SCRIPT.ADAPTER_SCRIPT_BIGQUERY AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/GoogleBigQueryJDBC42.jar;
...
...
Expand Down
4 changes: 2 additions & 2 deletions doc/dialects/db2.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/db2jcc4.jar;
%jar /buckets/<BFS service>/<bucket>/db2jcc_license_cu.jar;
/
Expand All @@ -68,7 +68,7 @@ CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/db2jcc4.jar;
%jar /buckets/<BFS service>/<bucket>/db2jcc_license_cu.jar;
%jar /buckets/<BFS service>/<bucket>/db2jcc_license_cisuz.jar;
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/hive.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/jars/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/jars/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/jars/HiveJDBC41.jar;
/
```
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/impala.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/ImpalaJDBC41.jar;
/
;
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT SCHEMA_FOR_VS_SCRIPT.ADAPTER_SCRIPT_MYSQL AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/mysql-connector-java-<version>.jar;
/
;
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/oracle.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/ojdbc<JDBC driver version>.jar;
/
;
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/postgresql-<version>.jar;
/
```
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/redshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/RedshiftJDBC42-<JDBC driver version>.jar;
/
;
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/saphana.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/ngdbc-<JDBC driver version>.jar;
/
;
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/sql_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/jtds.jar;
/
```
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/sybase.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/jtds-<version>.jar;
/
```
Expand Down
2 changes: 1 addition & 1 deletion doc/dialects/teradata.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/terajdbc4.jar;
%jar /buckets/<BFS service>/<bucket>/tdgssconfig.jar;
/
Expand Down
2 changes: 1 addition & 1 deletion doc/user-guide/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE JAVA ADAPTER SCRIPT SCHEMA_FOR_VS_SCRIPT.JDBC_ADAPTER_SCRIPT AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/your-bucket-fs/your-bucket/virtual-schema-dist-5.0.1-bundle-4.0.1.jar;
%jar /buckets/your-bucket-fs/your-bucket/virtual-schema-dist-5.0.2-bundle-4.0.2.jar;
%jar /buckets/your-bucket-fs/your-bucket/<JDBC driver>.jar;
/
```
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>virtual-schema-jdbc-adapter</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
<name>Virtual Schema JDBC Adapter</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -13,8 +13,8 @@
<junit.version>5.6.2</junit.version>
<junit.platform.version>1.6.1</junit.platform.version>
<surefire.and.failsafe.plugin.version>3.0.0-M4</surefire.and.failsafe.plugin.version>
<vscjdbc.version>5.0.1</vscjdbc.version>
<org.testcontainers.version>1.14.2</org.testcontainers.version>
<vscjdbc.version>5.0.2</vscjdbc.version>
<org.testcontainers.version>1.14.3</org.testcontainers.version>
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml
</sonar.coverage.jacoco.xmlReportPaths>
</properties>
Expand Down Expand Up @@ -104,7 +104,7 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -258,13 +258,13 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>test-db-builder-java</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>hamcrest-resultset-matcher</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.nio.file.Path;

public final class IntegrationTestConstants {
public static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-5.0.1-bundle-4.0.1.jar";
public static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-5.0.2-bundle-4.0.2.jar";
public static final Path PATH_TO_VIRTUAL_SCHEMAS_JAR = Path.of("target", VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION);
public static final String SCHEMA_EXASOL = "SCHEMA_EXASOL";
public static final String ADAPTER_SCRIPT_EXASOL = "ADAPTER_SCRIPT_EXASOL";
Expand Down

0 comments on commit 8d4b840

Please sign in to comment.