Skip to content

Commit 31625bd

Browse files
authored
Enable importing Bill of Materials from local Maven. (#468)
This change allows the smoke tests to pull Bill of Materials files from the local Maven repository used by the main Firebase project.
1 parent 9695c3f commit 31625bd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

smoke-tests/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ android {
7474
repositories {
7575
google()
7676
jcenter()
77+
78+
// This is necessary for Bill of Materials injection. This repository is created by running the
79+
// `publishAllToBuildDir` task on the main firebase-android-sdk project.
80+
maven {
81+
url "../build/m2repository/"
82+
}
7783
}
7884

7985
apply from: "configure.gradle"

0 commit comments

Comments
 (0)