neo4j-standalone-commercial
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.neo4j.assembly</groupId> <artifactId>neo4j-standalone-commercial</artifactId> <version>3.4.0-alpha08</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.neo4j</groupId> <artifactId>commercial-parent</artifactId> <version>3.4.0-alpha08</version> <relativePath>../..</relativePath> </parent> <groupId>org.neo4j.assembly</groupId> <artifactId>neo4j-standalone-commercial</artifactId> <packaging>pom</packaging> <name>Neo4j - Server Assembler</name> <version>3.4.0-alpha08</version> <description> This project assembles the Neo4j stand-alone distribution, pulling together all the deliverable artifacts and packaging them into a downloadable installer. </description> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <scm> <connection>scm:git:git://github.com/neo4j/neo4j.git</connection> <developerConnection>scm:git:git@github.com:neo4j/neo4j.git</developerConnection> <url>https://github.com/neo4j/neo4j</url> </scm> <modules> <module>standalone-enterprise</module> </modules> <properties> <!-- other filter properties --> <neo4j.version>${project.version}</neo4j.version> <!-- conf/neo4j.conf filter properties --> <default.http.port>7474</default.http.port> <default.https.port>7473</default.https.port> <org.neo4j.webservice.packages>org.neo4j.rest.web</org.neo4j.webservice.packages> <!-- Runtime properties. These are used to bootstrap the server. All other configuration should happen through a configuration file. Each of these should have a sensible default, so that the server can operate without them defined. --> <neo4j.home>${project.build.directory}/neo4j</neo4j.home> <neo4j.confdir>${neo4j.home}/conf</neo4j.confdir> <!-- needed? --> <neo4j.datadir>${neo4j.home}/data</neo4j.datadir> <!-- needed? --> <neo4j.logdir>${neo4j.datadir}/log</neo4j.logdir> <!-- needed? --> <skip.shell.tests>false</skip.shell.tests> </properties> <licenses> <license> <name>Neo4j Commercial license</name> <comments> Copyright (c) 2002-2018 "Neo Technology," Network Engine for Objects in Lund AB [http://neotechnology.com] This file is a commercial add-on to Neo4j Enterprise Edition. </comments> </license> </licenses> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.5</version> <configuration> <header>license-header.txt</header> <properties> <owner>Neo Technology,</owner> <year>${project.inceptionYear}</year> </properties> <mapping> <ps1>SCRIPT_STYLE</ps1> <psm1>SCRIPT_STYLE</psm1> <psd1>SCRIPT_STYLE</psd1> <bat>BATCH</bat> </mapping> <includes> <include>src/main/*</include> </includes> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <inherited>false</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>copy-shell</id> <phase>process-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <ant antfile="${project.basedir}/build.xml" inheritRefs="true"/> </target> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>get-javadoc-sources</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>attach-test-jar</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> <executions> <execution> <id>upload-to-dist-server</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>shell-script-tests</id> <phase>test</phase> <goals> <goal>exec</goal> </goals> <inherited>false</inherited> <configuration> <skip>${skip.shell.tests}</skip> <executable>./run-tests.sh</executable> <workingDirectory>src/tests/shell-scripts</workingDirectory> <arguments> <argument>--verbose</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>neo4j-release-repository</id> <name>Neo4j Maven 2 release repository</name> <url>http://m2.neo4j.org/content/repositories/releases</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>neo4j-snapshot-repository</id> <name>Neo4j Maven 2 snapshot repository</name> <url>http://m2.neo4j.org/content/repositories/snapshots</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> </repositories> <dependencies> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-import-tool</artifactId> <version>${project.version}</version> </dependency> </dependencies> <profiles> <profile> <id>disable-shell-script-tests</id> <activation> <os> <family>windows</family> </os> </activation> <properties> <skip.shell.tests>true</skip.shell.tests> </properties> </profile> <profile> <id>skip-shell-script-tests</id> <activation> <property> <name>skipTests</name> </property> </activation> <properties> <skip.shell.tests>true</skip.shell.tests> </properties> </profile> </profiles> </project>