From b0f3e9ae17f3108368d87f91fc532b172d4d5457 Mon Sep 17 00:00:00 2001 From: Jacob Persson <7156+typfel@users.noreply.github.com> Date: Wed, 18 Oct 2023 11:06:57 +0200 Subject: [PATCH] chore: remove github packages repository WPB-5028 (#2143) --- README.md | 16 ---------------- build.gradle.kts | 7 ------- 2 files changed, 23 deletions(-) diff --git a/README.md b/README.md index fbdecff4822..ad68cc8bbd0 100644 --- a/README.md +++ b/README.md @@ -7,22 +7,6 @@ ## How to build -### GitHub Packages authentication - -In order to download some open source libraries published on GitHub Pacakges, a GitHub Personal Access Token is needed with `packages:read` scope. - -1. You can generate one quickly [on this page](https://github.com/settings/tokens/new?description=ReadPackages&scopes=read:packages). Or, for more details, see [Creating a personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token). - -2. In `local.properties` add: -``` -github.package_registry.user= -github.package_registry.token= -``` - -Alternatively the credentials are also read from your environment if `GITHUB_USER` and `GITHUB_TOKEN` exists. - -> *Note*: See [GitHub packages docs](https://docs.github.com/en/packages/learn-github-packages/introduction-to-github-packages#authenticating-to-github-packages) for more details and. - ### Dependencies - JDK 17 (ex: openjdk-17-jdk on Ubuntu) diff --git a/build.gradle.kts b/build.gradle.kts index 16ac6d821b2..5712f0daf99 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -71,13 +71,6 @@ allprojects { mavenLocal() google() mavenCentral() - maven { - url = uri("https://maven.pkg.github.com/wireapp/core-crypto") - credentials { - username = getLocalProperty("github.package_registry.user", System.getenv("GITHUB_USER")) - password = getLocalProperty("github.package_registry.token", System.getenv("GITHUB_TOKEN")) - } - } } }