changed annotation IT to match javadoc tag IT

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1353335 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2012-06-24 21:33:09 +00:00
parent c46422fe0d
commit dae672097a
2 changed files with 4 additions and 4 deletions

View File

@ -38,8 +38,8 @@ import org.apache.maven.project.MavenProjectHelper;
@Mojo( name = "maximal", @Mojo( name = "maximal",
aggregator = true, aggregator = true,
configurator = "configurator-hint", configurator = "configurator-hint",
requiresDependencyResolution = ResolutionScope.TEST, requiresDependencyResolution = ResolutionScope.COMPILE,
requiresDependencyCollection = ResolutionScope.COMPILE, requiresDependencyCollection = ResolutionScope.TEST,
defaultPhase = LifecyclePhase.PACKAGE, defaultPhase = LifecyclePhase.PACKAGE,
executionStrategy = "always", executionStrategy = "always",
instantiationStrategy = InstanciationStrategy.SINGLETON, instantiationStrategy = InstanciationStrategy.SINGLETON,

View File

@ -175,8 +175,8 @@ assert mojo.implementation.text() == 'org.apache.maven.plugin.coreit.Maximal'
assert mojo.language.text() == 'java' assert mojo.language.text() == 'java'
assert mojo.description.text() == 'Checks maximum annotations with non-default values.' assert mojo.description.text() == 'Checks maximum annotations with non-default values.'
assert mojo.deprecated.text() == 'deprecated-text' assert mojo.deprecated.text() == 'deprecated-text'
assert mojo.requiresDependencyResolution.text() == 'test' assert mojo.requiresDependencyResolution.text() == 'compile'
assert mojo.requiresDependencyCollection.text() == 'compile' assert mojo.requiresDependencyCollection.text() == 'test'
assert mojo.requiresProject.text() == 'false' assert mojo.requiresProject.text() == 'false'
assert mojo.requiresOnline.text() == 'true' assert mojo.requiresOnline.text() == 'true'
assert mojo.requiresDirectInvocation.text() == 'true' assert mojo.requiresDirectInvocation.text() == 'true'