鉴于Maven项目由:
生成mvn archetype:generate -B -DarchetypeGroupId=org.antlr \
-DarchetypeArtifactId=antlr3-maven-archetype \
-DarchetypeVersion=3.2 \
-DgroupId=com.yourcompany \
-DartifactId=yourproject \
-Dversion=yourversion \
-Dpackage=com.yourcompany.package.path
cf:http://www.antlr.org/wiki/display/ANTLR3/Building+ANTLR+Projects+with+Maven
有这样的架构:
.
|-- pom.xml
`-- src
`-- main
|-- antlr3
| |-- com
| | `-- yourcompany
| | `-- package
| | `-- path
| | |-- TLexer.g
| | |-- TParser.g
| | `-- TTree.g
| `-- imports
| `-- Ruleb.g
`-- java
`-- com
`-- yourcompany
`-- package
`-- path
|-- AbstractTLexer.java
|-- AbstractTParser.java
`-- Main.java
将maven-gunit-plugin添加到pom:
<plugin>
<groupId>org.antlr</groupId>
<artifactId>maven-gunit-plugin</artifactId>
<version>3.2</version>
<executions>
<execution>
<id>maven-gunit-plugin</id>
<phase>test</phase>
<goals>
<goal>gunit</goal>
</goals>
</execution>
</executions>
</plugin>
GUNIT文件应该在哪里?
更新(已经):
我不是在谈论Junit集成(但是,如果这是唯一的方法,我一定会选择这个)。
答案 0 :(得分:1)
来源的相关部分告诉我它使用$ {basedir} / src / test / gunit。对于文件,它使用私有变量includes或* / .testsuite如果包含未定义。似乎maven-gunit-plugin无法处理与3.2的JUnit集成。