-
Notifications
You must be signed in to change notification settings - Fork 683
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new module to generate Bill of Materials (#947)
* Add new module to generate Bill of Material * Remove gitignore from module * Update docs/getting_started.md with suggestion Co-authored-by: Colin White <colin@colinwhite.me> Co-authored-by: Colin White <colin@colinwhite.me>
- Loading branch information
1 parent
1a2af73
commit 8d4c3cc
Showing
4 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import coil.setupLibraryModule | ||
|
||
plugins { | ||
id("com.android.library") | ||
id("kotlin-android") | ||
id("com.vanniktech.maven.publish") | ||
} | ||
|
||
setupLibraryModule() | ||
|
||
dependencies { | ||
constraints { | ||
api(project(":coil-singleton")) | ||
api(project(":coil-base")) | ||
api(project(":coil-compose-singleton")) | ||
api(project(":coil-compose-base")) | ||
api(project(":coil-gif")) | ||
api(project(":coil-video")) | ||
api(project(":coil-svg")) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<manifest package="coil.bom"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ include( | |
"coil-gif", | ||
"coil-svg", | ||
"coil-video", | ||
"coil-bom", | ||
) | ||
|
||
// Private modules | ||
|