ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
## 1.1 安装 如果使用maven,请使用如下坐标 ```xml <dependency> <groupId>com.ibeetl</groupId> <artifactId>beetl</artifactId> <version>3.15.12.RELEASE</version> </dependency> ``` 最新版本可以从 [https://search.maven.org/](https://search.maven.org/) 中查询到 有时候,你的系统别的库还使用了特定的Antlr版本,你不想使用beetl自带的antlr,那可以artifactId可以使用如下版本 | antlr 版本 | Beetl | | ---------- | ---------------------------------------- | | 4.5 | <artifactId>beetl-antlr4.5</artifactId> | | 4.6 | <artifactId>beetl-antlr4.5</artifactId> | | 4.7 | <artifactId>beetl</artifactId> | | 4.8 | <artifactId>beetl</artifactId> | | 4.9 | <artifactId>beetl</artifactId> | | 4.10 | <artifactId>beetl</artifactId> | | 4.11 | <artifactId>beetl-antlr4.11</artifactId> | | 4.12 | <artifactId>beetl-antlr4.11</artifactId> | ```xml <dependency> <groupId>com.ibeetl</groupId> <artifactId>beetl-antlr4.11</artifactId> <version>3.15.0.RELEASE</version> <exclusions> <!--排除beetl带的antlr4.11 --> <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> </exclusion> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>4.12.0</version> <scope>compile</scope> </dependency> ```