janusgraph-doc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.janusgraph.commit</groupId> <artifactId>janusgraph-doc</artifactId> <version>1.0.0-20230104-145008.2a5dc2a</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.janusgraph.commit</groupId> <artifactId>janusgraph</artifactId> <version>1.0.0-20230104-145008.2a5dc2a</version> <relativePath>../pom.xml</relativePath> </parent> <packaging>pom</packaging> <artifactId>janusgraph-doc</artifactId> <name>JanusGraph-Doc: Manual for JanusGraph</name> <url>https://janusgraph.org</url> <properties> <top.level.basedir>${project.basedir}/..</top.level.basedir> <doc.dir>${project.parent.basedir}/docs</doc.dir> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>janusgraph-all</artifactId> <version>${project.version}</version> <type>pom</type> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>janusgraph-solr</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <artifactId>solr-core</artifactId> <groupId>org.apache.solr</groupId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <!-- Filter the files in src/release during the process-resources phase. Disable default resource goal bindings because we have no main or test resources. --> <plugin> <artifactId>maven-resources-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>default-resources</id> <phase>none</phase> </execution> <execution> <id>default-testResources</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>generate-janusgraph-config-table</id> <phase>generate-resources</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.janusgraph.util.system.ConfigurationPrinter</mainClass> <arguments> <argument>org.janusgraph.graphdb.configuration.GraphDatabaseConfiguration.ROOT_NS</argument> <argument>${doc.dir}/configs/janusgraph-cfg.md</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </project>