Forgot these two:

o repository metadata: use FQCN

o verifier plugin: use non-deprecated notation


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@280561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kenney Westerhof 2005-09-13 14:26:34 +00:00
parent 5817c5298c
commit 5777c1ac9f
2 changed files with 12 additions and 14 deletions

View File

@ -43,17 +43,15 @@
<model>src/main/mdo/verifications.mdo</model>
<version>1.0.0</version>
</configuration>
<goals>
<goal>
<id>xpp3-reader</id>
</goal>
<goal>
<id>xpp3-writer</id>
</goal>
<goal>
<id>java</id>
</goal>
</goals>
<executions>
<execution>
<goals>
<goal>xpp3-reader</goal>
<goal>xpp3-writer</goal>
<goal>java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

View File

@ -57,12 +57,12 @@
{
boolean changed = false;
for ( Iterator i = sourceMetadata.getPlugins().iterator(); i.hasNext(); )
for ( java.util.Iterator i = sourceMetadata.getPlugins().iterator(); i.hasNext(); )
{
Plugin plugin = (Plugin) i.next();
boolean found = false;
for ( Iterator it = getPlugins().iterator(); it.hasNext() && !found; )
for ( java.util.Iterator it = getPlugins().iterator(); it.hasNext() && !found; )
{
Plugin preExisting = (Plugin) it.next();
@ -102,7 +102,7 @@
changed = true;
v.setLatest( versioning.getLatest() );
}
for ( Iterator i = versioning.getVersions().iterator(); i.hasNext(); )
for ( java.util.Iterator i = versioning.getVersions().iterator(); i.hasNext(); )
{
String version = (String) i.next();
if ( !v.getVersions().contains( version ) )