ksp-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.mcarle</groupId>
<artifactId>ksp-maven-plugin</artifactId>
<version>2.3.5-1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.mcarle</groupId>
<artifactId>ksp-maven-plugin</artifactId>
<version>2.3.5-1</version>
<packaging>maven-plugin</packaging>
<name>KSP Maven Plugin</name>
<description>This plugin enables you to execute KSP and is run independently of the Kotlin Compiler</description>
<url>https://github.com/mcarleio/ksp-maven-plugin</url>
<inceptionYear>2025</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>https://raw.githubusercontent.com/mcarleio/ksp-maven-plugin/refs/heads/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Marcel Carlé</name>
<email>hi-github@mcarle.io</email>
<url>https://github.com/mcarleio</url>
</developer>
</developers>
<scm>
<url>https://github.com/mcarleio/ksp-maven-plugin</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/mcarleio/ksp-maven-plugin/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>com.google.devtools.ksp</groupId>
<artifactId>symbol-processing-aa</artifactId>
<version>2.3.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.devtools.ksp</groupId>
<artifactId>symbol-processing-api</artifactId>
<version>2.3.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.devtools.ksp</groupId>
<artifactId>symbol-processing-common-deps</artifactId>
<version>2.3.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.6.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.9.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.15.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>