You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2016/01/10 19:34:25 UTC

svn commit: r1723945 - /maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy

Author: hboutemy
Date: Sun Jan 10 18:34:25 2016
New Revision: 1723945

URL: http://svn.apache.org/viewvc?rev=1723945&view=rev
Log:
[DOXIASITETOOLS-118] show current (unexpected) behaviour (like MSITE-312, which is another consequence of this)

Modified:
    maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy

Modified: maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy?rev=1723945&r1=1723944&r2=1723945&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy (original)
+++ maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy Sun Jan 10 18:34:25 2016
@@ -36,5 +36,12 @@ assert content.contains( '<<<http://mave
 // Site Decoration Model inheritance+interpolation
 childContent = new File( basedir, 'child/target/site/index.html' ).text;
 
+// see DOXIASITETOOLS-118: interpolation happens too early
+// assert childContent.contains( 'project.artifactId = child' );
+assert childContent.contains( 'project.artifactId = repo-parent' );
 
 reactorContent = new File( basedir, 'reactor-parent/target/site/index.html' ).text;
+
+// see DOXIASITETOOLS-118: interpolation happens too early
+// assert reactorContent.contains( 'project.artifactId = reactor-parent' );
+assert reactorContent.contains( 'project.artifactId = repo-parent' );