jqassistant-apoc-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jqassistant.contrib.plugin</groupId> <artifactId>jqassistant-apoc-plugin</artifactId> <version>1.10.0</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.jqassistant.contrib.common</groupId> <artifactId>parent</artifactId> <version>1.10.0</version> </parent> <groupId>org.jqassistant.contrib.plugin</groupId> <artifactId>jqassistant-apoc-plugin</artifactId> <version>1.10.0</version> <name>jQAssistant APOC Plugin</name> <description>Provides Neo4j APOC procedures and functions for jQAssistant.</description> <url>https://github.com/jqassistant-contrib/jqassistant-apoc-plugin</url> <developers> <developer> <id>dirk-mahler</id> <name>Dirk Mahler</name> <email>dirk.mahler@buschmais.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:jqassistant-contrib/jqassistant-apoc-plugin.git</connection> <developerConnection>scm:git:git@github.com:jqassistant-contrib/jqassistant-apoc-plugin.git </developerConnection> <url>https://github.com/jqassistant-contrib/jqassistant-apoc-plugin</url> <tag>1.10.0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <org.neo4j.procedure_version>3.5.0.15</org.neo4j.procedure_version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy</id> <phase>package</phase> <goals> <goal>copy</goal> </goals> </execution> </executions> <configuration> <artifactItems> <artifactItem> <groupId>org.neo4j.procedure</groupId> <artifactId>apoc</artifactId> <version>${org.neo4j.procedure_version}</version> <type>jar</type> <destFileName>apoc.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </plugin> <plugin> <groupId>com.buschmais.jqassistant</groupId> <artifactId>jqassistant-maven-plugin</artifactId> <configuration> <scanProperties> <xml.file.include>/META-INF/jqassistant-plugin.xml</xml.file.include> </scanProperties> <scanIncludes> <scanInclude> <path>${project.build.directory}/lib</path> </scanInclude> </scanIncludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.neo4j.procedure</groupId> <artifactId>apoc</artifactId> <version>${org.neo4j.procedure_version}</version> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> <exclusion> <artifactId>jackson-databind</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> </exclusions> </dependency> <dependency> <!-- Required by ExtractEmail --> <groupId>javax.mail</groupId> <artifactId>javax.mail-api</artifactId> <version>1.6.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.17</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>stax-api</artifactId> <groupId>stax</groupId> </exclusion> </exclusions> </dependency> <!-- Test related dependencies --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>store</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>rule</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>analysis</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>plugin</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>store</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>analysis</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.plugin</groupId> <artifactId>common</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.neo4jserver</groupId> <artifactId>neo4jv3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.plugin</groupId> <artifactId>java</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> </dependencies> </project>