Skip to content

Commit

Permalink
Merge pull request #3 from jvirtanen/features/namespace
Browse files Browse the repository at this point in the history
Move to 'com.paritytrading' namespace
  • Loading branch information
jvirtanen committed Apr 1, 2016
2 parents 4c6a23d + 93c3794 commit 69cf490
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions juncture-nasdaq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Juncture NASDAQ implements the following protocols:

See the [Wiki][] for links to the protocol specifications.

[Wiki]: https://github.com/jvirtanen/juncture/wiki/
[Wiki]: https://github.com/paritytrading/juncture/wiki/

Juncture NASDAQ uses [Nassau][] for NASDAQ transport protocol support.

Expand All @@ -26,7 +26,7 @@ Download
Add a Maven dependency to Juncture NASDAQ:

<dependency>
<groupId>org.jvirtanen.juncture</groupId>
<groupId>com.paritytrading.juncture</groupId>
<artifactId>juncture-nasdaq</artifactId>
<version><!-- latest version --></version>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion juncture-nasdaq/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.jvirtanen.juncture</groupId>
<groupId>com.paritytrading.juncture</groupId>
<artifactId>juncture-parent</artifactId>
<version>0.1.1-SNAPSHOT</version>
</parent>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jvirtanen.juncture.nasdaq.itch50;
package com.paritytrading.juncture.nasdaq.itch50;

import static org.jvirtanen.nio.ByteBuffers.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jvirtanen.juncture.nasdaq.itch50;
package com.paritytrading.juncture.nasdaq.itch50;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.jvirtanen.juncture.nasdaq.itch50;
package com.paritytrading.juncture.nasdaq.itch50;

import static org.jvirtanen.juncture.nasdaq.itch50.ITCH50.*;
import static com.paritytrading.juncture.nasdaq.itch50.ITCH50.*;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.jvirtanen.juncture.nasdaq.itch50;
package com.paritytrading.juncture.nasdaq.itch50;

import static org.jvirtanen.juncture.nasdaq.itch50.ITCH50.*;
import static com.paritytrading.juncture.nasdaq.itch50.ITCH50.*;

import com.paritytrading.nassau.MessageListener;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* This package contains an implementation of NASDAQ TotalView-ITCH 5.0.
*/
package org.jvirtanen.juncture.nasdaq.itch50;
package com.paritytrading.juncture.nasdaq.itch50;
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
<version>7</version>
</parent>

<groupId>org.jvirtanen.juncture</groupId>
<groupId>com.paritytrading.juncture</groupId>
<artifactId>juncture-parent</artifactId>
<version>0.1.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Juncture (Parent)</name>
<description>Connectivity to trading venues on the JVM.</description>
<url>https://github.com/jvirtanen/juncture</url>
<url>https://github.com/paritytrading/juncture</url>

<licenses>
<license>
Expand All @@ -26,9 +26,9 @@
</licenses>

<scm>
<connection>scm:git:[email protected]:jvirtanen/juncture.git</connection>
<developerConnection>scm:git:[email protected]:jvirtanen/juncture.git</developerConnection>
<url>https://github.com/jvirtanen/juncture</url>
<connection>scm:git:[email protected]:paritytrading/juncture.git</connection>
<developerConnection>scm:git:[email protected]:paritytrading/juncture.git</developerConnection>
<url>https://github.com/paritytrading/juncture</url>
<tag>HEAD</tag>
</scm>

Expand Down

0 comments on commit 69cf490

Please sign in to comment.