diff --git a/build.gradle b/build.gradle index b7ea50b..15f3edd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,22 +1,14 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. - -buildscript { - ext.enable_asan = false - - repositories { - google() - mavenCentral() - maven { url "https://plugins.gradle.org/m2/" } - maven { url 'https://maven.pkg.jetbrains.space/public/p/compose/dev' } - } - dependencies { - classpath (libs.tools.build.gradle) - classpath (libs.kotlin.gradle.plugin) - classpath (libs.dokka.gradle.plugin) - } +plugins { + alias(libs.plugins.android.application) apply false + alias(libs.plugins.android.library) apply false + alias(libs.plugins.kotlin.android) apply false + alias(libs.plugins.compose.compiler) apply false + alias(libs.plugins.dokka) apply false + id ("maven-publish") } -allprojects { +subprojects { + ext.enable_asan = false repositories { google() mavenLocal() diff --git a/external/aap-lv2 b/external/aap-lv2 index 733487b..1f05962 160000 --- a/external/aap-lv2 +++ b/external/aap-lv2 @@ -1 +1 @@ -Subproject commit 733487b460ff4a3dced4c96f2838a9f637fcc0b9 +Subproject commit 1f059621557b51c74e662528851f7a855345c513 diff --git a/settings.gradle b/settings.gradle index 6527cbc..2001bb7 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,3 +1,19 @@ +pluginManagement { + repositories { + google() + gradlePluginPortal() + mavenCentral() + } +} +dependencyResolutionManagement { + repositories { + mavenLocal() + google() + mavenCentral() + maven { url = uri("https://jitpack.io") } // required for compose-markdown... + } +} + rootProject.name = "aap-lv2-mda" include ":app"