-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from neo4j/ready-to-release
Prepare for release
- Loading branch information
Showing
11 changed files
with
74 additions
and
33 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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<neo4j.version>2.3-SNAPSHOT</neo4j.version> | ||
</properties> | ||
|
||
<groupId>org.neo4j.driver</groupId> | ||
|
@@ -14,11 +13,35 @@ | |
<packaging>pom</packaging> | ||
<name>Neo4j Java Driver Project</name> | ||
<description>A project for building a Java driver for the Neo4j Bolt protocol.</description> | ||
<url>https://github.com/neo4j/neo4j-java-driver</url> | ||
|
||
<modules> | ||
<module>driver</module> | ||
</modules> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>neo4j</id> | ||
<name>The Neo4j Team</name> | ||
<url>http://neo4j.org/</url> | ||
<organization>Neo Technology</organization> | ||
<organizationUrl>http://www.neotechnology.com/</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/neo4j/neo4j-java-driver.git</connection> | ||
<developerConnection>scm:git:[email protected]:neo4j/neo4j-java-driver.git</developerConnection> | ||
<url>https://github.com/neo4j/neo4j-java-driver</url> | ||
</scm> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<!-- Test dependencies --> | ||
|
@@ -101,6 +124,12 @@ | |
<encoding>UTF-8</encoding> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>aggregate</id> | ||
<goals> | ||
|