Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
128 lines
4.3 KiB
XML
128 lines
4.3 KiB
XML
<?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>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-shell</artifactId>
|
|
<version>3.4.18</version>
|
|
|
|
<name>Neo4j - Generic shell</name>
|
|
<description>A generic command shell with a client and server part.</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>
|
|
|
|
<properties>
|
|
<jline.groupId>jline</jline.groupId>
|
|
<jline.artifactId>jline</jline.artifactId>
|
|
<jline.version>2.12</jline.version>
|
|
<jline.main.version>2.12</jline.main.version>
|
|
<license-text.header>headers/GPL-3-header.txt</license-text.header>
|
|
<licensing.prepend.text>licensing/notice-gpl-prefix.txt</licensing.prepend.text>
|
|
<moduleName>org.neo4j.shell</moduleName>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU General Public License, Version 3</name>
|
|
<url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
|
|
<comments>The software ("Software") developed and owned by Neo4j Sweden AB (referred to in this notice as "Neo4j") is
|
|
licensed under the GNU GENERAL PUBLIC LICENSE Version 3 to all third
|
|
parties and that license is included below.
|
|
|
|
However, if you have executed an End User Software License and Services
|
|
Agreement or an OEM Software License and Support Services Agreement, or
|
|
another commercial license agreement with Neo4j or one of its
|
|
affiliates (each, a "Commercial Agreement"), the terms of the license in
|
|
such Commercial Agreement will supersede the GNU GENERAL PUBLIC LICENSE
|
|
Version 3 and you may use the Software solely pursuant to the terms of
|
|
the relevant Commercial Agreement.
|
|
</comments>
|
|
</license>
|
|
</licenses>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>org.neo4j.shell.StartClient</mainClass>
|
|
<packageName>org.neo4j.shell</packageName>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<Agent-Class>org.neo4j.shell.StartClient</Agent-Class>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<configuration>
|
|
<forkCount>1</forkCount>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-kernel</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-kernel</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-io</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-jmx</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-graph-algo</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-cypher</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${jline.groupId}</groupId>
|
|
<artifactId>${jline.artifactId}</artifactId>
|
|
<version>${jline.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|