As for specific problems, I have not yet encountered any. The problem isn't just that it requires those libraries intentionally though. The problem is that it is mixing classes from 2.7.7 with classes from 3.0.0 because some of the refactors did not update code to point to the new location of the class, so now the old version is picked up by default.
Now if the unit tests are passing then I suppose it's fine, but I would be very cautious of using it in my projects. Perhaps we can talk Ter into releasing a 3.0.2 before the 3.1 to correct this issue. Kenny On 10/22/07, Putrycz, Erik <[EMAIL PROTECTED]> wrote: > Except the link to the 2.7.7 libraries, do you have anything more > specific about problems with this version? 3.0.1 corrects many bugs... > http://antlr.org/doc/README.txt > > Erik. > > -----Original Message----- > From: Kenny MacDermid [mailto:[EMAIL PROTECTED] > Sent: Monday, October 22, 2007 11:55 AM > To: [email protected] > Subject: Re: [mojo-dev] [VOTE] Release antlr3-maven-plugin 1.0-beta-1 > > Personally I'd recommend not linking against the 3.0.1 build. There > are problems with this release due to refactoring. It will require you > add the 2.7.7 antlr libraries to your build dependencies on any > projects using it. This is because it uses classes from the old code. > > Plus 3.1 will be out shortly. > > If you do want to link against 3.0.1, here's my snippet of the other > two new dependencies you will require: > > <!-- these dependencies should not be required, there is a bug in > the antlr > 3.0.1 jar file that makes it rely on the previous version --> > <dependency> > <groupId>antlr</groupId> > <artifactId>antlr</artifactId> > <version>2.7.7</version> > </dependency> > <dependency> > <groupId>org.antlr</groupId> > <artifactId>stringtemplate</artifactId> > <version>3.0</version> > </dependency> > > Kenny > > On 10/16/07, Putrycz, Erik <[EMAIL PROTECTED]> wrote: > > Any chances you could link to ANTLR 3.0.1 instead of the 3.0? > > > > Erik. > > > > -----Original Message----- > > From: David Holroyd [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, October 16, 2007 5:36 PM > > To: [email protected] > > Subject: [mojo-dev] [VOTE] Release antlr3-maven-plugin 1.0-beta-1 > > > > I'd like to make the first release of the ANTLRv3 plugin since moving > > from http://maven.badgers-in-foil.co.uk/sites/maven-antlr3-plugin/ > > > > There are currently no open JIRA issues, and I've given it a docck. > > > > I've uploaded the new site here, if anyone wants to check, > > > > http://codehaus.org/~dholroyd/sites/antlr3-maven-plugin/ > > > > > > ta, > > dave > > > > -- > > http://david.holroyd.me.uk/ > > > > --------------------------------------------------------------------- > > To unsubscribe from this list please visit: > > > > http://xircles.codehaus.org/manage_email > > > > > > --------------------------------------------------------------------- > > To unsubscribe from this list please visit: > > > > http://xircles.codehaus.org/manage_email > > > > > > --------------------------------------------------------------------- > To unsubscribe from this list please visit: > > http://xircles.codehaus.org/manage_email > > > --------------------------------------------------------------------- > To unsubscribe from this list please visit: > > http://xircles.codehaus.org/manage_email > > --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
