From 6df3ba0083f89907a4393652f3b4392334c3b8a1 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sat, 9 Oct 2021 13:13:14 +0530 Subject: Upgrade plugin dependencies and fix Javadoc generation (#1517) * build: upgrade all plugins * autofill-parser/openpgp-ktx: apply Dokka plugin * Move repository configuration to settings.gradle.kts * Replace deprecated lintOptions * Reorder repositories --- settings.gradle.kts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'settings.gradle.kts') diff --git a/settings.gradle.kts b/settings.gradle.kts index bcb9fae4..56392b74 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -24,7 +24,22 @@ enableFeaturePreview("VERSION_CATALOGS") // Plugin repositories pluginManagement { repositories { + mavenCentral() gradlePluginPortal() + } +} + +dependencyResolutionManagement { + repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) + repositories { mavenCentral() + google() + maven("https://jitpack.io") { + name = "JitPack" + content { + includeModule("com.github.haroldadmin", "WhatTheStack") + includeModule("com.github.open-keychain.open-keychain", "sshauthentication-api") + } + } } } -- cgit v1.2.3