-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/230: Added serializer for SqlNode (#232)
* feature/230: Added serializer for SqlNode
- Loading branch information
1 parent
6653ab3
commit e18c8f1
Showing
17 changed files
with
1,628 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: lychee Link Checker | ||
id: lc | ||
uses: lycheeverse/[email protected] | ||
- name: Fail if there were link errors | ||
run: exit ${{ steps.lc.outputs.exit_code }} | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: CI Build | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Run tests and build with Maven | ||
run: mvn --batch-mode --update-snapshots clean verify sonar:sonar --file pom.xml -DtrimStackTrace=false -Dsonar.organization=exasol -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN | ||
env: | ||
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ dependency-reduced-pom.xml | |
**/local | ||
Scripts | ||
.dbeaver* | ||
pom.xml.versionsBackup |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<!-- @formatter:off --> | ||
# Dependencies | ||
|
||
## Compile Dependencies | ||
|
||
| Dependency | License | | ||
| ----------------------------------------------- | -------------------------------------------------------- | | ||
| [JSR 374 (JSON Processing) Default Provider][0] | [Dual license consisting of the CDDL v1.1 and GPL v2][1] | | ||
| [Java Interface for EXASOL Scripts][2] | [MIT License][3] | | ||
| [error-reporting-java][4] | [MIT][3] | | ||
|
||
## Test Dependencies | ||
|
||
| Dependency | License | | ||
| -------------------------------- | --------------------------------------------- | | ||
| [Hamcrest][6] | [BSD License 3][7] | | ||
| [JSONassert][8] | [The Apache Software License, Version 2.0][9] | | ||
| [JUnit Jupiter (Aggregator)][10] | [Eclipse Public License v2.0][11] | | ||
| [mockito-junit-jupiter][12] | [The MIT License][13] | | ||
| [JUnit5 System Extensions][14] | [Eclipse Public License v2.0][15] | | ||
| [EqualsVerifier][16] | [Apache License, Version 2.0][9] | | ||
|
||
## Plugin Dependencies | ||
|
||
| Dependency | License | | ||
| ------------------------------------------------------- | --------------------------------------------- | | ||
| [Apache Maven Compiler Plugin][18] | [Apache License, Version 2.0][19] | | ||
| [JaCoCo :: Maven Plugin][20] | [Eclipse Public License 2.0][21] | | ||
| [Maven Surefire Plugin][22] | [Apache License, Version 2.0][19] | | ||
| [Apache Maven Source Plugin][24] | [Apache License, Version 2.0][19] | | ||
| [Apache Maven Javadoc Plugin][26] | [Apache License, Version 2.0][19] | | ||
| [Apache Maven GPG Plugin][28] | [Apache License, Version 2.0][9] | | ||
| [org.sonatype.ossindex.maven:ossindex-maven-plugin][30] | [ASL2][9] | | ||
| [Versions Maven Plugin][32] | [Apache License, Version 2.0][19] | | ||
| [Apache Maven Enforcer Plugin][34] | [Apache License, Version 2.0][19] | | ||
| [Maven Deploy Plugin][36] | [The Apache Software License, Version 2.0][9] | | ||
| [Nexus Staging Maven Plugin][38] | [Eclipse Public License][39] | | ||
| [error-code-crawler-maven-plugin][40] | [MIT][3] | | ||
| [Project keeper maven plugin][42] | [MIT][3] | | ||
| [Reproducible Build Maven Plugin][44] | [Apache 2.0][9] | | ||
| [Maven Clean Plugin][46] | [The Apache Software License, Version 2.0][9] | | ||
| [Maven Resources Plugin][48] | [The Apache Software License, Version 2.0][9] | | ||
| [Maven JAR Plugin][50] | [The Apache Software License, Version 2.0][9] | | ||
| [Maven Install Plugin][52] | [The Apache Software License, Version 2.0][9] | | ||
| [Maven Site Plugin 3][54] | [The Apache Software License, Version 2.0][9] | | ||
|
||
[20]: https://www.eclemma.org/jacoco/index.html | ||
[42]: https://github.com/exasol/project-keeper-maven-plugin | ||
[4]: https://github.com/exasol/error-reporting-java | ||
[15]: http://www.eclipse.org/legal/epl-v20.html | ||
[0]: https://javaee.github.io/jsonp | ||
[9]: http://www.apache.org/licenses/LICENSE-2.0.txt | ||
[22]: https://maven.apache.org/surefire/maven-surefire-plugin/ | ||
[38]: http://www.sonatype.com/public-parent/nexus-maven-plugins/nexus-staging/nexus-staging-maven-plugin/ | ||
[46]: http://maven.apache.org/plugins/maven-clean-plugin/ | ||
[3]: https://opensource.org/licenses/MIT | ||
[12]: https://github.com/mockito/mockito | ||
[32]: http://www.mojohaus.org/versions-maven-plugin/ | ||
[7]: http://opensource.org/licenses/BSD-3-Clause | ||
[18]: https://maven.apache.org/plugins/maven-compiler-plugin/ | ||
[1]: https://oss.oracle.com/licenses/CDDL+GPL-1.1 | ||
[28]: http://maven.apache.org/plugins/maven-gpg-plugin/ | ||
[21]: https://www.eclipse.org/legal/epl-2.0/ | ||
[39]: http://www.eclipse.org/legal/epl-v10.html | ||
[13]: https://github.com/mockito/mockito/blob/main/LICENSE | ||
[44]: http://zlika.github.io/reproducible-build-maven-plugin | ||
[50]: http://maven.apache.org/plugins/maven-jar-plugin/ | ||
[19]: https://www.apache.org/licenses/LICENSE-2.0.txt | ||
[34]: https://maven.apache.org/enforcer/maven-enforcer-plugin/ | ||
[2]: http://www.exasol.com | ||
[11]: https://www.eclipse.org/legal/epl-v20.html | ||
[52]: http://maven.apache.org/plugins/maven-install-plugin/ | ||
[10]: https://junit.org/junit5/ | ||
[30]: https://sonatype.github.io/ossindex-maven/maven-plugin/ | ||
[14]: https://github.com/itsallcode/junit5-system-extensions | ||
[8]: https://github.com/skyscreamer/JSONassert | ||
[16]: http://www.jqno.nl/equalsverifier | ||
[24]: https://maven.apache.org/plugins/maven-source-plugin/ | ||
[6]: http://hamcrest.org/JavaHamcrest/ | ||
[36]: http://maven.apache.org/plugins/maven-deploy-plugin/ | ||
[54]: http://maven.apache.org/plugins/maven-site-plugin/ | ||
[48]: http://maven.apache.org/plugins/maven-resources-plugin/ | ||
[26]: https://maven.apache.org/plugins/maven-javadoc-plugin/ | ||
[40]: https://github.com/exasol/error-code-crawler-maven-plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Common module of Exasol Virtual Schemas Adapters 15.2.0, released 2021-08-06 | ||
|
||
Code name: SqlNode serialization | ||
|
||
## Summary | ||
|
||
In this release we added a renderer for the `SqlNode` structure. | ||
|
||
## Features | ||
|
||
* #230: Added serializer for SqlNode | ||
|
||
## Dependency Updates | ||
|
||
### Test Dependency Updates | ||
|
||
* Updated `nl.jqno.equalsverifier:equalsverifier:3.6` to `3.7` | ||
* Updated `org.mockito:mockito-junit-jupiter:3.10.0` to `3.11.2` | ||
|
||
### Plugin Dependency Updates | ||
|
||
* Updated `com.exasol:error-code-crawler-maven-plugin:0.1.0` to `0.5.1` | ||
* Updated `com.exasol:project-keeper-maven-plugin:0.6.1` to `0.10.0` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
error-tags: | ||
VS-COM-JAVA: | ||
packages: | ||
- com.exasol |
Oops, something went wrong.