forked from neo4j/neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved server plugintest to a separate module.
This means that they can be part of the regular build now, and don't have to be run separately.
- Loading branch information
Showing
15 changed files
with
2,986 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
Neo4j | ||
Copyright © 2002-2013 Network Engine for Objects in Lund AB (referred to | ||
in this notice as "Neo Technology") | ||
[http://neotechnology.com] | ||
|
||
This product includes software ("Software") developed by Neo Technology. | ||
|
||
The copyright in the bundled Neo4j graph database (including the | ||
Software) is owned by Neo Technology. The Software developed and owned | ||
by Neo Technology is licensed under the GNU GENERAL PUBLIC LICENSE | ||
Version 3 (http://www.fsf.org/licensing/licenses/gpl-3.0.html) ("GPL") | ||
to all third parties and that license, as required by the GPL, is | ||
included in the LICENSE.txt file. | ||
|
||
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 Neo Technology or one of its | ||
affiliates (each, a "Commercial Agreement"), the terms of the license in | ||
such Commercial Agreement will supersede the GPL and you may use the | ||
software solely pursuant to the terms of the relevant Commercial | ||
Agreement. | ||
|
||
Full license texts are found in LICENSES.txt. | ||
|
||
Third-party licenses | ||
-------------------- | ||
|
||
ASM License | ||
ASM Core | ||
|
||
Apache Software License, Version 2.0 | ||
Apache ServiceMix Bundles: jline-0.9.94 | ||
Commons BeanUtils | ||
Commons BeanUtils Core | ||
Commons Collections | ||
Commons Configuration | ||
Commons Digester | ||
Commons IO | ||
Commons Lang | ||
Commons Logging | ||
ConcurrentLinkedHashMap | ||
Data Mapper for Jackson | ||
Jackson | ||
JAX-RS provider for JSON content type | ||
Jetty Server | ||
Jetty Utilities | ||
JTA 1.1 | ||
Lucene Core | ||
RRD4J | ||
Servlet Specification API | ||
|
||
BSD - Scala License | ||
Scala Library | ||
|
||
BSD License | ||
Janino | ||
|
||
Bouncy Castle License | ||
Legion of the Bouncy Castle Java Cryptography APIs | ||
|
||
Common Development and Distribution License Version 1.1 | ||
jersey-core | ||
jersey-multipart | ||
jersey-server | ||
jsr311-api | ||
MIME streaming extension | ||
|
||
Eclipse Public License, Version 1.0 | ||
Jetty Server | ||
Jetty Utilities | ||
Logback Access Module | ||
Logback Classic Module | ||
Logback Core Module | ||
|
||
GNU General Public License, version 2 or later | ||
Mozilla Rhino | ||
|
||
GNU General Public License, version 2 with the Classpath Exception | ||
jersey-core | ||
jersey-multipart | ||
jersey-server | ||
jsr311-api | ||
MIME streaming extension | ||
|
||
GNU Lesser General Public License, Version 2.1 | ||
JAX-RS provider for JSON content type | ||
Logback Access Module | ||
Logback Classic Module | ||
Logback Core Module | ||
|
||
MIT License | ||
SLF4J API Module | ||
|
||
Mozilla Public License, Version 1.1 | ||
Mozilla Rhino | ||
|
||
Dependencies with multiple licenses | ||
----------------------------------- | ||
|
||
JAX-RS provider for JSON content type | ||
Apache Software License, Version 2.0 | ||
GNU Lesser General Public License, Version 2.1 | ||
|
||
Jetty Server | ||
Apache Software License, Version 2.0 | ||
Eclipse Public License, Version 1.0 | ||
|
||
Jetty Utilities | ||
Apache Software License, Version 2.0 | ||
Eclipse Public License, Version 1.0 | ||
|
||
Logback Access Module | ||
Eclipse Public License, Version 1.0 | ||
GNU Lesser General Public License, Version 2.1 | ||
|
||
Logback Classic Module | ||
Eclipse Public License, Version 1.0 | ||
GNU Lesser General Public License, Version 2.1 | ||
|
||
Logback Core Module | ||
Eclipse Public License, Version 1.0 | ||
GNU Lesser General Public License, Version 2.1 | ||
|
||
MIME streaming extension | ||
Common Development and Distribution License Version 1.1 | ||
GNU General Public License, version 2 with the Classpath Exception | ||
|
||
Mozilla Rhino | ||
GNU General Public License, version 2 or later | ||
Mozilla Public License, Version 1.1 | ||
|
||
jersey-core | ||
Common Development and Distribution License Version 1.1 | ||
GNU General Public License, version 2 with the Classpath Exception | ||
|
||
jersey-multipart | ||
Common Development and Distribution License Version 1.1 | ||
GNU General Public License, version 2 with the Classpath Exception | ||
|
||
jersey-server | ||
Common Development and Distribution License Version 1.1 | ||
GNU General Public License, version 2 with the Classpath Exception | ||
|
||
jsr311-api | ||
Common Development and Distribution License Version 1.1 | ||
GNU General Public License, version 2 with the Classpath Exception | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<?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.neo4j</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>1.9.3-SNAPSHOT</version> | ||
<relativePath>../..</relativePath> | ||
</parent> | ||
|
||
<groupId>org.neo4j</groupId> | ||
<artifactId>server-plugin-test</artifactId> | ||
<version>1.9.3-SNAPSHOT</version> | ||
<name>Neo4j - Server Plugin Tests</name> | ||
<description>Tests the server plugin registration functionality.</description> | ||
|
||
<properties> | ||
<license-text.header>GPL-3-header.txt</license-text.header> | ||
<docs-plugin.skip>true</docs-plugin.skip> | ||
<licensing.prepend.text>notice-gpl-prefix.txt</licensing.prepend.text> | ||
</properties> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<scm> | ||
<url>https://github.com/neo4j/neo4j/tree/master/community/server-plugin-test</url> | ||
</scm> | ||
|
||
<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 Network Engine for | ||
Objects in Lund AB (referred to in this notice as "Neo Technology") 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 Neo Technology 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> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.neo4j.app</groupId> | ||
<artifactId>neo4j-server</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest-all</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-client</artifactId> | ||
<version>1.9</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.neo4j</groupId> | ||
<artifactId>neo4j-kernel</artifactId> | ||
<version>${project.version}</version> | ||
<type>test-jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.neo4j.app</groupId> | ||
<artifactId>neo4j-server</artifactId> | ||
<version>${project.version}</version> | ||
<type>test-jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.