Skip to content

Commit

Permalink
Refine command for listing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor authored Aug 4, 2021
1 parent 5d67695 commit 2142ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ License: Apache-2.0
1. `gradlew dependencies > build\dependencies.txt`
2. Manually edit depedencies.txt to contain the tree of "compileClasspath" and "implementation" only. Otherwise, libraries such as "Apache Commons Lang 3" are missed.
3. (on WSL) `sed 's/[^a-z]*//' < build/dependencies.txt | sort | uniq > build/dependencies-for-external-libraries.txt`
3. (on WSL) `sed 's/[^a-z]*//' < build/dependencies.txt | sed "s/\(.*\) .*/\1/" | grep -v "\->" | sort | uniq > build/dependencies-for-external-libraries.txt`

```text
com.fasterxml.jackson.core:jackson-annotations:2.12.3
Expand Down

0 comments on commit 2142ade

Please sign in to comment.