Author: dennisl Date: Sun Nov 11 14:18:36 2007 New Revision: 593975 URL: http://svn.apache.org/viewvc?rev=593975&view=rev Log: o Add xml declaration. o Add used but undeclared dependencies. o Specify version for maven-changelog-plugin.
Modified: maven/plugins/trunk/maven-help-plugin/pom.xml Modified: maven/plugins/trunk/maven-help-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-help-plugin/pom.xml?rev=593975&r1=593974&r2=593975&view=diff ============================================================================== --- maven/plugins/trunk/maven-help-plugin/pom.xml (original) +++ maven/plugins/trunk/maven-help-plugin/pom.xml Sun Nov 11 14:18:36 2007 @@ -1,3 +1,4 @@ +<?xml version='1.0' encoding='UTF-8'?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -44,6 +45,11 @@ <dependencies> <dependency> <groupId>org.apache.maven</groupId> + <artifactId>maven-artifact</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> @@ -59,6 +65,11 @@ </dependency> <dependency> <groupId>org.apache.maven</groupId> + <artifactId>maven-model</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-tools-api</artifactId> <version>2.0</version> </dependency> @@ -67,15 +78,24 @@ <artifactId>maven-plugin-descriptor</artifactId> <version>2.0</version> </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-container-default</artifactId> + <version>1.0-alpha-9</version> + </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> + <version>2.1</version> </plugin> </plugins> </reporting> </project> - -