From 70258e251c176ad5e0ececee11c4ec516006f36f Mon Sep 17 00:00:00 2001 From: Sculas Date: Tue, 14 Jun 2022 01:21:29 +0200 Subject: [PATCH] chore: use Kotlin plugin for dependencies --- build.gradle.kts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 675b478..2d649f3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,14 +29,13 @@ repositories { } dependencies { - implementation("org.jetbrains.kotlin:kotlin-stdlib:1.7.0") + kotlin("stdlib") + kotlin("reflect") implementation("app.revanced:revanced-patcher:1.1.0") - implementation("info.picocli:picocli:4.6.3") implementation("com.android.tools.build:apksig:7.2.1") implementation("com.github.revanced:jadb:master-SNAPSHOT") // updated fork implementation("org.bouncycastle:bcpkix-jdk15on:1.70") - implementation("org.jetbrains.kotlin:kotlin-reflect:1.7.0") } tasks { @@ -50,4 +49,4 @@ tasks { attributes("Implementation-Version" to project.version) } } -} \ No newline at end of file +}