Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/CiManagementReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/CiManagementReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/CiManagementReportTest.html Sun Apr 25 19:37:50 2021 @@ -34,55 +34,88 @@ <a class="jxr_linenumber" name="L26" href="#L26">26</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebConversation; <a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebRequest; <a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebResponse; -<a class="jxr_linenumber" name="L29" href="#L29">29</a> -<a class="jxr_linenumber" name="L30" href="#L30">30</a> <em class="jxr_javadoccomment">/**</em> -<a class="jxr_linenumber" name="L31" href="#L31">31</a> <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em> -<a class="jxr_linenumber" name="L32" href="#L32">32</a> <em class="jxr_javadoccomment"> * @author <a href="<a href="mailto:[email protected]" target="alexandria_uri">mailto:[email protected]</a>">Vincent Siveton</a></em> -<a class="jxr_linenumber" name="L33" href="#L33">33</a> <em class="jxr_javadoccomment"> * @version $Id$</em> -<a class="jxr_linenumber" name="L34" href="#L34">34</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L35" href="#L35">35</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/maven/report/projectinfo/CiManagementReportTest.html">CiManagementReportTest</a> -<a class="jxr_linenumber" name="L36" href="#L36">36</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.html">AbstractProjectInfoTestCase</a> -<a class="jxr_linenumber" name="L37" href="#L37">37</a> { -<a class="jxr_linenumber" name="L38" href="#L38">38</a> <em class="jxr_javadoccomment">/**</em> -<a class="jxr_linenumber" name="L39" href="#L39">39</a> <em class="jxr_javadoccomment"> * WebConversation object</em> -<a class="jxr_linenumber" name="L40" href="#L40">40</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L41" href="#L41">41</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> WebConversation WEB_CONVERSATION = <strong class="jxr_keyword">new</strong> WebConversation(); -<a class="jxr_linenumber" name="L42" href="#L42">42</a> -<a class="jxr_linenumber" name="L43" href="#L43">43</a> <em class="jxr_javadoccomment">/**</em> -<a class="jxr_linenumber" name="L44" href="#L44">44</a> <em class="jxr_javadoccomment"> * Test report</em> -<a class="jxr_linenumber" name="L45" href="#L45">45</a> <em class="jxr_javadoccomment"> *</em> -<a class="jxr_linenumber" name="L46" href="#L46">46</a> <em class="jxr_javadoccomment"> * @throws Exception if any</em> -<a class="jxr_linenumber" name="L47" href="#L47">47</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L48" href="#L48">48</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReport() -<a class="jxr_linenumber" name="L49" href="#L49">49</a> <strong class="jxr_keyword">throws</strong> Exception -<a class="jxr_linenumber" name="L50" href="#L50">50</a> { -<a class="jxr_linenumber" name="L51" href="#L51">51</a> generateReport( <span class="jxr_string">"ci-management"</span>, <span class="jxr_string">"ci-management-plugin-config.xml"</span> ); -<a class="jxr_linenumber" name="L52" href="#L52">52</a> assertTrue( <span class="jxr_string">"Test html generated"</span>, getGeneratedReport( <span class="jxr_string">"ci-management.html"</span> ).exists() ); -<a class="jxr_linenumber" name="L53" href="#L53">53</a> -<a class="jxr_linenumber" name="L54" href="#L54">54</a> URL reportURL = getGeneratedReport( <span class="jxr_string">"ci-management.html"</span> ).toURI().toURL(); -<a class="jxr_linenumber" name="L55" href="#L55">55</a> assertNotNull( reportURL ); -<a class="jxr_linenumber" name="L56" href="#L56">56</a> -<a class="jxr_linenumber" name="L57" href="#L57">57</a> <em class="jxr_comment">// HTTPUnit</em> -<a class="jxr_linenumber" name="L58" href="#L58">58</a> WebRequest request = <strong class="jxr_keyword">new</strong> GetMethodWebRequest( reportURL.toString() ); -<a class="jxr_linenumber" name="L59" href="#L59">59</a> WebResponse response = WEB_CONVERSATION.getResponse( request ); -<a class="jxr_linenumber" name="L60" href="#L60">60</a> -<a class="jxr_linenumber" name="L61" href="#L61">61</a> <em class="jxr_comment">// Basic HTML tests</em> -<a class="jxr_linenumber" name="L62" href="#L62">62</a> assertTrue( response.isHTML() ); -<a class="jxr_linenumber" name="L63" href="#L63">63</a> assertTrue( response.getContentLength() > 0 ); -<a class="jxr_linenumber" name="L64" href="#L64">64</a> -<a class="jxr_linenumber" name="L65" href="#L65">65</a> <em class="jxr_comment">// Test the Page title</em> -<a class="jxr_linenumber" name="L66" href="#L66">66</a> String expectedTitle = prepareTitle( getString( <span class="jxr_string">"report.ci-management.name"</span> ), -<a class="jxr_linenumber" name="L67" href="#L67">67</a> getString( <span class="jxr_string">"report.ci-management.title"</span> ) ); -<a class="jxr_linenumber" name="L68" href="#L68">68</a> assertEquals( expectedTitle, response.getTitle() ); -<a class="jxr_linenumber" name="L69" href="#L69">69</a> -<a class="jxr_linenumber" name="L70" href="#L70">70</a> <em class="jxr_comment">// Test the texts</em> -<a class="jxr_linenumber" name="L71" href="#L71">71</a> TextBlock[] textBlocks = response.getTextBlocks(); -<a class="jxr_linenumber" name="L72" href="#L72">72</a> assertEquals( getString( <span class="jxr_string">"report.ci-management.name"</span> ), textBlocks[0].getText() ); -<a class="jxr_linenumber" name="L73" href="#L73">73</a> assertEquals( getString( <span class="jxr_string">"report.ci-management.nocim"</span> ), textBlocks[1].getText() ); -<a class="jxr_linenumber" name="L74" href="#L74">74</a> } -<a class="jxr_linenumber" name="L75" href="#L75">75</a> } +<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">import</strong> org.w3c.dom.html.HTMLAnchorElement; +<a class="jxr_linenumber" name="L30" href="#L30">30</a> +<a class="jxr_linenumber" name="L31" href="#L31">31</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L32" href="#L32">32</a> <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em> +<a class="jxr_linenumber" name="L33" href="#L33">33</a> <em class="jxr_javadoccomment"> * @author <a href="<a href="mailto:[email protected]" target="alexandria_uri">mailto:[email protected]</a>">Vincent Siveton</a></em> +<a class="jxr_linenumber" name="L34" href="#L34">34</a> <em class="jxr_javadoccomment"> * @version $Id$</em> +<a class="jxr_linenumber" name="L35" href="#L35">35</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L36" href="#L36">36</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/maven/report/projectinfo/CiManagementReportTest.html">CiManagementReportTest</a> +<a class="jxr_linenumber" name="L37" href="#L37">37</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.html">AbstractProjectInfoTestCase</a> +<a class="jxr_linenumber" name="L38" href="#L38">38</a> { +<a class="jxr_linenumber" name="L39" href="#L39">39</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L40" href="#L40">40</a> <em class="jxr_javadoccomment"> * WebConversation object</em> +<a class="jxr_linenumber" name="L41" href="#L41">41</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L42" href="#L42">42</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> WebConversation WEB_CONVERSATION = <strong class="jxr_keyword">new</strong> WebConversation(); +<a class="jxr_linenumber" name="L43" href="#L43">43</a> +<a class="jxr_linenumber" name="L44" href="#L44">44</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L45" href="#L45">45</a> <em class="jxr_javadoccomment"> * Test report</em> +<a class="jxr_linenumber" name="L46" href="#L46">46</a> <em class="jxr_javadoccomment"> *</em> +<a class="jxr_linenumber" name="L47" href="#L47">47</a> <em class="jxr_javadoccomment"> * @throws Exception if any</em> +<a class="jxr_linenumber" name="L48" href="#L48">48</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L49" href="#L49">49</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReport() +<a class="jxr_linenumber" name="L50" href="#L50">50</a> <strong class="jxr_keyword">throws</strong> Exception +<a class="jxr_linenumber" name="L51" href="#L51">51</a> { +<a class="jxr_linenumber" name="L52" href="#L52">52</a> generateReport( <span class="jxr_string">"ci-management"</span>, <span class="jxr_string">"ci-management-plugin-config.xml"</span> ); +<a class="jxr_linenumber" name="L53" href="#L53">53</a> assertTrue( <span class="jxr_string">"Test html generated"</span>, getGeneratedReport( <span class="jxr_string">"ci-management.html"</span> ).exists() ); +<a class="jxr_linenumber" name="L54" href="#L54">54</a> +<a class="jxr_linenumber" name="L55" href="#L55">55</a> URL reportURL = getGeneratedReport( <span class="jxr_string">"ci-management.html"</span> ).toURI().toURL(); +<a class="jxr_linenumber" name="L56" href="#L56">56</a> assertNotNull( reportURL ); +<a class="jxr_linenumber" name="L57" href="#L57">57</a> +<a class="jxr_linenumber" name="L58" href="#L58">58</a> <em class="jxr_comment">// HTTPUnit</em> +<a class="jxr_linenumber" name="L59" href="#L59">59</a> WebRequest request = <strong class="jxr_keyword">new</strong> GetMethodWebRequest( reportURL.toString() ); +<a class="jxr_linenumber" name="L60" href="#L60">60</a> WebResponse response = WEB_CONVERSATION.getResponse( request ); +<a class="jxr_linenumber" name="L61" href="#L61">61</a> +<a class="jxr_linenumber" name="L62" href="#L62">62</a> <em class="jxr_comment">// Basic HTML tests</em> +<a class="jxr_linenumber" name="L63" href="#L63">63</a> assertTrue( response.isHTML() ); +<a class="jxr_linenumber" name="L64" href="#L64">64</a> assertTrue( response.getContentLength() > 0 ); +<a class="jxr_linenumber" name="L65" href="#L65">65</a> +<a class="jxr_linenumber" name="L66" href="#L66">66</a> <em class="jxr_comment">// Test the Page title</em> +<a class="jxr_linenumber" name="L67" href="#L67">67</a> String expectedTitle = prepareTitle( getString( <span class="jxr_string">"report.ci-management.name"</span> ), +<a class="jxr_linenumber" name="L68" href="#L68">68</a> getString( <span class="jxr_string">"report.ci-management.title"</span> ) ); +<a class="jxr_linenumber" name="L69" href="#L69">69</a> assertEquals( expectedTitle, response.getTitle() ); +<a class="jxr_linenumber" name="L70" href="#L70">70</a> +<a class="jxr_linenumber" name="L71" href="#L71">71</a> <em class="jxr_comment">// Test the texts</em> +<a class="jxr_linenumber" name="L72" href="#L72">72</a> TextBlock[] textBlocks = response.getTextBlocks(); +<a class="jxr_linenumber" name="L73" href="#L73">73</a> assertEquals( getString( <span class="jxr_string">"report.ci-management.name"</span> ), textBlocks[0].getText() ); +<a class="jxr_linenumber" name="L74" href="#L74">74</a> assertEquals( getString( <span class="jxr_string">"report.ci-management.nocim"</span> ), textBlocks[1].getText() ); +<a class="jxr_linenumber" name="L75" href="#L75">75</a> } +<a class="jxr_linenumber" name="L76" href="#L76">76</a> +<a class="jxr_linenumber" name="L77" href="#L77">77</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L78" href="#L78">78</a> <em class="jxr_javadoccomment"> * When a ciManagement section is present, test that the correct name and link text are chosen</em> +<a class="jxr_linenumber" name="L79" href="#L79">79</a> <em class="jxr_javadoccomment"> * from the 'system' property.</em> +<a class="jxr_linenumber" name="L80" href="#L80">80</a> <em class="jxr_javadoccomment"> *</em> +<a class="jxr_linenumber" name="L81" href="#L81">81</a> <em class="jxr_javadoccomment"> * @throws Exception if any</em> +<a class="jxr_linenumber" name="L82" href="#L82">82</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L83" href="#L83">83</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testCiNameReport() +<a class="jxr_linenumber" name="L84" href="#L84">84</a> <strong class="jxr_keyword">throws</strong> Exception +<a class="jxr_linenumber" name="L85" href="#L85">85</a> { +<a class="jxr_linenumber" name="L86" href="#L86">86</a> generateReport( <span class="jxr_string">"ci-management"</span>, <span class="jxr_string">"ci-management-plugin-with-ci-section-config.xml"</span> ); +<a class="jxr_linenumber" name="L87" href="#L87">87</a> assertTrue( <span class="jxr_string">"Test html generated"</span>, getGeneratedReport( <span class="jxr_string">"ci-management.html"</span> ).exists() ); +<a class="jxr_linenumber" name="L88" href="#L88">88</a> +<a class="jxr_linenumber" name="L89" href="#L89">89</a> URL reportURL = getGeneratedReport( <span class="jxr_string">"ci-management.html"</span> ).toURI().toURL(); +<a class="jxr_linenumber" name="L90" href="#L90">90</a> assertNotNull( reportURL ); +<a class="jxr_linenumber" name="L91" href="#L91">91</a> +<a class="jxr_linenumber" name="L92" href="#L92">92</a> <em class="jxr_comment">// HTTPUnit</em> +<a class="jxr_linenumber" name="L93" href="#L93">93</a> WebRequest request = <strong class="jxr_keyword">new</strong> GetMethodWebRequest( reportURL.toString() ); +<a class="jxr_linenumber" name="L94" href="#L94">94</a> WebResponse response = WEB_CONVERSATION.getResponse( request ); +<a class="jxr_linenumber" name="L95" href="#L95">95</a> +<a class="jxr_linenumber" name="L96" href="#L96">96</a> <em class="jxr_comment">// Basic HTML tests</em> +<a class="jxr_linenumber" name="L97" href="#L97">97</a> assertTrue( response.isHTML() ); +<a class="jxr_linenumber" name="L98" href="#L98">98</a> assertTrue( response.getContentLength() > 0 ); +<a class="jxr_linenumber" name="L99" href="#L99">99</a> +<a class="jxr_linenumber" name="L100" href="#L100">100</a> <em class="jxr_comment">// Test the texts</em> +<a class="jxr_linenumber" name="L101" href="#L101">101</a> TextBlock[] textBlocks = response.getTextBlocks(); +<a class="jxr_linenumber" name="L102" href="#L102">102</a> assertTrue( textBlocks[1].getText().startsWith( <span class="jxr_string">"This project uses "</span> ) ); +<a class="jxr_linenumber" name="L103" href="#L103">103</a> assertEquals(3, textBlocks[1].getNode().getChildNodes().getLength()); +<a class="jxr_linenumber" name="L104" href="#L104">104</a> HTMLAnchorElement anchor = (HTMLAnchorElement) textBlocks[1].getNode().getChildNodes().item( 1 ); +<a class="jxr_linenumber" name="L105" href="#L105">105</a> assertEquals( <span class="jxr_string">"https://www.jetbrains.com/teamcity/"</span>, anchor.getAttribute( <span class="jxr_string">"href"</span> ) ); +<a class="jxr_linenumber" name="L106" href="#L106">106</a> assertEquals( <span class="jxr_string">"TeamCity"</span>, anchor.getFirstChild().getNodeValue() ); +<a class="jxr_linenumber" name="L107" href="#L107">107</a> } +<a class="jxr_linenumber" name="L108" href="#L108">108</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file
Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependenciesReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependenciesReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependenciesReportTest.html Sun Apr 25 19:37:50 2021 @@ -97,6 +97,6 @@ <a class="jxr_linenumber" name="L89" href="#L89">89</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependencyConvergenceReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependencyConvergenceReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependencyConvergenceReportTest.html Sun Apr 25 19:37:50 2021 @@ -82,6 +82,6 @@ <a class="jxr_linenumber" name="L74" href="#L74">74</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependencyManagementReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependencyManagementReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/DependencyManagementReportTest.html Sun Apr 25 19:37:50 2021 @@ -92,6 +92,6 @@ <a class="jxr_linenumber" name="L84" href="#L84">84</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/IndexReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/IndexReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/IndexReportTest.html Sun Apr 25 19:37:50 2021 @@ -85,6 +85,6 @@ <a class="jxr_linenumber" name="L77" href="#L77">77</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/IssueManagementReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/IssueManagementReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/IssueManagementReportTest.html Sun Apr 25 19:37:50 2021 @@ -93,6 +93,6 @@ <a class="jxr_linenumber" name="L85" href="#L85">85</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/LicensesReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/LicensesReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/LicensesReportTest.html Sun Apr 25 19:37:50 2021 @@ -122,12 +122,12 @@ <a class="jxr_linenumber" name="L114" href="#L114">114</a> <strong class="jxr_keyword">final</strong> WebLink[] links = response.getLinks(); <a class="jxr_linenumber" name="L115" href="#L115">115</a> assertEquals( 2, links.length ); <a class="jxr_linenumber" name="L116" href="#L116">116</a> assertEquals( <span class="jxr_string">"http://maven.apache.org/"</span>, links[0].getURLString() ); -<a class="jxr_linenumber" name="L117" href="#L117">117</a> assertEquals( <span class="jxr_string">"http://www.apache.org/licenses/LICENSE-2.0.txt"</span>, links[1].getURLString() ); -<a class="jxr_linenumber" name="L118" href="#L118">118</a> assertEquals( <span class="jxr_string">"http://www.apache.org/licenses/LICENSE-2.0.txt"</span>, links[1].getText() ); +<a class="jxr_linenumber" name="L117" href="#L117">117</a> assertEquals( <span class="jxr_string">"https://www.apache.org/licenses/LICENSE-2.0.txt"</span>, links[1].getURLString() ); +<a class="jxr_linenumber" name="L118" href="#L118">118</a> assertEquals( <span class="jxr_string">"https://www.apache.org/licenses/LICENSE-2.0.txt"</span>, links[1].getText() ); <a class="jxr_linenumber" name="L119" href="#L119">119</a> } <a class="jxr_linenumber" name="L120" href="#L120">120</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/MailingListsReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/MailingListsReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/MailingListsReportTest.html Sun Apr 25 19:37:50 2021 @@ -33,88 +33,95 @@ <a class="jxr_linenumber" name="L25" href="#L25">25</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.GetMethodWebRequest; <a class="jxr_linenumber" name="L26" href="#L26">26</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.TextBlock; <a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebConversation; -<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebRequest; -<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebResponse; -<a class="jxr_linenumber" name="L30" href="#L30">30</a> -<a class="jxr_linenumber" name="L31" href="#L31">31</a> <em class="jxr_javadoccomment">/**</em> -<a class="jxr_linenumber" name="L32" href="#L32">32</a> <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em> -<a class="jxr_linenumber" name="L33" href="#L33">33</a> <em class="jxr_javadoccomment"> * @author <a href="<a href="mailto:[email protected]" target="alexandria_uri">mailto:[email protected]</a>">Vincent Siveton</a></em> -<a class="jxr_linenumber" name="L34" href="#L34">34</a> <em class="jxr_javadoccomment"> * @version $Id$</em> -<a class="jxr_linenumber" name="L35" href="#L35">35</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L36" href="#L36">36</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/maven/report/projectinfo/MailingListsReportTest.html">MailingListsReportTest</a> -<a class="jxr_linenumber" name="L37" href="#L37">37</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.html">AbstractProjectInfoTestCase</a> -<a class="jxr_linenumber" name="L38" href="#L38">38</a> { -<a class="jxr_linenumber" name="L39" href="#L39">39</a> <em class="jxr_javadoccomment">/**</em> -<a class="jxr_linenumber" name="L40" href="#L40">40</a> <em class="jxr_javadoccomment"> * WebConversation object</em> -<a class="jxr_linenumber" name="L41" href="#L41">41</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L42" href="#L42">42</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> WebConversation WEB_CONVERSATION = <strong class="jxr_keyword">new</strong> WebConversation(); -<a class="jxr_linenumber" name="L43" href="#L43">43</a> -<a class="jxr_linenumber" name="L44" href="#L44">44</a> <em class="jxr_javadoccomment">/**</em> -<a class="jxr_linenumber" name="L45" href="#L45">45</a> <em class="jxr_javadoccomment"> * Test report</em> -<a class="jxr_linenumber" name="L46" href="#L46">46</a> <em class="jxr_javadoccomment"> *</em> -<a class="jxr_linenumber" name="L47" href="#L47">47</a> <em class="jxr_javadoccomment"> * @throws Exception if any</em> -<a class="jxr_linenumber" name="L48" href="#L48">48</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L49" href="#L49">49</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReport() -<a class="jxr_linenumber" name="L50" href="#L50">50</a> <strong class="jxr_keyword">throws</strong> Exception -<a class="jxr_linenumber" name="L51" href="#L51">51</a> { -<a class="jxr_linenumber" name="L52" href="#L52">52</a> generateReport( <span class="jxr_string">"mailing-lists"</span>, <span class="jxr_string">"mailing-lists-plugin-config.xml"</span> ); -<a class="jxr_linenumber" name="L53" href="#L53">53</a> assertTrue( <span class="jxr_string">"Test html generated"</span>, getGeneratedReport( <span class="jxr_string">"mailing-lists.html"</span> ).exists() ); -<a class="jxr_linenumber" name="L54" href="#L54">54</a> -<a class="jxr_linenumber" name="L55" href="#L55">55</a> URL reportURL = getGeneratedReport( <span class="jxr_string">"mailing-lists.html"</span> ).toURI().toURL(); -<a class="jxr_linenumber" name="L56" href="#L56">56</a> assertNotNull( reportURL ); -<a class="jxr_linenumber" name="L57" href="#L57">57</a> -<a class="jxr_linenumber" name="L58" href="#L58">58</a> <em class="jxr_comment">// HTTPUnit</em> -<a class="jxr_linenumber" name="L59" href="#L59">59</a> WebRequest request = <strong class="jxr_keyword">new</strong> GetMethodWebRequest( reportURL.toString() ); -<a class="jxr_linenumber" name="L60" href="#L60">60</a> WebResponse response = WEB_CONVERSATION.getResponse( request ); -<a class="jxr_linenumber" name="L61" href="#L61">61</a> -<a class="jxr_linenumber" name="L62" href="#L62">62</a> <em class="jxr_comment">// Basic HTML tests</em> -<a class="jxr_linenumber" name="L63" href="#L63">63</a> assertTrue( response.isHTML() ); -<a class="jxr_linenumber" name="L64" href="#L64">64</a> assertTrue( response.getContentLength() > 0 ); -<a class="jxr_linenumber" name="L65" href="#L65">65</a> -<a class="jxr_linenumber" name="L66" href="#L66">66</a> <em class="jxr_comment">// Test the Page title</em> -<a class="jxr_linenumber" name="L67" href="#L67">67</a> String expectedTitle = prepareTitle( getString( <span class="jxr_string">"report.mailing-lists.name"</span> ), -<a class="jxr_linenumber" name="L68" href="#L68">68</a> getString( <span class="jxr_string">"report.mailing-lists.title"</span> ) ); -<a class="jxr_linenumber" name="L69" href="#L69">69</a> assertEquals( expectedTitle, response.getTitle() ); -<a class="jxr_linenumber" name="L70" href="#L70">70</a> -<a class="jxr_linenumber" name="L71" href="#L71">71</a> <em class="jxr_comment">// Test the texts</em> -<a class="jxr_linenumber" name="L72" href="#L72">72</a> TextBlock[] textBlocks = response.getTextBlocks(); -<a class="jxr_linenumber" name="L73" href="#L73">73</a> assertEquals( getString( <span class="jxr_string">"report.mailing-lists.title"</span> ), textBlocks[0].getText() ); -<a class="jxr_linenumber" name="L74" href="#L74">74</a> assertEquals( getString( <span class="jxr_string">"report.mailing-lists.intro"</span> ), textBlocks[1].getText() ); -<a class="jxr_linenumber" name="L75" href="#L75">75</a> -<a class="jxr_linenumber" name="L76" href="#L76">76</a> <em class="jxr_comment">// MPIR-385: Test emails starts with 'mailto:'</em> -<a class="jxr_linenumber" name="L77" href="#L77">77</a> String post = getString(<span class="jxr_string">"report.mailing-lists.column.post"</span>); -<a class="jxr_linenumber" name="L78" href="#L78">78</a> assertEquals( <span class="jxr_string">"mailto:[email protected]"</span>, response.getLinkWith( post ).getAttribute( <span class="jxr_string">"href"</span> ) ); -<a class="jxr_linenumber" name="L79" href="#L79">79</a> String subscribe = getString(<span class="jxr_string">"report.mailing-lists.column.subscribe"</span>); -<a class="jxr_linenumber" name="L80" href="#L80">80</a> assertEquals( <span class="jxr_string">"MAILTO:[email protected]"</span>, response.getLinkWith( subscribe ).getAttribute( <span class="jxr_string">"href"</span> ) ); -<a class="jxr_linenumber" name="L81" href="#L81">81</a> String unsubscribe = getString(<span class="jxr_string">"report.mailing-lists.column.unsubscribe"</span>); -<a class="jxr_linenumber" name="L82" href="#L82">82</a> assertNull( response.getLinkWith( unsubscribe ) ); -<a class="jxr_linenumber" name="L83" href="#L83">83</a> } -<a class="jxr_linenumber" name="L84" href="#L84">84</a> -<a class="jxr_linenumber" name="L85" href="#L85">85</a> <em class="jxr_javadoccomment">/**</em> -<a class="jxr_linenumber" name="L86" href="#L86">86</a> <em class="jxr_javadoccomment"> * Test report in French (MPIR-59)</em> -<a class="jxr_linenumber" name="L87" href="#L87">87</a> <em class="jxr_javadoccomment"> *</em> -<a class="jxr_linenumber" name="L88" href="#L88">88</a> <em class="jxr_javadoccomment"> * @throws Exception if any</em> -<a class="jxr_linenumber" name="L89" href="#L89">89</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L90" href="#L90">90</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testFrenchReport() -<a class="jxr_linenumber" name="L91" href="#L91">91</a> <strong class="jxr_keyword">throws</strong> Exception -<a class="jxr_linenumber" name="L92" href="#L92">92</a> { -<a class="jxr_linenumber" name="L93" href="#L93">93</a> Locale oldLocale = Locale.getDefault(); -<a class="jxr_linenumber" name="L94" href="#L94">94</a> -<a class="jxr_linenumber" name="L95" href="#L95">95</a> <strong class="jxr_keyword">try</strong> -<a class="jxr_linenumber" name="L96" href="#L96">96</a> { -<a class="jxr_linenumber" name="L97" href="#L97">97</a> Locale.setDefault( Locale.FRENCH ); -<a class="jxr_linenumber" name="L98" href="#L98">98</a> -<a class="jxr_linenumber" name="L99" href="#L99">99</a> generateReport( <span class="jxr_string">"mailing-lists"</span>, <span class="jxr_string">"mailing-lists-plugin-config.xml"</span> ); -<a class="jxr_linenumber" name="L100" href="#L100">100</a> assertTrue( <span class="jxr_string">"Test html generated"</span>, getGeneratedReport( <span class="jxr_string">"mailing-lists.html"</span> ).exists() ); -<a class="jxr_linenumber" name="L101" href="#L101">101</a> } -<a class="jxr_linenumber" name="L102" href="#L102">102</a> <strong class="jxr_keyword">finally</strong> +<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebLink; +<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebRequest; +<a class="jxr_linenumber" name="L30" href="#L30">30</a> <strong class="jxr_keyword">import</strong> com.meterware.httpunit.WebResponse; +<a class="jxr_linenumber" name="L31" href="#L31">31</a> +<a class="jxr_linenumber" name="L32" href="#L32">32</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L33" href="#L33">33</a> <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em> +<a class="jxr_linenumber" name="L34" href="#L34">34</a> <em class="jxr_javadoccomment"> * @author <a href="<a href="mailto:[email protected]" target="alexandria_uri">mailto:[email protected]</a>">Vincent Siveton</a></em> +<a class="jxr_linenumber" name="L35" href="#L35">35</a> <em class="jxr_javadoccomment"> * @version $Id$</em> +<a class="jxr_linenumber" name="L36" href="#L36">36</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L37" href="#L37">37</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/maven/report/projectinfo/MailingListsReportTest.html">MailingListsReportTest</a> +<a class="jxr_linenumber" name="L38" href="#L38">38</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.html">AbstractProjectInfoTestCase</a> +<a class="jxr_linenumber" name="L39" href="#L39">39</a> { +<a class="jxr_linenumber" name="L40" href="#L40">40</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L41" href="#L41">41</a> <em class="jxr_javadoccomment"> * WebConversation object</em> +<a class="jxr_linenumber" name="L42" href="#L42">42</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L43" href="#L43">43</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> WebConversation WEB_CONVERSATION = <strong class="jxr_keyword">new</strong> WebConversation(); +<a class="jxr_linenumber" name="L44" href="#L44">44</a> +<a class="jxr_linenumber" name="L45" href="#L45">45</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L46" href="#L46">46</a> <em class="jxr_javadoccomment"> * Test report</em> +<a class="jxr_linenumber" name="L47" href="#L47">47</a> <em class="jxr_javadoccomment"> *</em> +<a class="jxr_linenumber" name="L48" href="#L48">48</a> <em class="jxr_javadoccomment"> * @throws Exception if any</em> +<a class="jxr_linenumber" name="L49" href="#L49">49</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L50" href="#L50">50</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReport() +<a class="jxr_linenumber" name="L51" href="#L51">51</a> <strong class="jxr_keyword">throws</strong> Exception +<a class="jxr_linenumber" name="L52" href="#L52">52</a> { +<a class="jxr_linenumber" name="L53" href="#L53">53</a> generateReport( <span class="jxr_string">"mailing-lists"</span>, <span class="jxr_string">"mailing-lists-plugin-config.xml"</span> ); +<a class="jxr_linenumber" name="L54" href="#L54">54</a> assertTrue( <span class="jxr_string">"Test html generated"</span>, getGeneratedReport( <span class="jxr_string">"mailing-lists.html"</span> ).exists() ); +<a class="jxr_linenumber" name="L55" href="#L55">55</a> +<a class="jxr_linenumber" name="L56" href="#L56">56</a> URL reportURL = getGeneratedReport( <span class="jxr_string">"mailing-lists.html"</span> ).toURI().toURL(); +<a class="jxr_linenumber" name="L57" href="#L57">57</a> assertNotNull( reportURL ); +<a class="jxr_linenumber" name="L58" href="#L58">58</a> +<a class="jxr_linenumber" name="L59" href="#L59">59</a> <em class="jxr_comment">// HTTPUnit</em> +<a class="jxr_linenumber" name="L60" href="#L60">60</a> WebRequest request = <strong class="jxr_keyword">new</strong> GetMethodWebRequest( reportURL.toString() ); +<a class="jxr_linenumber" name="L61" href="#L61">61</a> WebResponse response = WEB_CONVERSATION.getResponse( request ); +<a class="jxr_linenumber" name="L62" href="#L62">62</a> +<a class="jxr_linenumber" name="L63" href="#L63">63</a> <em class="jxr_comment">// Basic HTML tests</em> +<a class="jxr_linenumber" name="L64" href="#L64">64</a> assertTrue( response.isHTML() ); +<a class="jxr_linenumber" name="L65" href="#L65">65</a> assertTrue( response.getContentLength() > 0 ); +<a class="jxr_linenumber" name="L66" href="#L66">66</a> +<a class="jxr_linenumber" name="L67" href="#L67">67</a> <em class="jxr_comment">// Test the Page title</em> +<a class="jxr_linenumber" name="L68" href="#L68">68</a> String expectedTitle = prepareTitle( getString( <span class="jxr_string">"report.mailing-lists.name"</span> ), +<a class="jxr_linenumber" name="L69" href="#L69">69</a> getString( <span class="jxr_string">"report.mailing-lists.title"</span> ) ); +<a class="jxr_linenumber" name="L70" href="#L70">70</a> assertEquals( expectedTitle, response.getTitle() ); +<a class="jxr_linenumber" name="L71" href="#L71">71</a> +<a class="jxr_linenumber" name="L72" href="#L72">72</a> <em class="jxr_comment">// Test the texts</em> +<a class="jxr_linenumber" name="L73" href="#L73">73</a> TextBlock[] textBlocks = response.getTextBlocks(); +<a class="jxr_linenumber" name="L74" href="#L74">74</a> assertEquals( getString( <span class="jxr_string">"report.mailing-lists.title"</span> ), textBlocks[0].getText() ); +<a class="jxr_linenumber" name="L75" href="#L75">75</a> assertEquals( getString( <span class="jxr_string">"report.mailing-lists.intro"</span> ), textBlocks[1].getText() ); +<a class="jxr_linenumber" name="L76" href="#L76">76</a> +<a class="jxr_linenumber" name="L77" href="#L77">77</a> <em class="jxr_comment">// MPIR-385 + MPIR-401: Test links are URIs otherwise assume a plain email address</em> +<a class="jxr_linenumber" name="L78" href="#L78">78</a> String post = getString(<span class="jxr_string">"report.mailing-lists.column.post"</span>); +<a class="jxr_linenumber" name="L79" href="#L79">79</a> WebLink[] postLinks = response.getMatchingLinks( WebLink.MATCH_CONTAINED_TEXT, post ); +<a class="jxr_linenumber" name="L80" href="#L80">80</a> assertEquals( <span class="jxr_string">"mailto:[email protected]"</span>, postLinks[0].getAttribute( <span class="jxr_string">"href"</span> ) ); +<a class="jxr_linenumber" name="L81" href="#L81">81</a> assertEquals( <span class="jxr_string">"mailto:[email protected]"</span>, postLinks[1].getAttribute( <span class="jxr_string">"href"</span> ) ); +<a class="jxr_linenumber" name="L82" href="#L82">82</a> String subscribe = getString(<span class="jxr_string">"report.mailing-lists.column.subscribe"</span>); +<a class="jxr_linenumber" name="L83" href="#L83">83</a> WebLink[] subscribeLinks = response.getMatchingLinks( WebLink.MATCH_CONTAINED_TEXT, subscribe ); +<a class="jxr_linenumber" name="L84" href="#L84">84</a> assertEquals( <span class="jxr_string">"MAILTO:[email protected]"</span>, subscribeLinks[0].getAttribute( <span class="jxr_string">"href"</span> ) ); +<a class="jxr_linenumber" name="L85" href="#L85">85</a> assertEquals( <span class="jxr_string">"MAILTO:[email protected]"</span>, subscribeLinks[1].getAttribute( <span class="jxr_string">"href"</span> ) ); +<a class="jxr_linenumber" name="L86" href="#L86">86</a> String unsubscribe = getString(<span class="jxr_string">"report.mailing-lists.column.unsubscribe"</span>); +<a class="jxr_linenumber" name="L87" href="#L87">87</a> WebLink[] unsubscribeLinks = response.getMatchingLinks( WebLink.MATCH_CONTAINED_TEXT, unsubscribe ); +<a class="jxr_linenumber" name="L88" href="#L88">88</a> assertTrue( unsubscribeLinks.length == 1 ); +<a class="jxr_linenumber" name="L89" href="#L89">89</a> assertEquals( <span class="jxr_string">"https://example.com/unsubscribe"</span>, unsubscribeLinks[0].getAttribute( <span class="jxr_string">"href"</span> ) ); +<a class="jxr_linenumber" name="L90" href="#L90">90</a> } +<a class="jxr_linenumber" name="L91" href="#L91">91</a> +<a class="jxr_linenumber" name="L92" href="#L92">92</a> <em class="jxr_javadoccomment">/**</em> +<a class="jxr_linenumber" name="L93" href="#L93">93</a> <em class="jxr_javadoccomment"> * Test report in French (MPIR-59)</em> +<a class="jxr_linenumber" name="L94" href="#L94">94</a> <em class="jxr_javadoccomment"> *</em> +<a class="jxr_linenumber" name="L95" href="#L95">95</a> <em class="jxr_javadoccomment"> * @throws Exception if any</em> +<a class="jxr_linenumber" name="L96" href="#L96">96</a> <em class="jxr_javadoccomment"> */</em> +<a class="jxr_linenumber" name="L97" href="#L97">97</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testFrenchReport() +<a class="jxr_linenumber" name="L98" href="#L98">98</a> <strong class="jxr_keyword">throws</strong> Exception +<a class="jxr_linenumber" name="L99" href="#L99">99</a> { +<a class="jxr_linenumber" name="L100" href="#L100">100</a> Locale oldLocale = Locale.getDefault(); +<a class="jxr_linenumber" name="L101" href="#L101">101</a> +<a class="jxr_linenumber" name="L102" href="#L102">102</a> <strong class="jxr_keyword">try</strong> <a class="jxr_linenumber" name="L103" href="#L103">103</a> { -<a class="jxr_linenumber" name="L104" href="#L104">104</a> Locale.setDefault( oldLocale ); -<a class="jxr_linenumber" name="L105" href="#L105">105</a> } -<a class="jxr_linenumber" name="L106" href="#L106">106</a> } -<a class="jxr_linenumber" name="L107" href="#L107">107</a> } +<a class="jxr_linenumber" name="L104" href="#L104">104</a> Locale.setDefault( Locale.FRENCH ); +<a class="jxr_linenumber" name="L105" href="#L105">105</a> +<a class="jxr_linenumber" name="L106" href="#L106">106</a> generateReport( <span class="jxr_string">"mailing-lists"</span>, <span class="jxr_string">"mailing-lists-plugin-config.xml"</span> ); +<a class="jxr_linenumber" name="L107" href="#L107">107</a> assertTrue( <span class="jxr_string">"Test html generated"</span>, getGeneratedReport( <span class="jxr_string">"mailing-lists.html"</span> ).exists() ); +<a class="jxr_linenumber" name="L108" href="#L108">108</a> } +<a class="jxr_linenumber" name="L109" href="#L109">109</a> <strong class="jxr_keyword">finally</strong> +<a class="jxr_linenumber" name="L110" href="#L110">110</a> { +<a class="jxr_linenumber" name="L111" href="#L111">111</a> Locale.setDefault( oldLocale ); +<a class="jxr_linenumber" name="L112" href="#L112">112</a> } +<a class="jxr_linenumber" name="L113" href="#L113">113</a> } +<a class="jxr_linenumber" name="L114" href="#L114">114</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ModulesReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ModulesReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ModulesReportTest.html Sun Apr 25 19:37:50 2021 @@ -148,6 +148,6 @@ <a class="jxr_linenumber" name="L140" href="#L140">140</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/PluginManagementReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/PluginManagementReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/PluginManagementReportTest.html Sun Apr 25 19:37:50 2021 @@ -188,6 +188,6 @@ <a class="jxr_linenumber" name="L180" href="#L180">180</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ProjectInfoReportUtilsTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ProjectInfoReportUtilsTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ProjectInfoReportUtilsTest.html Sun Apr 25 19:37:50 2021 @@ -305,6 +305,6 @@ <a class="jxr_linenumber" name="L297" href="#L297">297</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ScmReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ScmReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/ScmReportTest.html Sun Apr 25 19:37:50 2021 @@ -150,6 +150,6 @@ <a class="jxr_linenumber" name="L142" href="#L142">142</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/SummaryReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/SummaryReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/SummaryReportTest.html Sun Apr 25 19:37:50 2021 @@ -87,6 +87,6 @@ <a class="jxr_linenumber" name="L79" href="#L79">79</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/TeamReportTest.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/TeamReportTest.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/TeamReportTest.html Sun Apr 25 19:37:50 2021 @@ -108,6 +108,6 @@ <a class="jxr_linenumber" name="L100" href="#L100">100</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/package-frame.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/package-frame.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/package-frame.html Sun Apr 25 19:37:50 2021 @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Maven Project Info Reports Plugin 3.1.1 Reference Package org.apache.maven.report.projectinfo</title> + <title>Apache Maven Project Info Reports Plugin 3.1.2 Reference Package org.apache.maven.report.projectinfo</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" /> </head> <body> Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/package-summary.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/package-summary.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/package-summary.html Sun Apr 25 19:37:50 2021 @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Maven Project Info Reports Plugin 3.1.1 Reference Package org.apache.maven.report.projectinfo</title> + <title>Apache Maven Project Info Reports Plugin 3.1.2 Reference Package org.apache.maven.report.projectinfo</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" /> </head> <body> @@ -138,7 +138,7 @@ </div> <hr /> <div id="footer"> - Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. + Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. </div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/CiManagementStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/CiManagementStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/CiManagementStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Added: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/CiManagementWithCiSectionStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/CiManagementWithCiSectionStub.html (added) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/CiManagementWithCiSectionStub.html Sun Apr 25 19:37:50 2021 @@ -0,0 +1,43 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" /> +<title>CiManagementWithCiSectionStub xref</title> +<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" /> +</head> +<body> +<div id="overview"><a href="../../../../../../../testapidocs/org/apache/maven/report/projectinfo/stubs/CiManagementWithCiSectionStub.html">View Javadoc</a></div><pre> +<a class="jxr_linenumber" name="L1" href="#L1">1</a> <strong class="jxr_keyword">package</strong> org.apache.maven.report.projectinfo.stubs; +<a class="jxr_linenumber" name="L2" href="#L2">2</a> +<a class="jxr_linenumber" name="L3" href="#L3">3</a> <em class="jxr_comment">/*</em> +<a class="jxr_linenumber" name="L4" href="#L4">4</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em> +<a class="jxr_linenumber" name="L5" href="#L5">5</a> <em class="jxr_comment"> * or more contributor license agreements. See the NOTICE file</em> +<a class="jxr_linenumber" name="L6" href="#L6">6</a> <em class="jxr_comment"> * distributed with this work for additional information</em> +<a class="jxr_linenumber" name="L7" href="#L7">7</a> <em class="jxr_comment"> * regarding copyright ownership. The ASF licenses this file</em> +<a class="jxr_linenumber" name="L8" href="#L8">8</a> <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em> +<a class="jxr_linenumber" name="L9" href="#L9">9</a> <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em> +<a class="jxr_linenumber" name="L10" href="#L10">10</a> <em class="jxr_comment"> * with the License. You may obtain a copy of the License at</em> +<a class="jxr_linenumber" name="L11" href="#L11">11</a> <em class="jxr_comment"> *</em> +<a class="jxr_linenumber" name="L12" href="#L12">12</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em> +<a class="jxr_linenumber" name="L13" href="#L13">13</a> <em class="jxr_comment"> *</em> +<a class="jxr_linenumber" name="L14" href="#L14">14</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em> +<a class="jxr_linenumber" name="L15" href="#L15">15</a> <em class="jxr_comment"> * software distributed under the License is distributed on an</em> +<a class="jxr_linenumber" name="L16" href="#L16">16</a> <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em> +<a class="jxr_linenumber" name="L17" href="#L17">17</a> <em class="jxr_comment"> * KIND, either express or implied. See the License for the</em> +<a class="jxr_linenumber" name="L18" href="#L18">18</a> <em class="jxr_comment"> * specific language governing permissions and limitations</em> +<a class="jxr_linenumber" name="L19" href="#L19">19</a> <em class="jxr_comment"> * under the License.</em> +<a class="jxr_linenumber" name="L20" href="#L20">20</a> <em class="jxr_comment"> */</em> +<a class="jxr_linenumber" name="L21" href="#L21">21</a> +<a class="jxr_linenumber" name="L22" href="#L22">22</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/report/projectinfo/stubs/CiManagementWithCiSectionStub.html">CiManagementWithCiSectionStub</a> +<a class="jxr_linenumber" name="L23" href="#L23">23</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/report/projectinfo/stubs/ProjectInfoProjectStub.html">ProjectInfoProjectStub</a> +<a class="jxr_linenumber" name="L24" href="#L24">24</a> { +<a class="jxr_linenumber" name="L25" href="#L25">25</a> @Override +<a class="jxr_linenumber" name="L26" href="#L26">26</a> <strong class="jxr_keyword">protected</strong> String getPOM() +<a class="jxr_linenumber" name="L27" href="#L27">27</a> { +<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">return</strong> <span class="jxr_string">"ci-management-plugin-with-ci-section-config.xml"</span>; +<a class="jxr_linenumber" name="L29" href="#L29">29</a> } +<a class="jxr_linenumber" name="L30" href="#L30">30</a> } +</pre> +<hr/> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +</body> +</html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DefaultArtifactHandlerStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DefaultArtifactHandlerStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DefaultArtifactHandlerStub.html Sun Apr 25 19:37:50 2021 @@ -59,6 +59,6 @@ <a class="jxr_linenumber" name="L51" href="#L51">51</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependenciesStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependenciesStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependenciesStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyArtifactStubFactory.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyArtifactStubFactory.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyArtifactStubFactory.html Sun Apr 25 19:37:50 2021 @@ -77,6 +77,6 @@ <a class="jxr_linenumber" name="L69" href="#L69">69</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyConvergenceStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyConvergenceStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyConvergenceStub.html Sun Apr 25 19:37:50 2021 @@ -63,6 +63,6 @@ <a class="jxr_linenumber" name="L55" href="#L55">55</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyManagementStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyManagementStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/DependencyManagementStub.html Sun Apr 25 19:37:50 2021 @@ -43,6 +43,6 @@ <a class="jxr_linenumber" name="L35" href="#L35">35</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/IndexStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/IndexStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/IndexStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/IssueManagementStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/IssueManagementStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/IssueManagementStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/LicensesStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/LicensesStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/LicensesStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/MailingListsStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/MailingListsStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/MailingListsStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ModulesStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ModulesStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ModulesStub.html Sun Apr 25 19:37:50 2021 @@ -52,6 +52,6 @@ <a class="jxr_linenumber" name="L44" href="#L44">44</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ModulesVariableSettingInterpolationStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ModulesVariableSettingInterpolationStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ModulesVariableSettingInterpolationStub.html Sun Apr 25 19:37:50 2021 @@ -51,6 +51,6 @@ <a class="jxr_linenumber" name="L43" href="#L43">43</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/PluginManagementMPIR375Stub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/PluginManagementMPIR375Stub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/PluginManagementMPIR375Stub.html Sun Apr 25 19:37:50 2021 @@ -43,6 +43,6 @@ <a class="jxr_linenumber" name="L35" href="#L35">35</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/PluginManagementStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/PluginManagementStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/PluginManagementStub.html Sun Apr 25 19:37:50 2021 @@ -43,6 +43,6 @@ <a class="jxr_linenumber" name="L35" href="#L35">35</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ProjectInfoPluginArtifactStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ProjectInfoPluginArtifactStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ProjectInfoPluginArtifactStub.html Sun Apr 25 19:37:50 2021 @@ -131,6 +131,6 @@ <a class="jxr_linenumber" name="L123" href="#L123">123</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ProjectInfoProjectStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ProjectInfoProjectStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ProjectInfoProjectStub.html Sun Apr 25 19:37:50 2021 @@ -199,6 +199,6 @@ <a class="jxr_linenumber" name="L191" href="#L191">191</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ScmStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ScmStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/ScmStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SettingsSitePublishVariableStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SettingsSitePublishVariableStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SettingsSitePublishVariableStub.html Sun Apr 25 19:37:50 2021 @@ -58,6 +58,6 @@ <a class="jxr_linenumber" name="L50" href="#L50">50</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SettingsStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SettingsStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SettingsStub.html Sun Apr 25 19:37:50 2021 @@ -40,6 +40,6 @@ <a class="jxr_linenumber" name="L32" href="#L32">32</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SubProject1Stub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SubProject1Stub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SubProject1Stub.html Sun Apr 25 19:37:50 2021 @@ -60,6 +60,6 @@ <a class="jxr_linenumber" name="L52" href="#L52">52</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SubProject2Stub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SubProject2Stub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SubProject2Stub.html Sun Apr 25 19:37:50 2021 @@ -60,6 +60,6 @@ <a class="jxr_linenumber" name="L52" href="#L52">52</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SummaryStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SummaryStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/SummaryStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/TeamStub.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/TeamStub.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/TeamStub.html Sun Apr 25 19:37:50 2021 @@ -42,6 +42,6 @@ <a class="jxr_linenumber" name="L34" href="#L34">34</a> } </pre> <hr/> -<div id="footer">Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div> </body> </html> \ No newline at end of file Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/package-frame.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/package-frame.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/package-frame.html Sun Apr 25 19:37:50 2021 @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Maven Project Info Reports Plugin 3.1.1 Reference Package org.apache.maven.report.projectinfo.stubs</title> + <title>Apache Maven Project Info Reports Plugin 3.1.2 Reference Package org.apache.maven.report.projectinfo.stubs</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" /> </head> <body> @@ -19,6 +19,9 @@ <a href="CiManagementStub.html" target="classFrame">CiManagementStub</a> </li> <li> + <a href="CiManagementWithCiSectionStub.html" target="classFrame">CiManagementWithCiSectionStub</a> + </li> + <li> <a href="DefaultArtifactHandlerStub.html" target="classFrame">DefaultArtifactHandlerStub</a> </li> <li> Modified: maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/package-summary.html ============================================================================== --- maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/package-summary.html (original) +++ maven/website/components/plugins-archives/maven-project-info-reports-plugin-LATEST/xref-test/org/apache/maven/report/projectinfo/stubs/package-summary.html Sun Apr 25 19:37:50 2021 @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Maven Project Info Reports Plugin 3.1.1 Reference Package org.apache.maven.report.projectinfo.stubs</title> + <title>Apache Maven Project Info Reports Plugin 3.1.2 Reference Package org.apache.maven.report.projectinfo.stubs</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" /> </head> <body> @@ -42,6 +42,11 @@ </tr> <tr> <td> + <a href="CiManagementWithCiSectionStub.html" target="classFrame">CiManagementWithCiSectionStub</a> + </td> + </tr> + <tr> + <td> <a href="DefaultArtifactHandlerStub.html" target="classFrame">DefaultArtifactHandlerStub</a> </td> </tr> @@ -173,7 +178,7 @@ </div> <hr /> <div id="footer"> - Copyright © 2005–2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. + Copyright © 2005–2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. </div> </body> </html> \ No newline at end of file
