69 lines
No EOL
2.8 KiB
XML
69 lines
No EOL
2.8 KiB
XML
<?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.dsl</groupId>
|
|
<artifactId>endgen</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>endgen-maven-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
|
|
<properties>
|
|
<maven-plugin-tools.version>3.15.1</maven-plugin-tools.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>3.9.9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- dependency on annotations -->
|
|
<dependency>
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
<version>${maven-plugin-tools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>nu.zoom.dsl</groupId>
|
|
<artifactId>parser</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
<version>${maven-plugin-tools.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>help-mojo</id>
|
|
<goals>
|
|
<goal>helpmojo</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>nu.zoom.dsl</groupId>
|
|
<artifactId>endgen-maven-plugin</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
<executions>
|
|
<execution>
|
|
<configuration>
|
|
<templates>${project.build.sourceDirectory}/main/endgen-templates</templates>
|
|
<output>${project.build.sourceDirectory}/generated-sources/endgen endpoints-output</output>
|
|
<dsl>${project.basedir}/../test01.endpoints</dsl>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project> |