neo4j-cypher-refcard
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.neo4j.doc</groupId> <artifactId>neo4j-cypher-refcard</artifactId> <version>2.3.12</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.neo4j</groupId> <artifactId>parent</artifactId> <version>2.3.12</version> <relativePath>../..</relativePath> </parent> <groupId>org.neo4j.doc</groupId> <artifactId>neo4j-cypher-refcard</artifactId> <version>2.3.12</version> <name>Neo4j - Cypher Reference Card</name> <description>Reference Card for the Neo4j Cypher Query Language.</description> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <packaging>pom</packaging> <properties> <neo4j.version>${project.version}</neo4j.version> <docs.tools>${project.build.directory}/tools</docs.tools> <docs.upstream>${project.build.directory}</docs.upstream> <docs.importdir>${docs.upstream}/docs</docs.importdir> <docs.sources>${project.build.directory}/docs</docs.sources> <docs-plugin.skip>true</docs-plugin.skip> <doctools.version>13</doctools.version> <refcard.version>${project.version}</refcard.version> </properties> <dependencies> <dependency> <groupId>org.neo4j.build.plugins</groupId> <artifactId>neo4j-doctools</artifactId> <version>${doctools.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.neo4j.doc</groupId> <artifactId>neo4j-cypher-refcard-tests</artifactId> <version>${neo4j.version}</version> <scope>provided</scope> <classifier>docs</classifier> </dependency> </dependencies> <build> <outputDirectory>${project.build.directory}/src</outputDirectory> <resources> <resource> <directory>src</directory> <filtering>false</filtering> <includes> <include>*.*</include> <include>**/*.*</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>resources</goal> </goals> </execution> <execution> <id>copy-csv-files</id> <phase>prepare-package</phase> <goals><goal>copy-resources</goal></goals> <configuration> <outputDirectory>${project.build.directory}/html5/csv</outputDirectory> <resources> <resource> <directory>${project.build.directory}/docs/neo4j-cypher-refcard-tests-docs-jar/dev/ql/refcard/csv</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-doctools</id> <phase>package</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <type>jar</type> <includeArtifactIds>neo4j-doctools</includeArtifactIds> <outputDirectory>${docs.tools}</outputDirectory> </configuration> </execution> <execution> <id>unpack-asciidoc-sources</id> <phase>package</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <classifier>docs</classifier> <includeClassifiers>docs</includeClassifiers> <excludeTransitive>true</excludeTransitive> <useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact> <stripVersion>true</stripVersion> <excludes>META-INF,META-INF/**</excludes> <type>jar</type> <outputDirectory>${docs.sources}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>execute-asciidoc-html5</id> <phase>package</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>make</executable> <arguments> <argument>init</argument> <argument>preview</argument> <argument>VERSION=${refcard.version}</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.neo4j.build.plugins</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>attach-docs</id> <phase>none</phase> </execution> <execution> <id>attach-test-jar</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>default-jar-substitute</id> <phase>package</phase> <goals><goal>single</goal></goals> <configuration> <attach>true</attach> <descriptors> <descriptor>assemblies/jar.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>neo-full-build-with-javadoc</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>fullBuild</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>generate-dummy-javadocs-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <excludes> <exclude>**</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>