Skip to content

Commit

Permalink
Build: Rename custom-dependencies -> dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
4u7 committed Mar 20, 2019
1 parent 07b0129 commit f890cab
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/tasks.kt
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private fun Task.useAndroidConfiguration(systemPropertyName: String, configName:
.also {
dependencies.add(
configName,
dependencies.project(":custom-dependencies:android-sdk", configuration = configName)
dependencies.project(":dependencies:android-sdk", configuration = configName)
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ class CodeConformanceTest : TestCase() {
"compiler/testData/psi/kdoc",
"compiler/tests/org/jetbrains/kotlin/code/CodeConformanceTest.kt",
"compiler/util/src/org/jetbrains/kotlin/config/MavenComparableVersion.java",
"custom-dependencies/protobuf/protobuf-relocated/build"
"dependencies/protobuf/protobuf-relocated/build"
).map(::File)

private val COPYRIGHT_EXCLUDED_FILES_AND_DIRS = listOf(
"dependencies",
"out",
"dist",
"custom-dependencies/android-sdk/build",
"custom-dependencies/protobuf/protobuf-relocated/build",
"dependencies/android-sdk/build",
"dependencies/protobuf/protobuf-relocated/build",
"compiler/tests/org/jetbrains/kotlin/code/CodeConformanceTest.kt",
"idea/idea-jvm/src/org/jetbrains/kotlin/idea/copyright",
"js/js.tests/.gradle",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ include ":kotlin-build-common",
":core:metadata.jvm",
":core:builtins",
":core:util.runtime",
":custom-dependencies:android-sdk",
":dependencies:android-sdk",
":idea:fir-view",
":idea:idea-jvm",
":idea:idea-maven",
Expand Down Expand Up @@ -354,4 +354,4 @@ project(':kotlin-serialization').projectDir = file("$rootDir/libraries/tools/kot
project(':kotlin-serialization-unshaded').projectDir = file("$rootDir/libraries/tools/kotlin-serialization-unshaded")

// Uncomment to use locally built protobuf-relocated
// includeBuild("custom-dependencies/protobuf")
// includeBuild("dependencies/protobuf")

0 comments on commit f890cab

Please sign in to comment.