mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Entire pr generated with [ktlint](https://github.com/pinterest/ktlint) --format. First step before enabling linting as part of presubmit for kotlin changes.
35 lines
919 B
Plaintext
35 lines
919 B
Plaintext
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Contents of this file should be generated automatically by
|
|
// dev/tools/bin/generate_gradle_lockfiles.dart, but currently are not.
|
|
// See #141540.
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = file("../build")
|
|
|
|
subprojects {
|
|
project.buildDir = file("${rootProject.buildDir}/${project.name}")
|
|
}
|
|
subprojects {
|
|
project.evaluationDependsOn(":app")
|
|
dependencyLocking {
|
|
ignoredDependencies.add("io.flutter:*")
|
|
lockFile = file("${rootProject.projectDir}/project-${project.name}.lockfile")
|
|
if (!project.hasProperty("local-engine-repo")) {
|
|
lockAllConfigurations()
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|