From feec11ba85dccce39333fa61c6a60d2a5a8f12b0 Mon Sep 17 00:00:00 2001 From: Santiago Baldassin Date: Fri, 27 Oct 2023 16:06:54 -0300 Subject: [PATCH] removing logging and adding the license --- .github/workflows/build.yml | 4 ---- interop/kotlin/build.gradle.kts | 7 +++++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a760d890..08de90d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,6 @@ on: - develop - main - linux-builds-fix - - chore/publish-to-maven-central jobs: build: runs-on: ${{ matrix.build-target.runner }} @@ -416,11 +415,8 @@ jobs: - name: Get GPG key to sign working-directory: interop/kotlin/ret-kotlin run: | - ls -la aws secretsmanager get-secret-value --secret-id ${{ secrets.GPG_BINARY_SECRET_ID }} --query SecretBinary --output text | base64 --decode > rdx-secring.gpg cp rdx-secring.gpg lib/rdx-secring.gpg - ls -la - ls -la lib - name: Build and publish Kotlin uses: gradle/gradle-build-action@v2 with: diff --git a/interop/kotlin/build.gradle.kts b/interop/kotlin/build.gradle.kts index f4469795..69b56d67 100644 --- a/interop/kotlin/build.gradle.kts +++ b/interop/kotlin/build.gradle.kts @@ -36,6 +36,13 @@ publishing { version = providers.gradleProperty("ret-version").getOrNull() from(components["java"]) + + licenses { + license { + name = "Apache License, Version 2.0" + url = "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + } } }