You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
initscript {
|
|
|
|
repositories {
|
|
|
|
maven { url "https://plugins.gradle.org/m2" }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.5"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject {
|
|
|
|
apply plugin: com.dorongold.gradle.tasktree.TaskTreePlugin
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
settingsEvaluated { settings ->
|
|
|
|
settings.pluginManagement {
|
|
|
|
repositories.clear()
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
maven {
|
|
|
|
url("https://packages.jetbrains.team/maven/p/ui/dev")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
|
|
|
pluginManager.withPlugin("maven-publish") {
|
|
|
|
publishing {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name "internal"
|
|
|
|
url "https://maven.pkg.jetbrains.space/public/p/compose/dev"
|
|
|
|
credentials {
|
|
|
|
username = project.hasProperty("COMPOSE_REPO_USERNAME") ? "$COMPOSE_REPO_USERNAME" : ""
|
|
|
|
password = project.hasProperty("COMPOSE_REPO_KEY") ? "$COMPOSE_REPO_KEY" : ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
maven {
|
|
|
|
url("https://packages.jetbrains.team/maven/p/ui/dev")
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url("https://dl.bintray.com/kotlin/kotlin-dev")
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven {
|
|
|
|
url("https://packages.jetbrains.team/maven/p/ui/dev")
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url("https://dl.bintray.com/kotlin/kotlin-dev")
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|