Ignore generated code in Julia module

This commit is contained in:
Juan Martín Sotuyo Dodero 2024-11-15 15:42:35 -03:00
parent c73e5cb8b1
commit 3356dd949d

View File

@ -18,6 +18,28 @@
<artifactId>antlr4-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>antlr-cleanup</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<ant antfile="${antlr4.ant.wrapper}" target="cpd-language">
<property name="lang-name" value="Julia" />
<property name="lang-id" value="julia" />
</ant>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>