From cc99c8ed6b0d857fa79e930d5a27d2f37c816284 Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Wed, 26 Jul 2023 13:46:51 +0530 Subject: [PATCH 1/4] Add license information --- ballerina/Module.md | 2 ++ ballerina/Package.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ballerina/Module.md b/ballerina/Module.md index 24661ab..46789d9 100644 --- a/ballerina/Module.md +++ b/ballerina/Module.md @@ -9,6 +9,8 @@ This Package bundles the latest H2 driver so that `java.jdbc` connector can be u |Ballerina Language | **2201.7.0** | |H2 Driver* | **2.2.220** | +> * H2 is dual licensed and available under the MPL 2.0 (Mozilla Public License Version 2.0) or under the EPL 1.0 (Eclipse Public License). + ## Usage To add the H2 driver dependency the project simply import the module as below, diff --git a/ballerina/Package.md b/ballerina/Package.md index 24661ab..46789d9 100644 --- a/ballerina/Package.md +++ b/ballerina/Package.md @@ -9,6 +9,8 @@ This Package bundles the latest H2 driver so that `java.jdbc` connector can be u |Ballerina Language | **2201.7.0** | |H2 Driver* | **2.2.220** | +> * H2 is dual licensed and available under the MPL 2.0 (Mozilla Public License Version 2.0) or under the EPL 1.0 (Eclipse Public License). + ## Usage To add the H2 driver dependency the project simply import the module as below, From fb046c882fcba20e92616ce65e30fe5bfe7d1b80 Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Wed, 26 Jul 2023 14:02:39 +0530 Subject: [PATCH 2/4] Remove skipping check task --- .github/workflows/central-publish.yml | 2 +- .github/workflows/publish-release.yml | 2 +- .github/workflows/trivy-scan.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/central-publish.yml b/.github/workflows/central-publish.yml index a4ff485..96d1eed 100644 --- a/.github/workflows/central-publish.yml +++ b/.github/workflows/central-publish.yml @@ -27,7 +27,7 @@ jobs: env: packageUser: ${{ github.actor }} packagePAT: ${{ secrets.GITHUB_TOKEN }} - run: ./gradlew build -x check -x test + run: ./gradlew build -x test - name: Create lib directory if not exists run: mkdir -p ballerina/lib - name: Run Trivy vulnerability scanner diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 70ba934..32c2d8e 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -25,7 +25,7 @@ jobs: run: | git config --global user.name ${{ secrets.BALLERINA_BOT_USERNAME }} git config --global user.email ${{ secrets.BALLERINA_BOT_EMAIL }} - ./gradlew build -x check -x test + ./gradlew build -x test - name: Create lib directory if not exists run: mkdir -p ballerina/lib - name: Run Trivy vulnerability scanner diff --git a/.github/workflows/trivy-scan.yml b/.github/workflows/trivy-scan.yml index 15a6ff8..a8af7e3 100644 --- a/.github/workflows/trivy-scan.yml +++ b/.github/workflows/trivy-scan.yml @@ -20,7 +20,7 @@ jobs: env: packageUser: ${{ github.actor }} packagePAT: ${{ secrets.GITHUB_TOKEN }} - run: ./gradlew build -x check -x test + run: ./gradlew build -x test - name: Create lib directory if not exists run: mkdir -p ballerina/lib - name: Run Trivy vulnerability scanner From c53586d705d4e5bd1192c508272c858a88455544 Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Wed, 26 Jul 2023 14:05:37 +0530 Subject: [PATCH 3/4] Update module version --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 78e6710..c1e23fb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=io.ballerina.stdlib -version=1.1.0 +version=1.0.0-SNAPSHOT githubSpotbugsVersion=4.0.5 githubJohnrengelmanShadowVersion=5.2.0 From 302793ece657cdcdbc5fd3abcc3cc54af33f41dd Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Wed, 26 Jul 2023 14:05:53 +0530 Subject: [PATCH 4/4] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 2 +- ballerina/Dependencies.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index c84f7e1..c502abf 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -1,7 +1,7 @@ [package] org = "ballerinax" name = "h2.driver" -version = "1.1.0" +version = "1.0.0" authors = ["Ballerina"] keywords = ["H2"] repository = "https://github.com/ballerina-platform/module-ballerinax-h2.driver" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index 69ced8f..bb8be24 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -10,7 +10,7 @@ distribution-version = "2201.7.0" [[package]] org = "ballerinax" name = "h2.driver" -version = "1.1.0" +version = "1.0.0" modules = [ {org = "ballerinax", packageName = "h2.driver", moduleName = "h2.driver"} ]