Skip to content

Commit 3243e41

Browse files
author
Eble
committed
fix pom.xml
1 parent e51f721 commit 3243e41

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -74,20 +74,20 @@
7474
<artifactId>maven-project-info-reports-plugin</artifactId>
7575
<version>3.0.0</version>
7676
</plugin>
77+
<plugin>
78+
<groupId>org.antlr</groupId>
79+
<artifactId>antlr4-maven-plugin</artifactId>
80+
<version>4.3</version>
81+
<executions>
82+
<execution>
83+
<id>antlr</id>
84+
<goals>
85+
<goal>antlr4</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
7790
</plugins>
78-
<plugin>
79-
<groupId>org.antlr</groupId>
80-
<artifactId>antlr4-maven-plugin</artifactId>
81-
<version>4.3</version>
82-
<executions>
83-
<execution>
84-
<id>antlr</id>
85-
<goals>
86-
<goal>antlr4</goal>
87-
</goals>
88-
</execution>
89-
</executions>
90-
</plugin>
9191
</pluginManagement>
9292
</build>
9393
</project>

src/main/antlr4/language.g4

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ expr:
88

99
// mulDivExpr
1010

11-
1211
// sumExpr
1312
expr SUMOP expr #exprSumOp |
1413
NUMBER #exprNumber

0 commit comments

Comments
 (0)