Hi, We have a new Maven artifact available: maven-gunit-plugin, this automates the running of gunit tests as part of a Maven build. Documentation to follow, but it is fairly easy to work out if you already know ANTLR and gUnit. It can be used as: <plugin> <groupId>org.antlr</groupId> <artifactId>maven-gunit-plugin</artifactId> <version>3.1.3</version> <configuration> ... </configuration> </plugin> - - - - - - I have also fixed the issue with the ANTLR 3.1.3 whereby the -make option (which the Maven plugin relies on) was not detecting changes in .g files correctly and was assuming that everything was up to date. If this was bugging you enough that you want to use the current snapshot of antlr, then configure your pom.xml file like this: 1) Add a reference to the ANTLR snapshot repository at the <project> level: <!-- Inform Maven of the ANTLR snapshot repository, which it will need to consult to get the latest snapshot build of the runtime and tool if it was not built and installed locally. --> <repositories> <!-- This is the ANTLR repository. --> <repository> <id>antlr-snapshot</id> <name>ANTLR Testing Snapshot Repository</name> <url>http://antlr.org/antlr-snapshot</url> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> </repositories> 2) Change the version number of the antlr3-maven-plugin to <version>3.1.4-SNAPSHOT</version> - - - - - - Finally today, I have corrected the build of the source code collection jars. You can always find the latest executable jar of ANTLR (java -jar xxx.jar t.g) and the latest buildable source code at this permalink: http://antlr.org/hudson/job/ANTLR_Tool_Daily/lastSuccessfulBuild/org.antlr$antlr-master/ Similarly these artifacts are copied in to: http://antlr.org/download Jim --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "il-antlr-interest" group. To post to this group, send email to il-antlr-interest@googlegroups.com To unsubscribe from this group, send email to il-antlr-interest+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/il-antlr-interest?hl=en -~----------~----~----~----~------~----~------~--~--- |
List: http://www.antlr.org/mailman/listinfo/antlr-interest Unsubscribe: http://www.antlr.org/mailman/options/antlr-interest/your-email-address