From 2a76fac1283553ca93483a59b256f1b8568eaa44 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Wed, 12 Nov 2014 12:23:41 -0500 Subject: [PATCH] Added distribution management and updated the group id Change-Id: I6bbd86ea7c40a87273f83f8eea0396cded5a2acd --- README.md | 2 +- pom.xml | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1186902..633006c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ TinkerPop also provides several tools which can be used to work with GRAIL backe * **Furnace** - Graph analysis utilities * **Frames** - An object-to-graph mapping similar to ORM for relational databases -* **Pipes** - A data-flow framework for splitting, merging, filtering, and transforming of data. +* **Pipes** - A data-flow framework for splitting, merging, filtering, and transforming of data * **Gremlin** - A graph query language * **Blueprints** - A standard graph API diff --git a/pom.xml b/pom.xml index 677e41e..2119c0f 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ <modelVersion>4.0.0</modelVersion> - <groupId>com.syncleus.grail</groupId> + <groupId>com.syncleus</groupId> <artifactId>grail</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> @@ -32,6 +32,19 @@ <project.build.resourceEncoding>${project.build.encoding}</project.build.resourceEncoding> </properties> + <distributionManagement> + <repository> + <id>syncleus.releases</id> + <name>Release Repository</name> + <url>http://repo.syncleus.com/repository/releases/</url> + </repository> + <snapshotRepository> + <id>syncleus.snapshots</id> + <name>Snapshot Repository</name> + <url>http://repo.syncleus.com/repository/snapshots/</url> + </snapshotRepository> + </distributionManagement> + <reporting> <plugins> <plugin> -- GitLab