neo4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>neo4j</artifactId> <version>2.7.0-RC1</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>com.buschmais.jqassistant.core</groupId> <artifactId>parent</artifactId> <version>2.7.0-RC1</version> </parent> <artifactId>neo4j</artifactId> <name>jQAssistant Embedded Neo4j</name> <url>https://jqassistant.org/</url> <description> Provides the integration of an embedded Neo4j database and server. </description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>attach-asciidoc</id> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>shared</artifactId> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j</artifactId> </dependency> <dependency> <groupId>org.neo4j.client</groupId> <artifactId>neo4j-browser</artifactId> </dependency> <dependency> <groupId>com.buschmais.xo</groupId> <artifactId>xo.neo4j.embedded</artifactId> <exclusions> <exclusion> <groupId>org.neo4j</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.takes</groupId> <artifactId>takes</artifactId> </dependency> <dependency> <groupId>io.smallrye.config</groupId> <artifactId>smallrye-config-core</artifactId> </dependency> <!-- Lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Test --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> </dependencies> </project>