jqassistant-commandline-neo4jv4
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.buschmais.jqassistant.cli</groupId>
<artifactId>jqassistant-commandline-neo4jv4</artifactId>
<version>2.9.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.cli</groupId>
<artifactId>parent</artifactId>
<version>2.9.0-RC1</version>
</parent>
<artifactId>jqassistant-commandline-neo4jv4</artifactId>
<name>jQAssistant Commandline Neo4j 4.x Distribution</name>
<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathLayoutType>custom</classpathLayoutType>
<customClasspathLayout>
$${artifact.groupId}-$${artifact.artifactId}-$${artifact.version}$${dashClassifier?}.$${artifact.extension}
</customClasspathLayout>
<mainClass>com.buschmais.jqassistant.commandline.Main</mainClass>
</manifest>
<manifestEntries>
<!-- Required for loading Neo4j plugins with embedded store -->
<Launcher-Agent-Class>com.buschmais.xo.neo4j.embedded.api.InstrumentationProvider</Launcher-Agent-Class>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>attach-distribution</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>distribution</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.buschmais.jqassistant.cli</groupId>
<artifactId>assembly</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>${neo4j_4x.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.buschmais.jqassistant.cli</groupId>
<artifactId>application</artifactId>
</dependency>
<dependency>
<groupId>com.buschmais.jqassistant.cli</groupId>
<artifactId>application</artifactId>
<type>zip</type>
<classifier>bin</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>