2 Star 9 Fork 2

公子骏 / EasyEL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.02 KB
一键复制 编辑 原始数据 按行查看 历史
公子骏 提交于 2022-11-15 19:11 . fix: old grammar
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.dtflyx</groupId>
<artifactId>easy-el</artifactId>
<name>easy-el</name>
<version>1.0.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.7.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.7</version>
<executions>
<execution>
<id>antlr</id>
<goals>
<goal>antlr4</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
<configuration>
<arguments>
<argument>-visitor</argument>
<argument>-package</argument>
<argument>com.dtflys.easyel.antlr</argument>
</arguments>
<!--指定导入语法和标记文件的位置。-->
<libDirectory>src/main/antlr4</libDirectory>
<!--ANTLR语法文件(*.g4)所在的目录。-->
<sourceDirectory>src/main/antlr4</sourceDirectory>
<!--指定生成Java文件的输出目录。-->
<outputDirectory>src/main/java/com/dtflys/easyel/antlr</outputDirectory>
<!--生成解析树侦听器接口和基类。-->
<listener>true</listener>
<!--生成解析树访问者接口和基类。-->
<visitor>true</visitor>
<treatWarningsAsErrors>true</treatWarningsAsErrors>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>nexus-releases</name>
<url>http://118.178.236.200:8087/nexus/content/repositories/thirdparty</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>nexus-snapshots</name>
<url>http://118.178.236.200:8087/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
Java
1
https://gitee.com/dt_flys/easy-el.git
git@gitee.com:dt_flys/easy-el.git
dt_flys
easy-el
EasyEL
master

搜索帮助