frumle-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.frumle</groupId>
<artifactId>frumle-maven-plugin</artifactId>
<version>1.3.0</version>
</dependency><?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>com.frumle</groupId>
<artifactId>frumle-parent</artifactId>
<version>1.3.0</version>
</parent>
<artifactId>frumle-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Frumle Maven Plugin</name>
<description>Frumle - AI-powered API documentation for Java projects</description>
<dependencies>
<dependency>
<groupId>com.frumle</groupId>
<artifactId>frumle-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Declared explicitly so IDEs resolve Gson (also used transitively via frumle-core) -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.6</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.9.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.9.6</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<goalPrefix>frumle</goalPrefix>
</configuration>
</plugin>
</plugins>
</build>
</project>