You can download neo4j-2.0.3.jar in this page.
GNU General Public License, Version 3
neo4j-2.0.3.jar file has the following types.
META-INF/LICENSE.txt META-INF/LICENSES.txt META-INF/MANIFEST.MF META-INF/NOTICE.txt META-INF/maven/org.neo4j/neo4j/pom.properties META-INF/maven/org.neo4j/neo4j/pom.xml META-INF/services/org.neo4j.kernel.Version org.neo4j.impl.neo4j.ComponentVersion.class pom.xml
neo4j-2.0.3.pom file content.
<?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>2.0.3</version> <relativePath>../..</relativePath> </parent> <groupId>org.neo4j</groupId> <artifactId>neo4j</artifactId> <version>2.0.3</version> <name>Neo4j Community</name> <packaging>jar</packaging> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <description>A meta package containing the most used Neo4j libraries. Intended use: as a Maven dependency.</description> <properties> <short-name>neo4j</short-name> <version-package>impl.neo4j</version-package> <bundle.namespace>org.neo4j</bundle.namespace> <license-text.header>GPL-3-header.txt</license-text.header> <javadoc.skip>false</javadoc.skip> <docs.url>http://docs.neo4j.org/chunked/${project.version}/</docs.url> <licensing.prepend.text>notice-gpl-prefix.txt</licensing.prepend.text> </properties> <scm> <url>https://github.com/neo4j/neo4j/tree/master/community/neo4j</url> </scm> <dependencies> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-lucene-index</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-udc</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-graph-matching</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-cypher</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-jmx</artifactId> <version>${project.version}</version> </dependency> <!-- For the tests specified by this package --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <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> </dependencies> <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> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-filtered-pom</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/extra-resources</outputDirectory> <resources> <resource> <directory>src/main/resources/</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> <execution> <id>copy-dependency-sources</id> <phase>${attach-javadoc-phase}</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/javadoc-sources</outputDirectory> <resources> <resource> <directory>${project.build.directory}/../../cypher/cypher/src/main/java/</directory> <filtering>false</filtering> </resource> <resource> <directory>${project.build.directory}/../../cypher/cypher/src/main/scala/</directory> <filtering>false</filtering> </resource> <resource> <directory>${project.build.directory}/../../graph-algo/src/main/java/</directory> <filtering>false</filtering> </resource> <resource> <directory>${project.build.directory}/../../graph-matching/src/main/java/</directory> <filtering>false</filtering> </resource> <resource> <directory>${project.build.directory}/../../jmx/src/main/java/</directory> <filtering>false</filtering> </resource> <resource> <directory>${project.build.directory}/../../kernel/src/main/java/</directory> <filtering>false</filtering> </resource> <resource> <directory>${project.build.directory}/../../kernel/target/generated-sources/</directory> <filtering>false</filtering> </resource> <resource> <directory>${project.build.directory}/../../lucene-index/src/main/java/</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>create-javadocs</id> <phase>${attach-javadoc-phase}</phase> <goals> <goal>javadoc</goal> </goals> <configuration> <additionnalDependencies> <additionnalDependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.0</version> </additionnalDependency> <additionnalDependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.0.0</version> </additionnalDependency> <additionnalDependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.4</version> </additionnalDependency> </additionnalDependencies> <outputDirectory>${project.build.directory}/site/apidocs</outputDirectory> <sourcepath>${project.build.directory}/javadoc-sources</sourcepath> <header>${project.name}</header> <doctitle>${project.name} ${project.version} API</doctitle> <skip>${javadoc.skip}</skip> <show>public</show> <windowtitle>${project.name} ${project.version} API</windowtitle> <excludePackageNames> *.impl.*:*.internal.*:org.neo4j.ext.udc:org.neo4j.kernel:org.neo4j.kernel.ha:org.neo4j.kernel.ha.*:org.neo4j.com:org.neo4j.com.*:org.apache.lucene.index:org.neo4j.cluster.*:org.neo4j.helpers.progress:org.neo4j.kernel.configuration:org.neo4j.kernel.guard:org.neo4j.kernel.info:org.neo4j.kernel.logging </excludePackageNames> <groups> <group> <title>Graph database</title> <packages>org.neo4j.graphdb:org.neo4j.graphdb.*</packages> </group> <group> <title>Index</title> <packages>org.neo4j.index:org.neo4j.index.*</packages> </group> <group> <title>Graph algorithms</title> <packages>org.neo4j.graphalgo:org.neo4j.graphalgo.*</packages> </group> <group> <title>Management</title> <packages>org.neo4j.management:org.neo4j.management.*:org.neo4j.jmx:org.neo4j.jmx.*</packages> </group> <group> <title>Query language</title> <packages>org.neo4j.cypher.javacompat:org.neo4j.cypher.javacompat.*</packages> </group> <group> <title>Graph matching</title> <packages>org.neo4j.graphmatching:org.neo4j.graphmatching.*</packages> </group> <group> <title>Helpers</title> <packages>org.neo4j.helpers:org.neo4j.helpers.*</packages> </group> <group> <title>Tooling</title> <packages>org.neo4j.tooling:org.neo4j.tooling.*</packages> </group> </groups> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>package-javadocs</id> <phase>${attach-javadoc-phase}</phase> <goals> <goal>single</goal> </goals> <configuration> <attach>true</attach> <descriptors> <descriptor>src/main/assembly/assembly.xml</descriptor> </descriptors> <skipAssembly>${javadoc.skip}</skipAssembly> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <executions> <execution> <id>attach-descriptor</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <site> <id>neo4j-site</id> <url>scpexe://docs.neo4j.org/data/www/doc/components.neo4j.org/${project.artifactId}/${project.version}</url> </site> </distributionManagement> </project>
<dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j</artifactId> <version>2.0.3</version> </dependency>
If you think the following neo4j-2.0.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.