<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 20:55:22 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>OpenDaylight JIRA</title>
    <link>https://jira.opendaylight.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.20.10</version>
        <build-number>820010</build-number>
        <build-date>22-06-2022</build-date>
    </build-info>


<item>
            <title>[YANGTOOLS-1167] maven-plugin-it does not contribute to SonarCloud</title>
                <link>https://jira.opendaylight.org/browse/YANGTOOLS-1167</link>
                <project id="10188" key="YANGTOOLS">yangtools</project>
                    <description>&lt;p&gt;Looking at &lt;a href=&quot;https://sonarcloud.io/component_measures?id=opendaylight_yangtools&amp;amp;metric=new_lines_to_cover&amp;amp;selected=opendaylight_yangtools%3Aplugin%2Fyang-maven-plugin%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang2sources%2Fplugin%2FFileGeneratorTask.java&amp;amp;view=list&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://sonarcloud.io/component_measures?id=opendaylight_yangtools&amp;amp;metric=new_lines_to_cover&amp;amp;selected=opendaylight_yangtools%3Aplugin%2Fyang-maven-plugin%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang2sources%2Fplugin%2FFileGeneratorTask.java&amp;amp;view=list&lt;/a&gt; tells a story here. Most of the codepaths are covered by it tests, but they do not contribute here for some reason.&lt;/p&gt;

&lt;p&gt;&#160;Investigate why sonar is ignoring these and fix the configuration/wiring accordingly.&lt;/p&gt;</description>
                <environment></environment>
        <key id="33499">YANGTOOLS-1167</key>
            <summary>maven-plugin-it does not contribute to SonarCloud</summary>
                <type id="10104" iconUrl="https://jira.opendaylight.org/secure/viewavatar?size=xsmall&amp;avatarId=10303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.opendaylight.org/images/icons/priorities/major.svg">Medium</priority>
                        <status id="5" iconUrl="https://jira.opendaylight.org/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="rovarga">Robert Varga</assignee>
                                    <reporter username="rovarga">Robert Varga</reporter>
                        <labels>
                            <label>pt</label>
                    </labels>
                <created>Mon, 2 Nov 2020 18:06:58 +0000</created>
                <updated>Mon, 18 Oct 2021 21:58:44 +0000</updated>
                            <resolved>Mon, 18 Oct 2021 21:48:02 +0000</resolved>
                                                    <fixVersion>8.0.0</fixVersion>
                                    <component>maven plugin</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                                                                <comments>
                            <comment id="69718" author="rovarga" created="Sun, 17 Oct 2021 19:34:04 +0000"  >&lt;p&gt;So ... Sonar is not ignoring anything, the trouble here is the same as &apos;Why SFT tests do not contribute&quot;: the tests are being run from a fork the surefire/failsafe JVM.&lt;br/&gt;
What happens is :&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;maven starts and executes failsafe with the correct options, which&lt;/li&gt;
	&lt;li&gt;runs YangToSourcesPluginTestIT, which&lt;/li&gt;
	&lt;li&gt;uses maven-verifier to execute tests, which&lt;/li&gt;
	&lt;li&gt;forks a new process&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;Which means the JVM actually executing the tests does not have the correct JaCoCo options (communicated via failsafe-plugin&apos;s argLine property). Worse yet, even if it did, the failsafe JVM exits after all tests, overwriting jacoco.exec, leading to a useless report (i.e. it has only YangToSourcesPluginTestIT coverage).&lt;/p&gt;

&lt;p&gt;To fix this, we need to do two things:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;get a proper .exec file&lt;/li&gt;
	&lt;li&gt;make sure jacoco plugin generates full execution report&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;For the first part the cleanest we can go is an embedded maven (i.e. Verifier.setForkJvm(false)), but that seems to be rather untested and seems to be non-trivial. Alternative is to communicate argLine to each invoked maven thing &amp;#8211; except they will end up overwriting &amp;#8211; for which we&apos;ll need to do some fudging to replace the .exec file name. Then we&apos;ll need to either merge into a single .exec post-exection, or tickle jacoco plugin to create an aggregate report.&lt;/p&gt;

&lt;p&gt;For the second part we will probably need the aggregate report, as we do not want to include all classes, not just those local to maven plugin IT.&lt;/p&gt;

&lt;p&gt;A bit more investigation is necessary, as embedded maven might end up being easy...&lt;/p&gt;</comment>
                            <comment id="69719" author="rovarga" created="Sun, 17 Oct 2021 19:48:33 +0000"  >&lt;p&gt;Unfortunately I am getting this:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;[main] DEBUG org.codehaus.plexus.PlexusContainer - Created new class realm maven.api
[main] DEBUG org.codehaus.plexus.PlexusContainer - Importing foreign packages into class realm maven.api
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: javax.annotation.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: javax.annotation.security.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: javax.enterprise.inject.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: javax.enterprise.util.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: javax.inject.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.artifact &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.classrealm &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.cli &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.configuration &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.exception &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.execution &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.execution.scope &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.lifecycle &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.model &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.monitor &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.plugin &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.profiles &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.project &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.reporting &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.repository &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.rtinfo &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.settings &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.toolchain &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.usability &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.authentication &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.authorization &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.events &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.observers &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.proxy &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.repository &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.apache.maven.wagon.resource &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.classworlds &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.classworlds &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.component &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.configuration &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.container &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.context &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.lifecycle &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.logging &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.personality &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.util.xml.Xpp3Dom &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.artifact &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.collection &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.deployment &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.graph &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.impl &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.installation &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.internal.impl &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.metadata &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.repository &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.resolution &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.spi &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.transfer &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.eclipse.aether.version &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.fusesource.jansi.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.slf4j.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.slf4j.event.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.slf4j.helpers.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer -   Imported: org.slf4j.spi.* &amp;lt; plexus.core
[main] DEBUG org.codehaus.plexus.PlexusContainer - Populating class realm maven.api
[main] WARN Sisu - Error injecting: org.apache.maven.project.DefaultProjectBuildingHelper
com.google.inject.ProvisionException: Unable to provision, see the following errors:

1) No implementation for org.apache.maven.repository.RepositorySystem was bound.
  while locating org.apache.maven.project.DefaultProjectBuildingHelper
(...)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="69720" author="rovarga" created="Sun, 17 Oct 2021 19:49:50 +0000"  >&lt;p&gt;For comparison, normal maven does this (with mvn -X):&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG]   Imported: javax.annotation.* &amp;lt; plexus.core
[DEBUG]   Imported: javax.annotation.security.* &amp;lt; plexus.core
[DEBUG]   Imported: javax.enterprise.inject.* &amp;lt; plexus.core
[DEBUG]   Imported: javax.enterprise.util.* &amp;lt; plexus.core
[DEBUG]   Imported: javax.inject.* &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.* &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.artifact &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.classrealm &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.cli &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.configuration &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.exception &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.execution &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.execution.scope &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.lifecycle &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.model &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.monitor &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.plugin &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.profiles &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.project &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.reporting &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.repository &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.rtinfo &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.settings &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.toolchain &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.usability &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.* &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authentication &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authorization &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.events &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.observers &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.proxy &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.repository &amp;lt; plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.resource &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.classworlds &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.* &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.classworlds &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.component &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.configuration &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.container &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.context &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.lifecycle &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.logging &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.personality &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException &amp;lt; plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.* &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.artifact &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.collection &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.deployment &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.graph &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.impl &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.installation &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.internal.impl &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.metadata &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.repository &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.resolution &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.spi &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.transfer &amp;lt; plexus.core
[DEBUG]   Imported: org.eclipse.aether.version &amp;lt; plexus.core
[DEBUG]   Imported: org.fusesource.jansi.* &amp;lt; plexus.core
[DEBUG]   Imported: org.slf4j.* &amp;lt; plexus.core
[DEBUG]   Imported: org.slf4j.event.* &amp;lt; plexus.core
[DEBUG]   Imported: org.slf4j.helpers.* &amp;lt; plexus.core
[DEBUG]   Imported: org.slf4j.spi.* &amp;lt; plexus.core
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="69721" author="rovarga" created="Sun, 17 Oct 2021 19:51:57 +0000"  >&lt;p&gt;I guess my dependencies are incomplete, but that needs further investigation.&lt;/p&gt;</comment>
                            <comment id="69725" author="rovarga" created="Mon, 18 Oct 2021 21:48:02 +0000"  >&lt;p&gt;Before:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;Coverage               74.7%
Lines to Cover       31,144
Uncovered Lines       7,223
Line Coverage          76.8%
Conditions to Cover  10,443
Uncovered Conditions  3,308
Condition Coverage     68.3%
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;After:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;Coverage               75.1%
Lines to Cover       31,144
Uncovered Lines       7,073
Line Coverage          77.3%
Conditions to Cover  10,443
Uncovered Conditions  3,262
Condition Coverage     68.8%&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;i.e. +0.5% lines, +0.5% conditions, +0.4% overall.&lt;/p&gt;

&lt;p&gt;FileGeneratorTask is now reported as:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;Coverage              85.5%
Lines to Cover          87
Uncovered Lines          9
Line Coverage         89.7%
Conditions to Cover     23
Uncovered Conditions     7
Condition Coverage    69.6%&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="69726" author="rovarga" created="Mon, 18 Oct 2021 21:54:16 +0000"  >&lt;p&gt;In the end this is implemented through partial .exec files, which are then merged into a single jacoco.exec file. We then analyze yang-maven-plugin&apos;s and its dependencies.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10003">
                    <name>Relates</name>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="34668">ODLPARENT-274</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_11400" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10000" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i03vu7:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>