# docs-maven-plugin **Repository Path**: mirrors_neo4j/docs-maven-plugin ## Basic Information - **Project Name**: docs-maven-plugin - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2023-08-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README = Maven plugin to package docs = == Add it to the project == ---- docs-maven-plugin org.neo4j.build.plugins 1 ---- TIP: Make sure to add the configuration to the plugin element and not to an execution, unless you want Maven builds and CLI invocations of the plugin to behave differently! === Filtering === The filtering is the usual Maven filtering being applied. Image files are not filtered. To turn filtering on, set the +filter+ property to +true+. Note that this can't be set on directory level. == Use it from the command line == NOTE: If it's not added to the project configuration, you need to invoke it like for example `mvn org.neo4j.build.plugins:docs-maven-plugin:1:assemble` === Build docs without building the project === `mvn docs:assemble` * creates the docs.jar * attaches the created jar to the project * mostly interesting for use in the pom.xml * mvn2 and mvn3 === Build and install docs without building the project === `mvn docs:install` * creates and then installs the docs.jar * mvn3 only * CLI only `mvn docs:install -Dtest=DocsTest` * executes test, then assembles and installs docs * otherwise, like the example above