Skip to content

Commit

Permalink
🔖 0.15.6, fix importing settings kts files
Browse files Browse the repository at this point in the history
  • Loading branch information
calvertdw committed Feb 20, 2019
1 parent c53d461 commit 1ec575c
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "us.ihmc"
version = "0.15.5"
version = "0.15.6"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
3 changes: 2 additions & 1 deletion src/main/kotlin/us/ihmc/build/IHMCCompositeBuildAssembler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ class IHMCCompositeBuildAssembler(val configurator: IHMCSettingsConfigurator)
&& (subdirectory.fileName != null && subdirectory.fileName.toString() != "out")
&& (Files.exists(subdirectory.resolve("build.gradle")) || Files.exists(subdirectory.resolve("build.gradle.kts")))
&& Files.exists(subdirectory.resolve("gradle.properties"))
&& Files.exists(subdirectory.resolve("settings.gradle")))
&& (Files.exists(subdirectory.resolve("settings.gradle")) || Files.exists(subdirectory.resolve("settings.gradle.kts")))
)
}

private fun matchNames(buildFolderNameToCheck: String, dependencyNameAsDeclared: String): Boolean
Expand Down
2 changes: 1 addition & 1 deletion tests/basicProject/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}
apply plugin: "us.ihmc.ihmc-build"
Expand Down
2 changes: 1 addition & 1 deletion tests/basicProject/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/dependsOnSnapshot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
classpath "us.ihmc:ihmc-ci-plugin:0.18.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/dependsOnSnapshot/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/emptyBuildGradleProject/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/generateTestSuitesTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
classpath "us.ihmc:ihmc-ci-plugin:0.18.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/generateTestSuitesTest/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/multi-project-inconsistent-excludes/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/multi-project/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/multi-project/sub-project-one/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/multi-project/sub-project-two/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/oldPublishApiTest/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/publishApiTest/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "us.ihmc:ihmc-build:0.15.5"
classpath "us.ihmc:ihmc-build:0.15.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/resource-loading/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath("us.ihmc:ihmc-build:0.15.5")
classpath("us.ihmc:ihmc-build:0.15.6")
}
}

Expand Down

0 comments on commit 1ec575c

Please sign in to comment.