Browse Source

Remove mavenLocal from templates, keep in examples (#719)

pull/735/merge
Igor Demin 4 years ago committed by GitHub
parent
commit
e6dfc33f3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      examples/codeviewer/build.gradle.kts
  2. 1
      examples/imageviewer/build.gradle.kts
  3. 1
      examples/issues/build.gradle.kts
  4. 1
      examples/todoapp/buildSrc/build.gradle.kts
  5. 1
      examples/widgetsgallery/build.gradle.kts
  6. 2
      templates/desktop-template/settings.gradle.kts
  7. 2
      templates/multiplatform-template/build.gradle.kts

1
examples/codeviewer/build.gradle.kts

@ -1,6 +1,5 @@
buildscript {
repositories {
// TODO: remove after new build is published
mavenLocal()
google()
mavenCentral()

1
examples/imageviewer/build.gradle.kts

@ -1,6 +1,5 @@
buildscript {
repositories {
// TODO: remove after new build is published
mavenLocal().mavenContent {
includeModule("org.jetbrains.compose", "compose-gradle-plugin")
}

1
examples/issues/build.gradle.kts

@ -1,6 +1,5 @@
buildscript {
repositories {
// TODO: remove after new build is published
mavenLocal()
google()
mavenCentral()

1
examples/todoapp/buildSrc/build.gradle.kts

@ -3,7 +3,6 @@ plugins {
}
repositories {
// TODO: remove after new build is published
mavenLocal()
google()
mavenCentral()

1
examples/widgetsgallery/build.gradle.kts

@ -1,6 +1,5 @@
buildscript {
repositories {
// TODO: remove after new build is published
mavenLocal()
google()
mavenCentral()

2
templates/desktop-template/settings.gradle.kts

@ -1,7 +1,5 @@
pluginManagement {
repositories {
// TODO: remove after new build is published
mavenLocal()
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}

2
templates/multiplatform-template/build.gradle.kts

@ -3,8 +3,6 @@ buildscript {
val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.4.0"
repositories {
// TODO: remove after new build is published
mavenLocal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")

Loading…
Cancel
Save