antlr4-intellij-adaptor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-intellij-adaptor</artifactId> <version>0.1</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>org.antlr</groupId> <artifactId>antlr4-intellij-adaptor</artifactId> <version>0.1</version> <name>ANTLRV4 adaptor for IntelliJ-based IDEs</name> <description>Support for using ANTLR-generated parsers/lexers in IntelliJ-based IDE plug-ins.</description> <url>https://github.com/antlr/antlr4-intellij-adaptor</url> <licenses> <license> <name>BSD 2-Clause "Simplified" License</name> <url>https://github.com/antlr/antlr4-intellij-adaptor/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <id>parrt</id> <name>Terence Parr</name> <email>parrt@cs.usfca.edu</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/antlr/antlr4-intellij-adaptor.git</connection> <developerConnection>scm:git:git@github.com:antlr/antlr4-intellij-adaptor.git</developerConnection> <url>https://github.com/antlr/antlr4-intellij-adaptor</url> </scm> <dependencies> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>4.7.2</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>icu4j</artifactId> <groupId>com.ibm.icu</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>