2023-06-29 17:36:31 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2023-07-01 14:36:45 +02:00
|
|
|
<groupId>com.github.gabrielsalvador</groupId>
|
2023-06-29 17:36:31 +02:00
|
|
|
<artifactId>controlp5</artifactId>
|
|
|
|
<version>2.2.6</version>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2023-07-03 17:13:06 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<antlr4.version>4.12.0</antlr4.version> <!-- Use the latest ANTLR version as of your current date -->
|
|
|
|
|
2023-06-29 17:36:31 +02:00
|
|
|
</properties>
|
|
|
|
|
2023-06-29 18:20:23 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2023-07-03 17:13:06 +02:00
|
|
|
|
2023-06-29 18:20:23 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-07-09 15:33:50 +02:00
|
|
|
<!--<dependency>
|
2023-06-29 18:20:23 +02:00
|
|
|
<groupId>com.github.micycle1</groupId>
|
|
|
|
<artifactId>processing-core-4</artifactId>
|
|
|
|
<version>4.2</version>
|
2023-07-09 15:33:50 +02:00
|
|
|
</dependency>-->
|
2023-06-29 18:20:23 +02:00
|
|
|
|
2023-07-03 17:13:06 +02:00
|
|
|
|
|
|
|
<!-- ANTLR4 runtime -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
<version>${antlr4.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-06-29 18:20:23 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
2023-07-03 17:13:06 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- ANTLR4 Maven plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
<version>${antlr4.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-06-29 18:20:23 +02:00
|
|
|
|
2023-06-29 17:36:31 +02:00
|
|
|
</project>
|