[
https://issues.apache.org/jira/browse/OAK-11224?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Julian Reschke updated OAK-11224:
---------------------------------
Description:
{code:java}
for i in *; do [ -d $i ] && (cnt=$(grep -R ".*import.*guava.*" $i | wc -l);
echo $cnt $i); done | sort -n | grep "^0 .*" | while read a b ; do fgrep -q
shaded-guava $b/pom.xml && (echo ; echo $b; echo; fgrep -C5 shaded-guava
$b/pom.xml); done
{code}
was:
{code}
for i in *; do [ -d $i ] && (cnt=$(grep -R ".*import.*guava.*" $i | wc -l);
echo $cnt $i); done | sort -n | fgrep "0 " | while read a b ; do fgrep -q
shaded-guava $b/pom.xml && (echo ; echo $b; echo; fgrep -C5 shaded-guava
$b/pom.xml); done
{code}
> remove guava dependencies from POMs (ongoing)
> ---------------------------------------------
>
> Key: OAK-11224
> URL: https://issues.apache.org/jira/browse/OAK-11224
> Project: Jackrabbit Oak
> Issue Type: Technical task
> Reporter: Julian Reschke
> Assignee: Julian Reschke
> Priority: Minor
>
> {code:java}
> for i in *; do [ -d $i ] && (cnt=$(grep -R ".*import.*guava.*" $i | wc -l);
> echo $cnt $i); done | sort -n | grep "^0 .*" | while read a b ; do fgrep -q
> shaded-guava $b/pom.xml && (echo ; echo $b; echo; fgrep -C5 shaded-guava
> $b/pom.xml); done
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)