Re: Best source for Managed Projects list?


Daniel Farrell
 

As discussed on the Integration call, I wrote docs for this:


Let me know what you think.

Daniel

On Tue, Oct 16, 2018 at 3:16 PM Jamo Luhrsen <jluhrsen@...> wrote:
I know it's boring, but I always point people to the autorelease job
and it's dependencies.log file:

https://logs.opendaylight.org/releng/vex-yul-odl-jenkins-1/autorelease-release-fluorine/243/dependencies.log.gz

that's autogenerated from that pom.xml, iirc.

My thinking is that it's better to let the answer to this question
be as automatic and truthful as possible. If we are going to add
this to official docs (which seems right, btw) it would be nice to
get that autogenerated as well, so we don't forget to manually
update the docs when things change in the future.

If you want a little more splash and some parsing, you can paste this
in to your terminal :)


wget -q -O tmp.html https://logs.opendaylight.org/releng/vex-yul-odl-jenkins-1/autorelease-release-fluorine/
BUILD_NUM=`cat
tmp.html | grep "a href" | tail -1 | cut -d'>' -f7 | cut -d'/' -f1`
wget -q
https://logs.opendaylight.org/releng/vex-yul-odl-jenkins-1/autorelease-release-fluorine/$BUILD_NUM/dependencies.log.gz
gunzip -f dependencies.log.gz
cat dependencies.log | awk -F: '{print $1}' > projects.log
i=1
for p in $(cat projects.log); do echo "$(tput setaf $i)$p"; i=$((i+1)) ; done


Thanks,
JamO



On 10/16/18 7:24 AM, Daniel Farrell wrote:
> Hello,
>
> I'm under the impression that this POM file is the authoritative source for which projects are technically in in the MR
> distro.
>
> https://git.opendaylight.org/gerrit/gitweb?p=integration/distribution.git;a=blob;f=features/repos/index/pom.xml
>
> But I see at least two MR projects that are missing:
>
> <!-- FIXME: Add Yangtools -->
> <!-- FIXME: Add Mdsal -->
>
> What's our recommendation for finding which projects are technically in the MR distro? Once that's clear I can help
> create some human-readable docs we can direct people to for this (likely going to be very common) question.
>
> Thanks,
> Daniel
>
> _______________________________________________
> integration-dev mailing list
> integration-dev@...
> https://lists.opendaylight.org/mailman/listinfo/integration-dev
>

Join integration-dev@lists.opendaylight.org to automatically receive all group messages.