Author: jvanzyl Date: Thu Jul 20 16:59:36 2006 New Revision: 424137 URL: http://svn.apache.org/viewvc?rev=424137&view=rev Log: o making the doco compliant
Added: maven/plugins/trunk/maven-doap-plugin/src/site/apt/index.apt - copied unchanged from r424108, maven/plugins/trunk/maven-doap-plugin/src/site/apt/introduction.apt maven/plugins/trunk/maven-doap-plugin/src/site/apt/usage.apt - copied unchanged from r424108, maven/plugins/trunk/maven-doap-plugin/src/site/apt/howto.apt Removed: maven/plugins/trunk/maven-doap-plugin/src/site/apt/howto.apt maven/plugins/trunk/maven-doap-plugin/src/site/apt/introduction.apt Modified: maven/plugins/trunk/maven-doap-plugin/pom.xml maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java Modified: maven/plugins/trunk/maven-doap-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-doap-plugin/pom.xml?rev=424137&r1=424136&r2=424137&view=diff ============================================================================== --- maven/plugins/trunk/maven-doap-plugin/pom.xml (original) +++ maven/plugins/trunk/maven-doap-plugin/pom.xml Thu Jul 20 16:59:36 2006 @@ -9,6 +9,9 @@ <packaging>maven-plugin</packaging> <name>Maven DOAP Plugin</name> <version>1.0-SNAPSHOT</version> + <prerequisites> + <maven>2.0.1</maven> + </prerequisites> <dependencies> <dependency> <groupId>org.apache.maven</groupId> Modified: maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java?rev=424137&r1=424136&r2=424137&view=diff ============================================================================== --- maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java (original) +++ maven/plugins/trunk/maven-doap-plugin/src/main/java/org/apache/maven/plugin/doap/DoapMojo.java Thu Jul 20 16:59:36 2006 @@ -47,7 +47,7 @@ public static final String RDF_RESOURCE = "rdf:resource"; /** - * The project to create a build for. + * The POM from which information will be extracted to create a DOAP file. * * @parameter expression="${project}" * @required @@ -55,16 +55,23 @@ private MavenProject project; /** + * The name of the DOAP file that will be generated. + * * @parameter expression="${basedir}/doap_${project.artifactId}.rdf" */ private File doapFile; /** + * The category which should be displayed in the DOAP file. The POM doesn't have any + * notions of category yet. + * * @parameter expression="${category}" */ private String category; /** + * The language which should be displayed in the DOAP file. The POM doesn't have any + * notions of language yet. * @parameter expression="${language}" default-value="Java" */ private String language;