Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Feb 6, 2020
1 parent 393ac42 commit c478120
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
subprojects {
repositories {
google()
mavenCentral()
jcenter()
}
repositories {
google()
mavenCentral()
jcenter()
}
}
34 changes: 17 additions & 17 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
rootProject.name = "swagger-gradle-codegen"

pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
jcenter()
google()
}
resolutionStrategy {
eachPlugin {
if ("com.android" in requested.id.id) {
useModule("com.android.tools.build:gradle:${requested.version}")
}
repositories {
gradlePluginPortal()
mavenCentral()
jcenter()
google()
}
resolutionStrategy {
eachPlugin {
if ("com.android" in requested.id.id) {
useModule("com.android.tools.build:gradle:${requested.version}")
}
}
}
}
}

include(
":samples:junit-tests",
":samples:kotlin-android",
":samples:kotlin-android-moshi-codegen",
":samples:kotlin-coroutines",
":samples:groovy-android")
":samples:junit-tests",
":samples:kotlin-android",
":samples:kotlin-android-moshi-codegen",
":samples:kotlin-coroutines",
":samples:groovy-android")

includeBuild("plugin-root")

0 comments on commit c478120

Please sign in to comment.