kmemoize.compiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.ambco-iscte</groupId>
<artifactId>kmemoize.compiler</artifactId>
<version>0.4.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.ambco-iscte</groupId>
<artifactId>kmemoize.compiler</artifactId>
<version>0.4.2</version>
<name>KMemoize Compiler Plugin</name>
<description>An annotation-based Kotlin compiler plugin for function memoization.</description>
<url>https://github.com/ambco-iscte/kmemoize</url>
<inceptionYear>2026</inceptionYear>
<licenses>
<license>
<name>GNU General Public License, Version 3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0.en.html#license-text</url>
<distribution>https://www.gnu.org/licenses/gpl-3.0.en.html#license-text</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ambco</id>
<name>Afonso B. Caniço</name>
<email>ambco@iscte-iul.pt</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ambco-iscte/kmemoize.git</connection>
<developerConnection>scm:git:ssh://git@github.com/ambco-iscte/kmemoize.git</developerConnection>
<url>https://github.com/ambco-iscte/kmemoize</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-compiler-embeddable</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>2.2.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.ambco-iscte</groupId>
<artifactId>kmemoize.api</artifactId>
<version>0.4.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-compiler-embeddable</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.1.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>