Skip to content

Commit

Permalink
Fixed broken link (#13)
Browse files Browse the repository at this point in the history
* fixed broken link
  • Loading branch information
jakobbraun authored Sep 22, 2021
1 parent ce9936f commit 499dab7
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,18 @@ jobs:
${{ runner.os }}-maven-
- name: Build with Maven skipping tests
run: mvn clean verify -DskipTests
- name: Generate sha256sum files
run: find target -maxdepth 1 -name *.jar -exec bash -c 'sha256sum {} > {}.sha256' \;
- name: Upload assets to the GitHub release draft
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/*.jar
- name: Upload sha256sum files
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/*.sha256
- name: Upload error-code-report
uses: shogo82148/actions-upload-release-asset@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@

[22]: https://github.com/exasol/project-keeper-maven-plugin
[34]: https://www.eclemma.org/jacoco/index.html
[2]: http://www.snakeyaml.org
[4]: https://github.com/exasol/error-reporting-java
[3]: http://www.apache.org/licenses/LICENSE-2.0.txt
[32]: https://maven.apache.org/surefire/maven-surefire-plugin/
Expand All @@ -74,6 +73,7 @@
[56]: http://maven.apache.org/plugins/maven-jar-plugin/
[25]: https://www.apache.org/licenses/LICENSE-2.0.txt
[28]: https://maven.apache.org/enforcer/maven-enforcer-plugin/
[2]: https://bitbucket.org/asomov/snakeyaml/src/master/
[7]: https://www.eclipse.org/legal/epl-v20.html
[58]: http://maven.apache.org/plugins/maven-install-plugin/
[6]: https://junit.org/junit5/
Expand Down
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Changes

* [2.0.1](changes_2.0.1.md)
* [2.0.0](changes_2.0.0.md)
* [1.0.0](changes_1.0.0.md)
21 changes: 21 additions & 0 deletions doc/changes/changes_2.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# virtual-schema-shared-integration-tests 2.0.1, released 2021-??-??

Code name:

## Dependency Updates

### Compile Dependency Updates

* Updated `com.exasol:virtual-schema-common-java:15.1.0` to `15.2.0`
* Updated `org.junit.jupiter:junit-jupiter:5.7.2` to `5.8.0`

### Test Dependency Updates

* Updated `com.exasol:exasol-testcontainers:4.0.0` to `5.0.0`
* Updated `com.exasol:test-db-builder-java:3.2.0` to `3.2.1`
* Updated `org.mockito:mockito-junit-jupiter:3.11.2` to `3.12.4`

### Plugin Dependency Updates

* Updated `com.exasol:error-code-crawler-maven-plugin:0.5.1` to `0.6.0`
* Updated `com.exasol:project-keeper-maven-plugin:0.10.0` to `1.2.0`
24 changes: 14 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>virtual-schema-shared-integration-tests</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<name>virtual-schema-shared-integration-tests</name>
<description>Abstract integration tests for virtual schemas
</description>
<url>https://github.com/exasol/virtual-schema-shared-integration-tests</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8
</project.reporting.outputEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<junit.version>5.7.1</junit.version>
<maven.surefire-and-failsafe.version>3.0.0-M3</maven.surefire-and-failsafe.version>
Expand Down Expand Up @@ -87,7 +86,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.7.2</version>
<version>5.8.0</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
Expand All @@ -97,13 +96,13 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>virtual-schema-common-java</artifactId>
<version>15.1.0</version>
<version>15.2.0</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>4.0.0</version>
<version>5.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -115,13 +114,13 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>test-db-builder-java</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>3.11.2</version>
<version>3.12.4</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -136,7 +135,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>0.10.0</version>
<version>1.2.0</version>
<executions>
<execution>
<goals>
Expand All @@ -149,6 +148,11 @@
<module>integration_tests</module>
<module>maven_central</module>
</modules>
<linkReplacements>
<linkReplacement>
http://www.snakeyaml.org|https://bitbucket.org/asomov/snakeyaml/src/master/
</linkReplacement>
</linkReplacements>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -373,7 +377,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>error-code-crawler-maven-plugin</artifactId>
<version>0.5.1</version>
<version>0.6.0</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 499dab7

Please sign in to comment.