2025-03-15 21:59:16 +01: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>
|
|
|
|
<parent>
|
|
|
|
<groupId>nu.zoom.tapir</groupId>
|
|
|
|
<artifactId>tapir-generator</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>parser</artifactId>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>javacc-maven-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<!--
|
|
|
|
<id>javacc</id>
|
|
|
|
<goals>
|
|
|
|
<goal>javacc</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<lookAhead>2</lookAhead>
|
|
|
|
<isStatic>false</isStatic>
|
|
|
|
<forceLaCheck>true</forceLaCheck>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
-->
|
|
|
|
<execution>
|
|
|
|
<id>jjtree-javacc</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jjtree-javacc</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<isStatic>false</isStatic>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.javacc</groupId>
|
|
|
|
<artifactId>javacc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.picocli</groupId>
|
|
|
|
<artifactId>picocli</artifactId>
|
|
|
|
</dependency>
|
2025-03-16 14:16:16 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
</dependency>
|
2025-03-15 21:59:16 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|