Skip to content

Commit 196aff5

Browse files
committed
more grammars
1 parent 528adca commit 196aff5

File tree

26 files changed

+1368
-0
lines changed

26 files changed

+1368
-0
lines changed

ANSI-C/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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>ansic</artifactId>
5+
<packaging>jar</packaging>
6+
<name>ANTLR ANSI-C grammar</name>
7+
<parent>
8+
<groupId>com.antlr.grammarsv3</groupId>
9+
<artifactId>grammarsv3</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>antlr3-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>C.g</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<!--
34+
<plugin>
35+
<groupId>org.antlr</groupId>
36+
<artifactId>antlr3test-maven-plugin</artifactId>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>file</entryPoint>
41+
<grammarName>csv</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+
-->
54+
</plugins>
55+
</build>
56+
</project>

Antlrv3/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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>antlrv3</artifactId>
5+
<packaging>jar</packaging>
6+
<name>ANTLR ANTLR3 grammar</name>
7+
<parent>
8+
<groupId>com.antlr.grammarsv3</groupId>
9+
<artifactId>grammarsv3</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>antlr3-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>ANTLRv3.g</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<!--
34+
<plugin>
35+
<groupId>org.antlr</groupId>
36+
<artifactId>antlr3test-maven-plugin</artifactId>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>file</entryPoint>
41+
<grammarName>csv</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+
-->
54+
</plugins>
55+
</build>
56+
</project>

CUDAPTX/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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>cudaptx</artifactId>
5+
<packaging>jar</packaging>
6+
<name>ANTLR CUDAPTX grammar</name>
7+
<parent>
8+
<groupId>com.antlr.grammarsv3</groupId>
9+
<artifactId>grammarsv3</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>antlr3-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>Ptx.g</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<!--
34+
<plugin>
35+
<groupId>org.antlr</groupId>
36+
<artifactId>antlr3test-maven-plugin</artifactId>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>file</entryPoint>
41+
<grammarName>csv</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+
-->
54+
</plugins>
55+
</build>
56+
</project>

ECMAScript/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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>ECMAScript</artifactId>
5+
<packaging>jar</packaging>
6+
<name>ANTLR ECMAScript grammar</name>
7+
<parent>
8+
<groupId>com.antlr.grammarsv3</groupId>
9+
<artifactId>grammarsv3</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>antlr3-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>JavaScript.g</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<!--
34+
<plugin>
35+
<groupId>org.antlr</groupId>
36+
<artifactId>antlr3test-maven-plugin</artifactId>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>file</entryPoint>
41+
<grammarName>csv</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+
-->
54+
</plugins>
55+
</build>
56+
</project>

FirstOrderLogic/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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>fol</artifactId>
5+
<packaging>jar</packaging>
6+
<name>ANTLR First Order Logic grammar</name>
7+
<parent>
8+
<groupId>com.antlr.grammarsv3</groupId>
9+
<artifactId>grammarsv3</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>antlr3-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>FOL.g</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<!--
34+
<plugin>
35+
<groupId>org.antlr</groupId>
36+
<artifactId>antlr3test-maven-plugin</artifactId>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>file</entryPoint>
41+
<grammarName>csv</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+
-->
54+
</plugins>
55+
</build>
56+
</project>

FreeMPS/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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>freemps</artifactId>
5+
<packaging>jar</packaging>
6+
<name>ANTLR FreeMPS grammar</name>
7+
<parent>
8+
<groupId>com.antlr.grammarsv3</groupId>
9+
<artifactId>grammarsv3</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>antlr3-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>FreeMPS.g</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<!--
34+
<plugin>
35+
<groupId>org.antlr</groupId>
36+
<artifactId>antlr3test-maven-plugin</artifactId>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>file</entryPoint>
41+
<grammarName>csv</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+
-->
54+
</plugins>
55+
</build>
56+
</project>

Java1.6/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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>java1.6</artifactId>
5+
<packaging>jar</packaging>
6+
<name>ANTLR Java 1.6 grammar</name>
7+
<parent>
8+
<groupId>com.antlr.grammarsv3</groupId>
9+
<artifactId>grammarsv3</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>antlr3-maven-plugin</artifactId>
18+
<version>${antlr.version}</version>
19+
<configuration>
20+
<sourceDirectory>${basedir}</sourceDirectory>
21+
<grammars>Java.g</grammars>
22+
<visitor>true</visitor>
23+
<listener>true</listener>
24+
</configuration>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>antlr</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
<!--
34+
<plugin>
35+
<groupId>org.antlr</groupId>
36+
<artifactId>antlr3test-maven-plugin</artifactId>
37+
<configuration>
38+
<verbose>false</verbose>
39+
<showTree>false</showTree>
40+
<entryPoint>file</entryPoint>
41+
<grammarName>csv</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+
-->
54+
</plugins>
55+
</build>
56+
</project>

0 commit comments

Comments
 (0)