antlr-kotlin-target
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.strumenta.antlr-kotlin</groupId> <artifactId>antlr-kotlin-target</artifactId> <version>0.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>com.strumenta.antlr-kotlin</groupId> <artifactId>antlr-kotlin-target</artifactId> <version>0.0.4</version> <name>ANTLR Kotlin Target</name> <description>Support for Kotlin as a target language for ANTLR</description> <url>https://github.com/Strumenta/antlr-kotlin</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>ftomassetti</id> <name>Federico Tomassetti</name> <email>federico@strumenta.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/Strumenta/antlr-kotlin.git</connection> <developerConnection>scm:git:ssh://github.com:Strumenta/antlr-kotlin.git</developerConnection> <url>http://github.com/simpligility/ossrh-demo/tree/master</url> </scm> <dependencies> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4</artifactId> <version>4.7.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.3.21</version> <scope>runtime</scope> </dependency> </dependencies> </project>