neo4j-cypher-javacc-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher-javacc-parser</artifactId>
<version>5.26.26</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-javacc-parser-parent</artifactId>
<version>5.26.26</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>neo4j-cypher-javacc-parser</artifactId>
<packaging>jar</packaging>
<name>Neo4j - Cypher JavaCC based parser</name>
<description>Cypher parser using JavaCC</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.javacc</moduleName>
</properties>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<RestrictImports>
<excludedSourceRoot>src/main/java/org/neo4j/cypher/internal/parser/javacc/org/neo4j/cypher/internal/parser/javacc/</excludedSourceRoot>
</RestrictImports>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<configuration>
<java>
<toggleOffOn/>
<excludes>
<!-- JavaCC generated files -->
<exclude>src/main/java/org/neo4j/cypher/internal/parser/javacc/org/neo4j/cypher/internal/parser/javacc/*.java</exclude>
</excludes>
</java>
</configuration>
</plugin>
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-javacc-maven-plugin</artifactId>
<version>4.1.5</version>
<configuration>
<jdkVersion>1.8</jdkVersion>
<sourceDirectory>src/main/java/org/neo4j/cypher/internal/parser/javacc</sourceDirectory>
<outputDirectory>src/main/java/org/neo4j/cypher/internal/parser/javacc</outputDirectory>
</configuration>
<executions>
<execution>
<id>jjc1</id>
<phase>generate-sources</phase>
<goals>
<goal>javacc</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-gql-status</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>cypher-ast-factory</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
</dependencies>
</project>