Skip to content

Commit

Permalink
* #396: Updated to the virtual-schema-common-java:6.0.0 (#397)
Browse files Browse the repository at this point in the history
* #396: Updated to the `virtual-schema-common-java:6.0.0`
  • Loading branch information
AnastasiiaSergienko committed Sep 30, 2020
1 parent e050bc0 commit 54e88dd
Show file tree
Hide file tree
Showing 38 changed files with 99 additions and 92 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: Upload Release Asset
name: GitHub Release

on:
workflow_dispatch:
inputs:
version:
description: 'Release version'
required: true
upload_url:
description: 'Upload URL'
required: true
asset_name:
description: 'Asset file name'
required: true
asset_path:
description: 'Asset file path'
required: true

jobs:
build:
Expand All @@ -28,6 +31,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: ./target/virtual-schema-dist-5.0.4-bundle-${{ github.event.inputs.version }}.jar
asset_name: virtual-schema-dist-5.0.4-bundle-${{ github.event.inputs.version }}.jar
asset_content_type: application/java-archive
asset_path: ${{ github.event.inputs.asset_path }}
asset_name: ${{ github.event.inputs.asset_name }}
asset_content_type: application/java-archive
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,4 @@ Running the Virtual Schema requires a Java Runtime version 9 or later.
[sql-server-dialect-doc]: doc/dialects/sql_server.md
[sybase-dialect-doc]: doc/dialects/sybase.md
[teradata-dialect-doc]: doc/dialects/teradata.md
[artifact-reference-checker-plugin]: https://github.com/exasol/artifact-reference-checker-maven-plugin
[artifact-reference-checker-plugin]: https://github.com/exasol/artifact-reference-checker-maven-plugin
21 changes: 16 additions & 5 deletions doc/changes/changes_4.0.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,29 @@ Code name:
## Documentation

* #371: Documented data types conversion for Hive dialect.
* #377: Improved Scalar Functions API documentation.
* #384: Turned embedded JSON into key-value encoding in Adapter Notes API examples.
* #377: Improved Scalar Functions API documentation.
* #384: Turned embedded JSON into key-value encoding in Adapter Notes API examples.
* #386: Remove the documentation that was moved to the portal, added links instead.
* #394: Described 'No suitable driver found', added a note that Hive 1.1.0 has problems with its driver.
* #394: Described 'No suitable driver found', added a note that Hive 1.1.0 has problems with its driver.

## Refactoring

* #263: Removed SybaseMetadataReader class as it was not used by the dialect.
* #381: Migrated from version.sh to artifact-reference-checker-maven-plugin.
* #389: Improved connection error handling.
* #396: Updated to the `virtual-schema-common-java:6.0.0`

## Dependency updates

* Updated `org.apache.hbase:hbase-server` from 2.3.0 to 2.3.1
* Added com.exasol:artifact-reference-checker-maven-plugin:0.3.1
* Added com.exasol:artifact-reference-checker-maven-plugin:0.3.1
* Updated com.exasol:virtual-schema-common-java:jar:5.0.4 to version 6.0.0
* Updated org.apache.hbase:hbase-server:jar:2.3.0 to version 2.3.1
* Updated org.junit.jupiter:junit-jupiter:jar:5.6.2 to version 5.7.0
* Updated org.mockito:mockito-junit-jupiter:jar:3.4.6 to version 3.5.13
* Updated com.exasol:exasol-jdbc:jar:6.2.5 to version 7.0.0
* Updated com.exasol:exasol-testcontainers:jar:2.1.0 to version 3.1.0
* Updated org.postgresql:postgresql:jar:42.2.14 to version 42.2.16
* Updated org.apache.hbase:hbase-server:jar:2.3.1 to version 2.3.2
* Updated com.microsoft.sqlserver:mssql-jdbc:jar:8.4.0.jre11 to version 8.4.1.jre11
* Updated com.exasol:test-db-builder-java:jar:1.0.1 to version 1.1.0
* Updated com.exasol:hamcrest-resultset-matcher:jar:1.1.1 to version 1.2.1
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/AthenaJDBC42-<JDBC driver version>.jar;
/
;
Expand Down Expand Up @@ -77,4 +77,4 @@ CREATE VIRTUAL SCHEMA <virtual schema name>
SQL_DIALECT = 'ATHENA'
CONNECTION_NAME = 'ATHENA_CONNECTION'
SCHEMA_NAME = '<database name>';
```
```
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/postgresql-<JDBC driver version>.jar;
/
```
Expand Down Expand Up @@ -125,4 +125,4 @@ The default schema is called `public`.

### PostgreSQL-specifics

Since this method of connecting uses the PostgreSQL database driver and SQL dialect, please check the [documentation of the PostgreSQL SQL dialect](postgresql.md) for details on type conversion and other PostgreSQL-specifics.
Since this method of connecting uses the PostgreSQL database driver and SQL dialect, please check the [documentation of the PostgreSQL SQL dialect](postgresql.md) for details on type conversion and other PostgreSQL-specifics.
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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/GoogleBigQueryJDBC42.jar;
...
...
Expand Down
6 changes: 3 additions & 3 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.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 Expand Up @@ -119,4 +119,4 @@ The DB2 dialect handles implements specific casts for time data types and functi

* `LIMIT` will replaced by `FETCH FIRST x ROWS ONLY`
* `OFFSET` is currently not supported as only DB2 V11 support this natively
* `ADD_DAYS`, `ADD_WEEKS` ... will be replaced by `COLUMN + DAYS`, `COLUMN + ....`
* `ADD_DAYS`, `ADD_WEEKS` ... will be replaced by `COLUMN + DAYS`, `COLUMN + ....`
6 changes: 3 additions & 3 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/jars/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/jars/HiveJDBC41.jar;
/
```
Expand Down Expand Up @@ -302,7 +302,7 @@ In Virtual Schema adapter:
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%jvmoption -Dsun.security.krb5.disableReferrals=true;
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/jars/virtual-schema-dist-5.0.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/jars/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/jars/HiveJDBC41.jar;
/
```
Expand Down Expand Up @@ -363,4 +363,4 @@ The driver is also available directly from [Simba technologies](http://www.simba

Virtual Schema Version| Hive Version | Driver Name | Driver Version
----------------------|--------------|-------------|-----------------
4.0.3 | 2.3.2 | HiveJDBC | 4.1
4.0.3 | 2.3.2 | HiveJDBC | 4.1
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/ImpalaJDBC41.jar;
/
;
Expand Down Expand Up @@ -133,4 +133,4 @@ CREATE VIRTUAL SCHEMA <virtual schema name>
SQL_DIALECT = 'IMPALA'
CONNECTION_NAME = 'KRB_CONN'
SCHEMA_NAME = '<schema name>';
```
```
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/mysql-connector-java-<version>.jar;
/
;
Expand Down Expand Up @@ -126,4 +126,4 @@ In the following matrix you find combinations of JDBC driver and dialect version

| Virtual Schema Version | MySQL Version | Driver Name | Driver Version |
|------------------------|---------------|-----------------|----------------|
| Latest | MySQL 8.0.20 | MySQL Connector | 8.0.20 |
| Latest | MySQL 8.0.20 | MySQL Connector | 8.0.20 |
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/ojdbc<JDBC driver version>.jar;
/
;
Expand Down Expand Up @@ -181,4 +181,4 @@ In the following matrix you find combinations of JDBC driver and dialect version
| Virtual Schema Version | Oracle Version | Driver Name | Driver Version |
|------------------------|--------------------|---------------------------|----------------|
| 4.0.3 | Oracle XE 11g | ojdbc | 8 |
| 4.0.3 | Oracle XE 11g | instantclient-basic-linux | x64-12.1.0.2.0 |
| 4.0.3 | Oracle XE 11g | instantclient-basic-linux | x64-12.1.0.2.0 |
4 changes: 2 additions & 2 deletions doc/dialects/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/postgresql-<version>.jar;
/
```
Expand Down Expand Up @@ -191,4 +191,4 @@ In the following matrix you find combinations of JDBC driver and dialect version

| Virtual Schema Version | PostgreSQL Version | Driver Name | Driver Version |
|------------------------|--------------------|------------------------|----------------|
| Latest | PostgreSQL 9.6.2 | PostgreSQL JDBC Driver | 42.2.5 |
| Latest | PostgreSQL 9.6.2 | PostgreSQL JDBC Driver | 42.2.5 |
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/RedshiftJDBC42-<JDBC driver version>.jar;
/
;
Expand Down Expand Up @@ -80,4 +80,4 @@ CREATE VIRTUAL SCHEMA <virtual schema name>
CONNECTION_NAME = 'REDSHIFT_CONNECTION'
CATALOG_NAME = '<database name>'
SCHEMA_NAME = 'public';
```
```
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/ngdbc-<JDBC driver version>.jar;
/
;
Expand Down Expand Up @@ -114,4 +114,4 @@ Also here the only solution is to not use it in conjunction with a Virtual Schem
### Column Type `TIME`

The type `TIME` always comes to Virtual Schema as a `TIMESTAMP` data type therefore it has not only time, but also date.
For now it is always a current date. Example: 10:30:25 will be 27.06.2019 10:30:25.0 where date is a current date.
For now it is always a current date. Example: 10:30:25 will be 27.06.2019 10:30:25.0 where date is a current date.
4 changes: 2 additions & 2 deletions doc/dialects/sql_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,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_SQLSERVER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-5.0.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/mssql-jdbc-<version>.jre8.jar;
/
```
Expand Down Expand Up @@ -127,4 +127,4 @@ In the following matrix you find combinations of JDBC driver and dialect version

| Virtual Schema Version | SQL SERVER Version | Driver Name | Driver Version |
|------------------------|------------------------------|-------------------|----------------|
| Latest | 2019-CU6-ubuntu-16.04 8.0.20 | MS SQL JDBC JRE 8 | 8.4.0 |
| Latest | 2019-CU6-ubuntu-16.04 8.0.20 | MS SQL JDBC JRE 8 | 8.4.0 |
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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/jtds-<version>.jar;
/
```
Expand Down
4 changes: 2 additions & 2 deletions 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.4-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-6.0.0-bundle-4.0.4.jar;
%jar /buckets/<BFS service>/<bucket>/terajdbc4.jar;
%jar /buckets/<BFS service>/<bucket>/tdgssconfig.jar;
/
Expand Down Expand Up @@ -76,4 +76,4 @@ CREATE VIRTUAL SCHEMA <virtual schema name>
SQL_DIALECT = 'TERADATA'
CONNECTION_NAME = 'TERADATA_CONNECTION'
SCHEMA_NAME = '<schema name>';
```
```
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<surefire.and.failsafe.plugin.version>3.0.0-M4</surefire.and.failsafe.plugin.version>
<vscjdbc.version>5.0.4</vscjdbc.version>
<vscjdbc.version>6.0.0</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>
Expand Down Expand Up @@ -65,26 +65,26 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.2</version>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>3.4.6</version>
<version>3.5.13</version>
<scope>test</scope>
</dependency>
<!--Integration test dependencies-->
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-jdbc</artifactId>
<version>6.2.5</version>
<version>7.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>2.1.0</version>
<version>3.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -102,7 +102,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.14</version>
<version>42.2.16</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
Expand Down Expand Up @@ -177,7 +177,7 @@
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-server</artifactId>
<version>2.3.1</version>
<version>2.3.2</version>
<scope>test</scope>
<!--Excluding transient dependencies with vulnerabilities-->
<exclusions>
Expand Down Expand Up @@ -218,7 +218,7 @@
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>8.4.0.jre11</version>
<version>8.4.1.jre11</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
Expand All @@ -241,13 +241,13 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>test-db-builder-java</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>hamcrest-resultset-matcher</artifactId>
<version>1.1.1</version>
<version>1.2.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 54e88dd

Please sign in to comment.