aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/deploy_library_releases.yml14
-rw-r--r--openpgp-ktx/README.md4
-rw-r--r--settings.gradle.kts2
3 files changed, 4 insertions, 16 deletions
diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml
index 1febdf42..6cdf5b1f 100644
--- a/.github/workflows/deploy_library_releases.yml
+++ b/.github/workflows/deploy_library_releases.yml
@@ -2,7 +2,6 @@ name: Release library subprojects
on:
push:
tags:
- - openpgp-ktx-v*
- autofill-parser-v*
jobs:
@@ -18,21 +17,10 @@ jobs:
distribution: temurin
java-version: 17
- - name: Determine publishing task
- id: task-select
- run: |
- set -x
- TAG=${GITHUB_REF/refs\/tags\//}
- if [[ "${TAG}" =~ "openpgp-ktx" ]]; then
- echo '::set-output name=PROJECT::openpgp-ktx'
- elif [[ "${TAG}" =~ "autofill-parser" ]]; then
- echo '::set-output name=PROJECT::autofill-parser'
- fi
-
- name: Upload binaries
uses: gradle/gradle-build-action@v2.2.1
with:
- arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
+ arguments: --no-configuration-cache :autofill-parser:publishAllPublicationsToMavenCentralRepository
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
diff --git a/openpgp-ktx/README.md b/openpgp-ktx/README.md
index a5b27b0f..e1598ac1 100644
--- a/openpgp-ktx/README.md
+++ b/openpgp-ktx/README.md
@@ -1,4 +1,6 @@
-# openpgp-ktx [![Maven Central](https://img.shields.io/maven-central/v/com.github.android-password-store/openpgp-ktx.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.android-password-store%22%20AND%20a:%22openpgp-ktx%22)
+# [DEPRECATED] openpgp-ktx [![Maven Central](https://img.shields.io/maven-central/v/com.github.android-password-store/openpgp-ktx.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.android-password-store%22%20AND%20a:%22openpgp-ktx%22)
+
+> Android Password Store no longer uses this library and thus is not maintaining it actively.
Reimplementation of [OpenKeychain]'s integration library [openpgp-api]. Written entirely in Kotlin, it leverages Jetpack to be compatible with modern apps, unlike the original library.
diff --git a/settings.gradle.kts b/settings.gradle.kts
index eb6720d0..dfa01c16 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -121,8 +121,6 @@ include("crypto-pgpainless")
include("format-common")
-include("openpgp-ktx")
-
include("passgen:diceware")
include("passgen:random")