linguine-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.cleverlance.linguine</groupId> <artifactId>linguine-generator</artifactId> <version>0.1.0</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.cleverlance.linguine</groupId> <artifactId>linguine-generator</artifactId> <version>0.1.0</version> <name>Linguine</name> <description>Simplifies the localization process in Kotlin projects.</description> <url>https://github.com/cleverlance/linguine/</url> <inceptionYear>2024</inceptionYear> <licenses> <license> <name>The MIT License</name> <url>https://github.com/cleverlance/linguine/blob/main/license.md</url> <distribution>https://github.com/cleverlance/linguine/blob/main/license.md</distribution> </license> </licenses> <developers> <developer> <id>RealDanie1</id> <name>Daniel Pecuch</name> <url>https://github.com/RealDanie1</url> </developer> <developer> <id>RadekKuzel</id> <name>Radek Kůžel</name> <url>https://github.com/RadekKuzel</url> </developer> <developer> <id>JiriHromek</id> <name>Jiří Hromek</name> <url>https://github.com/JiriHromek</url> </developer> <developer> <id>gerak-cz</id> <name>Bořek Leikep</name> <url>https://github.com/gerak-cz</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/cleverlance/linguine.git</connection> <developerConnection>scm:git:ssh://git@github.com:cleverlance/linguine.git</developerConnection> <url>https://github.com/cleverlance/linguine/</url> </scm> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-gradle-plugin</artifactId> <version>1.9.20</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.20</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>kotlinpoet-jvm</artifactId> <version>1.16.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>