fixed UT after r1414935: now that there is no deprecated annotation, the descriptor doesn't contain the deprecation message

git-svn-id: https://svn.apache.org/repos/asf/maven/archetypes/trunk@1426908 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy b/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy
index bdd0b84..56f1e89 100644
--- a/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy
+++ b/maven-archetype-plugin/src/test/resources/projects/basic/verify.groovy
@@ -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.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}'