mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 21:20:50 +00:00
b8f1b92298
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/44879 This sets up publishing of Gradle scans for every build on GHA. Changelog: [Internal] [Changed] - Setup publishing of Gradle Scans on GHA Reviewed By: blakef Differential Revision: D58419361 fbshipit-source-id: f54365ad259324747248ef0bb726dc64964507f8
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
includeBuild("packages/react-native-gradle-plugin/")
|
|
}
|
|
|
|
include(
|
|
":packages:react-native:ReactAndroid",
|
|
":packages:react-native:ReactAndroid:hermes-engine",
|
|
":packages:react-native:ReactAndroid:external-artifacts",
|
|
":packages:rn-tester:android:app")
|
|
|
|
includeBuild("packages/react-native-gradle-plugin/")
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
create("libs") { from(files("packages/react-native/gradle/libs.versions.toml")) }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "react-native-github"
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention").version("0.5.0")
|
|
id("com.facebook.react.settings")
|
|
}
|
|
|
|
configure<com.facebook.react.ReactSettingsExtension> {
|
|
autolinkLibrariesFromCommand(
|
|
workingDirectory = file("packages/rn-tester/"), lockFiles = files("yarn.lock"))
|
|
}
|