<html>
<head>
<style><!--
  body {background-color:#ffffff;}
  .file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
  .pathname {font-family:monospace; float:right;}
  .fileheader {margin-bottom:.5em;}
  .diff {margin:0;}
  .tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
  .tasklist ul {margin-top:0;margin-bottom:0;}
  tr.alt {background-color:#eeeeee}
  #added {background-color:#ddffdd;}
  #addedchars {background-color:#99ff99;font-weight:bolder;}
  tr.alt #added {background-color:#ccf7cc;}
  #removed {background-color:#ffdddd;}
  #removedchars {background-color:#ff9999;font-weight:bolder;}
  tr.alt #removed {background-color:#f7cccc;}
  #copied {background-color:#ccccff;}
  tr.alt #copied {background-color:#bbbbf7;}
  #info {color:#888888;}
  #context {background-color:#eeeeee;}
  td {padding-left:.3em;padding-right:.3em;}
  tr.head {border-bottom-width:1px;border-bottom-style:solid;}
  tr.head td {padding:0;padding-top:.2em;}
  .task {background-color:#ffff00;}
  .comment {white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;padding:4px;border:1px dashed #000000;background-color:#ffffdd}
  .error {color:red;}
  hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="5">Commit in <b><tt>metaas/trunk</tt></b></td></tr>
<tr><td><tt><a href="#file1">pom.xml</a></tt> </td><td></td><td align="right" id="added">+21</td><td align="right" id="removed">-34</td><td nowrap="nowrap" align="center">479 -&gt; 480</td></tr>
</table>
<pre class="comment">
use my new ANTLR plugin for Maven
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">metaas/trunk</span><br />
<div class="fileheader"><big><b>pom.xml</b></big> <small id="info">479 -&gt; 480</small></div>
<pre class="diff"><small id="info">--- trunk/pom.xml        2007-04-06 11:47:00 UTC (rev 479)
+++ trunk/pom.xml        2007-04-15 22:56:10 UTC (rev 480)
@@ -107,45 +107,25 @@
</small></pre><pre class="diff" id="context">       &lt;/plugin&gt;
 
       &lt;plugin&gt;
</pre><pre class="diff" id="removed">-        &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
</pre><pre class="diff" id="added">+        &lt;groupId&gt;uk.co.badgersinfoil.maven.plugins&lt;/groupId&gt;
+        &lt;artifactId&gt;maven-antlr3-plugin&lt;/artifactId&gt;
</pre><pre class="diff" id="context">         &lt;executions&gt;
           &lt;execution&gt;
</pre><pre class="diff" id="removed">-            &lt;phase&gt;generate-sources&lt;/phase&gt;
-            &lt;configuration&gt;
-              &lt;tasks&gt;
-                &lt;java classname="org.antlr.Tool" classpathref="maven.plugin.classpath" fork="true" dir="src/main/antlr"&gt;
-                  &lt;arg value="uk/co/badgersinfoil/metaas/impl/parser/regexsimple/RegexSimple.g"/&gt;
-                  &lt;arg line="-o ${project.build.directory}/generated-sources/antlr/uk/co/badgersinfoil/metaas/impl/parser/regexsimple"/&gt;
-                &lt;/java&gt;
-                &lt;java classname="org.antlr.Tool" classpathref="maven.plugin.classpath" fork="true" dir="src/main/antlr" maxmemory="512M"&gt;
-                  &lt;arg value="org/asdt/core/internal/antlr/AS3.g3"/&gt;
-                  &lt;arg line="-o ${project.build.directory}/generated-sources/antlr/org/asdt/core/internal/antlr"/&gt;
-                  &lt;arg line="-Xconversiontimeout 60000"/&gt;
-                &lt;/java&gt;
-                &lt;java classname="org.antlr.Tool" classpathref="maven.plugin.classpath" fork="true" dir="src/main/antlr"&gt;
-                  &lt;arg value="uk/co/badgersinfoil/metaas/impl/parser/e4x/E4X.g"/&gt;
-                  &lt;arg line="-o ${project.build.directory}/generated-sources/antlr/uk/co/badgersinfoil/metaas/impl/parser/e4x"/&gt;
-                &lt;/java&gt;
-                &lt;java classname="org.antlr.Tool" classpathref="maven.plugin.classpath" fork="true" dir="src/main/antlr"&gt;
-                  &lt;arg value="uk/co/badgersinfoil/metaas/impl/parser/javadoc/Javadoc.g"/&gt;
-                  &lt;arg line="-o ${project.build.directory}/generated-sources/antlr/uk/co/badgersinfoil/metaas/impl/parser/javadoc"/&gt;
-                &lt;/java&gt;
-              &lt;/tasks&gt;
-              &lt;sourceRoot&gt;${project.build.directory}/generated-sources/antlr&lt;/sourceRoot&gt;
-            &lt;/configuration&gt;
</pre><pre class="diff" id="context">             &lt;goals&gt;
</pre><pre class="diff" id="removed">-              &lt;goal&gt;<span id="removedchars">run</span>&lt;/goal&gt;
</pre><pre class="diff" id="added">+              &lt;goal&gt;<span id="addedchars">antlr</span>&lt;/goal&gt;
</pre><pre class="diff" id="context">             &lt;/goals&gt;
           &lt;/execution&gt;
         &lt;/executions&gt;
</pre><pre class="diff" id="removed">-        &lt;dependencies&gt;
-          &lt;dependency&gt;
-            &lt;groupId&gt;org.antlr&lt;/groupId&gt;
-            &lt;artifactId&gt;antlr&lt;/artifactId&gt;
-            &lt;version&gt;03-30-2007.14&lt;/version&gt;
-            &lt;scope&gt;compile&lt;/scope&gt;
-          &lt;/dependency&gt;
-        &lt;/dependencies&gt;
</pre><pre class="diff" id="added">+        &lt;configuration&gt;
+          &lt;includes&gt;
+            &lt;include&gt;**/*.g&lt;/include&gt;
+            &lt;include&gt;**/*.g3&lt;/include&gt;
+          &lt;/includes&gt;
+          &lt;excludes&gt;
+            &lt;!-- unfinished grammar --&gt;
+            &lt;exclude&gt;**/Regex.g&lt;/exclude&gt;
+          &lt;/excludes&gt;
+        &lt;/configuration&gt;
</pre><pre class="diff" id="context">       &lt;/plugin&gt;
 
       &lt;plugin&gt;
</pre><pre class="diff"><small id="info">@@ -202,7 +182,7 @@
</small></pre><pre class="diff" id="context">     &lt;dependency&gt;
       &lt;groupId&gt;org.antlr&lt;/groupId&gt;
       &lt;artifactId&gt;antlr&lt;/artifactId&gt;
</pre><pre class="diff" id="removed">-      &lt;version&gt;0<span id="removedchars">3-30-2007.14</span>&lt;/version&gt;
</pre><pre class="diff" id="added">+      &lt;version&gt;0<span id="addedchars">4-10-2007.18</span>&lt;/version&gt;
</pre><pre class="diff" id="context">       &lt;scope&gt;compile&lt;/scope&gt;
     &lt;/dependency&gt;
     &lt;dependency&gt;
</pre><pre class="diff"><small id="info">@@ -286,4 +266,11 @@
</small></pre><pre class="diff" id="context">       &lt;url&gt;scp://maven.badgers-in-foil.co.uk/home/maven/www/sites/metaas&lt;/url&gt;
     &lt;/site&gt;
   &lt;/distributionManagement&gt;
</pre><pre class="diff" id="added">+
+  &lt;pluginRepositories&gt;
+    &lt;pluginRepository&gt;
+      &lt;id&gt;bif-repository&lt;/id&gt;
+      &lt;url&gt;http://maven.badgers-in-foil.co.uk/maven2/&lt;/url&gt;
+    &lt;/pluginRepository&gt;
+  &lt;/pluginRepositories&gt;
</pre><pre class="diff" id="context"> &lt;/project&gt;
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -&gt; email">CVSspam</a> 0.2.12</small></center>
</body></html>