Skip to content

Commit

Permalink
Move messaging package into a single module.
Browse files Browse the repository at this point in the history
  • Loading branch information
kuujo committed Nov 17, 2017
1 parent b7e7089 commit 5dfe2b7
Show file tree
Hide file tree
Showing 16 changed files with 43 additions and 112 deletions.
36 changes: 0 additions & 36 deletions messaging/api/pom.xml

This file was deleted.

61 changes: 0 additions & 61 deletions messaging/netty/pom.xml

This file was deleted.

42 changes: 35 additions & 7 deletions messaging/pom.xml
Expand Up @@ -22,12 +22,40 @@
<version>2.1.0-SNAPSHOT</version>
</parent>

<packaging>pom</packaging>
<artifactId>atomix-messaging-parent</artifactId>
<name>Atomix Messaging Parent</name>
<packaging>bundle</packaging>
<artifactId>atomix-messaging</artifactId>
<name>Atomix Messaging</name>

<modules>
<module>api</module>
<module>netty</module>
</modules>
<dependencies>
<dependency>
<groupId>io.atomix</groupId>
<artifactId>atomix-messaging</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.atomix</groupId>
<artifactId>atomix-utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
</dependency>
</dependencies>
</project>
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

/**
* State transitions a decoder goes through as it is decoding an incoming message.
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

/**
* Base class for internal messages.
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

import com.google.common.base.MoreObjects;
import io.atomix.utils.ArraySizeHashPrinter;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

import com.google.common.base.MoreObjects;
import io.atomix.messaging.Endpoint;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

import com.google.common.base.Charsets;
import io.atomix.messaging.Endpoint;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

import com.google.common.base.Charsets;
import io.atomix.messaging.Endpoint;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.atomix.messaging.netty;
package io.atomix.messaging.impl;

import com.google.common.util.concurrent.MoreExecutors;
import com.google.common.util.concurrent.Uninterruptibles;
Expand Down

0 comments on commit 5dfe2b7

Please sign in to comment.