fluid-compiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.fluidsonic</groupId>
<artifactId>fluid-compiler</artifactId>
<version>0.9.4</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 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.fluidsonic</groupId>
<artifactId>fluid-compiler</artifactId>
<version>0.9.4</version>
<name>fluid-compiler</name>
<description>Compile Kotlin code and run Kapt annotation processing directly from Kotlin</description>
<url>https://github.com/fluidsonic/fluid-compiler</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://github.com/fluidsonic/fluid-compiler/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>fluidsonic</id>
<name>Marc Knaup</name>
<email>marc@knaup.io</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/fluidsonic/fluid-compiler.git</connection>
<developerConnection>scm:git:git@github.com:fluidsonic/fluid-compiler.git</developerConnection>
<url>https://github.com/fluidsonic/fluid-compiler</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>1.3.31</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.3.31</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.fluidsonic</groupId>
<artifactId>fluid-stdlib-jvm</artifactId>
<version>0.9.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-compiler-embeddable</artifactId>
<version>1.3.31</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-annotation-processing-embeddable</artifactId>
<version>1.3.31</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>