From 768b9692a73e5c2428edee2abdf728358379edd1 Mon Sep 17 00:00:00 2001 From: Luca Spinazzola Date: Fri, 16 Jun 2023 16:25:19 -0400 Subject: [PATCH] update readme --- README.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 1b07b8f..153b413 100644 --- a/README.md +++ b/README.md @@ -16,17 +16,10 @@ You can upload the ZIP file to your package registry so that SPM can download it The plugin is published on Maven central. Add it to the `plugins` block in the Gradle build file. ```kotlin -// settings.gradle.kts -pluginManagement { - repositories { - maven ("https://s01.oss.sonatype.org/content/repositories/releases/") - } -} - // build.gradle.kts plugins { // projects targting kotlin >=1.8.0 - id("io.github.luca992.multiplatform-swiftpackage") version "2.1.1" + id("io.github.luca992.multiplatform-swiftpackage") version "2.1.2" // projects targting kotlin <1.8.0 id("io.github.luca992.multiplatform-swiftpackage") version "2.0.5-arm64" }