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 2012/12/30 09:51:44 UTC

svn commit: r1426908 - /maven/archetypes/trunk/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy

Author: hboutemy
Date: Sun Dec 30 08:51:43 2012
New Revision: 1426908

URL: http://svn.apache.org/viewvc?rev=1426908&view=rev
Log:
fixed UT after r1414935: now that there is no deprecated annotation, the descriptor doesn't contain the deprecation message

Modified:
    maven/archetypes/trunk/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy

Modified: maven/archetypes/trunk/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy
URL: http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy?rev=1426908&r1=1426907&r2=1426908&view=diff
==============================================================================
--- maven/archetypes/trunk/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy (original)
+++ maven/archetypes/trunk/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy Sun Dec 30 08:51:43 2012
@@ -1,4 +1,3 @@
-System.out.println("basedir:"+basedir);
 File descriptorFile = new File( basedir, "project/basic-plugin/target/classes/META-INF/maven/plugin.xml" );
 assert descriptorFile.isFile()
 
@@ -10,7 +9,6 @@ assert mojo.goal.text() == 'touch'
 assert mojo.implementation.text() == 'it.pkg.plugin.MyMojo'
 assert mojo.language.text() == 'java'
 assert mojo.description.text() == 'Goal which touches a timestamp file.'
-assert mojo.deprecated.text() == "Don't use!"
 assert mojo.phase.text() == 'process-sources'
 
 assert mojo.configuration.outputDirectory[0].text() == '${outputDir}'