Refactoring: make Grammar an abstract class

This commit is contained in:
Alberto Venturini 2021-07-03 15:42:28 +02:00
parent c9c1454f90
commit 301eaaf98d
18 changed files with 395 additions and 163 deletions

View file

@ -26,6 +26,12 @@
</properties>
<dependencies>
<dependency>
<groupId>com.albertoventurini.parsley</groupId>
<artifactId>parsley-grammar</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
@ -37,10 +43,7 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.albertoventurini.parsley</groupId>
<artifactId>parsley-grammar</artifactId>
</dependency>
</dependencies>
<build>