cypher-v5-parser-listener
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.neo4j</groupId> <artifactId>cypher-v5-parser-listener</artifactId> <version>2025.04.0</version> </dependency>
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.neo4j</groupId> <artifactId>cypher-v5-parser-parent</artifactId> <version>2025.04.0</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cypher-v5-parser-listener</artifactId> <packaging>jar</packaging> <name>Cypher 5 ANTLR parser listener</name> <description>Generate optimised parser listener</description> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <scm> <connection>scm:git:git://github.com/neo4j/neo4j.git</connection> <developerConnection>scm:git:git@github.com:neo4j/neo4j.git</developerConnection> <url>https://github.com/neo4j/neo4j</url> </scm> <properties> <moduleName>org.neo4j.cypher.internal.parser</moduleName> </properties> <dependencies> <dependency> <groupId>org.neo4j</groupId> <artifactId>cypher-v5-antlr-parser</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <!-- disable scala-maven-plugin, because we have no scala --> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <executions> <execution> <id>scala-compile</id> <phase>none</phase> </execution> </executions> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <profiles> <!-- Profile to generate the lexer and parser, update license headers and format the code with spotless --> <profile> <id>generate-antlr</id> <activation> <property> <name>generate.antlr</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.neo4j</groupId> <artifactId>antlr-parser-listener-maven-plugin</artifactId> <version>${project.version}</version> <executions> <execution> <id>generate-antlr-listener</id> <goals> <goal>generate-antlr-listener</goal> </goals> </execution> </executions> <configuration> <outputDirectory>${basedir}/src/main/java/</outputDirectory> <parserClass>org.neo4j.cypher.internal.parser.v5.Cypher5Parser</parserClass> <listenerName>AbstractCypher5AstBuilder</listenerName> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <id>check-licenses</id> <goals> <goal>format</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <executions> <execution> <id>format-code</id> <goals> <goal>apply</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>