androidLib/build.gradle.kts

47 lines
1.1 KiB
Plaintext

import org.gradle.accessors.dm.LibrariesForLibs
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//task(clean("Delete")) {
// delete(rootProject.buildDir)
//}
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
google()
maven {
url = uri("https://mvn.lemiesz.org/releases/")
}
maven {
url = uri("https://androidx.dev/storage/compose-compiler/repository/")
}
}
/*
*/
dependencies {
classpath(libs.gradle)
classpath(libs.kotlin.gradle.plugin)
classpath(libs.dokka.gradle.plugin)
//classpath Dep.Serialization.plugin
}
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri("https://mvn.lemiesz.org/releases/")
}
maven {
url = uri("https://androidx.dev/storage/compose-compiler/repository/")
}
}
layout.buildDirectory = file("/home/ali0/Projekty/.cache/abuild/${rootProject.name}/${project.name}")
}