apitomy-codegen-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.apitomy</groupId>
<artifactId>apitomy-codegen-maven-plugin</artifactId>
<version>1.3.0</version>
</dependency><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>io.apitomy</groupId>
<artifactId>apitomy-codegen-parent</artifactId>
<version>1.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>apitomy-codegen-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>apitomy-codegen-cli</name>
<properties>
<maven.version>3.9.15</maven.version>
<maven-annotations.version>3.15.2</maven-annotations.version>
</properties>
<dependencies>
<!-- Apitomy Codegen -->
<dependency>
<groupId>io.apitomy</groupId>
<artifactId>apitomy-codegen</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Maven -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven-annotations.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.15.2</version>
</plugin>
</plugins>
</build>
</project>