Skip to content

Commit 2457591

Browse files
authored
Merge pull request antlr#1642 from teverett/master
add apt to base build
2 parents 1331638 + 666732a commit 2457591

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

apt/pom.xml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<artifactId>apt</artifactId>
5+
<packaging>jar</packaging>
6+
<name>apt grammar</name>
7+
<parent>
8+
<groupId>org.antlr.grammars</groupId>
9+
<artifactId>grammarsv4</artifactId>
10+
<version>1.0-SNAPSHOT</version>
11+
<relativePath>../pom.xml</relativePath>
12+
</parent>
13+
<build>
14+
<plugins>
15+
<plugin>
16+
<groupId>org.antlr</groupId>
17+
<artifactId>antlr4-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>apt.g4</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr4</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<plugin>
34+
<groupId>com.khubla.antlr</groupId>
35+
<artifactId>antlr4test-maven-plugin</artifactId>
36+
<version>${antlr4test-maven-plugin.version}</version>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>record</entryPoint>
41+
<grammarName>apt</grammarName>
42+
<packageName></packageName>
43+
<exampleFiles>examples/</exampleFiles>
44+
</configuration>
45+
<executions>
46+
<execution>
47+
<goals>
48+
<goal>test</goal>
49+
</goals>
50+
</execution>
51+
</executions>
52+
</plugin>
53+
</plugins>
54+
</build>
55+
</project>

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
<module>alpaca</module>
7272
<module>antlr</module>
7373
<module>apex</module>
74+
<module>apt</module>
7475
<module>arithmetic</module>
7576
<module>asm</module>
7677
<module>asn</module>

0 commit comments

Comments
 (0)