o using a snippet in the Antlr plug-in for the generating sources guide

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@326312 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-10-19 00:52:41 +00:00
parent 6eb39b64ef
commit a3808c41b9
1 changed files with 4 additions and 11 deletions

View File

@ -1,24 +1,17 @@
------
Guide to Generating Sources
Guide to generating Sources
------
Jason van Zyl
------
12 October 2005
------
Guide to generating sources
Let's run though a short example to try and help. To generate sources you must first have a plugin that
participates in the generate-sources phase like the Antlr plugin:
+----+
/**
* @goal generate
* @phase generate-sources
* @requiresDependencyResolution compile
* @description Antlr plugin
*/
+----+
%{snippet|id=generate-sources-0|url=http://svn.apache.org/repos/asf/maven/components/trunk/maven-plugins/maven-antlr-plugin/src/main/java/org/apache/maven/plugin/antlr/AntlrPlugin.java}
The first two lines say "I want to be fit into the generate-sources
phase and my 'handle' is generate".