You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2009/07/26 18:26:44 UTC

svn commit: r797953 - in /maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system: pom.xml verify.bsh

Author: olamy
Date: Sun Jul 26 16:26:43 2009
New Revision: 797953

URL: http://svn.apache.org/viewvc?rev=797953&view=rev
Log:
ensure we test a full url

Modified:
    maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/pom.xml
    maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/verify.bsh

Modified: maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/pom.xml?rev=797953&r1=797952&r2=797953&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/pom.xml (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/pom.xml Sun Jul 26 16:26:43 2009
@@ -80,7 +80,7 @@
         <artifactId>maven-changes-plugin</artifactId>
         <version>@pom.version@</version>
         <configuration>
-          <issueLinkTemplate>myjira/browse/%ISSUE%</issueLinkTemplate>
+          <issueLinkTemplate>http://myjira/browse/%ISSUE%</issueLinkTemplate>
           <issueLinkTemplatePerSystem>
             <qc>http://localhost/%ISSUE%</qc>
           </issueLinkTemplatePerSystem>

Modified: maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/verify.bsh
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/verify.bsh?rev=797953&r1=797952&r2=797953&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/verify.bsh (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/it/report-changes-system/verify.bsh Sun Jul 26 16:26:43 2009
@@ -43,7 +43,7 @@
       return false;
     }    
     
-    indexOf = reportContent.indexOf( "<a href=\"myjira/browse/MCHANGES-88\">MCHANGES-88</a>" );
+    indexOf = reportContent.indexOf( "<a href=\"http://myjira/browse/MCHANGES-88\"" );
     if ( indexOf < 0)
     {
       System.err.println( "changes-report.html doesn't contains jira issue link" );