Skip to content

Commit 2184bae

Browse files
committed
reorganized package name
1 parent 9c992b3 commit 2184bae

76 files changed

Lines changed: 377 additions & 306 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

msgpack-core/pom.xml

Lines changed: 5 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -2,85 +2,27 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>org.msgpack</groupId>
6-
<artifactId>msgpack-core</artifactId>
7-
<version>0.7.0-SNAPSHOT</version>
8-
<packaging>jar</packaging>
9-
10-
<name>MessagePack for Java</name>
11-
<description>MessagePack for Java</description>
12-
<url>http://msgpack.org/</url>
135

146
<parent>
15-
<groupId>org.sonatype.oss</groupId>
16-
<artifactId>oss-parent</artifactId>
17-
<version>7</version>
7+
<groupId>org.msgpack</groupId>
8+
<artifactId>msgpack-root</artifactId>
9+
<version>0.7.0-SNAPSHOT</version>
1810
</parent>
1911

20-
<licenses>
21-
<license>
22-
<name>The Apache Software License, Version 2.0</name>
23-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24-
<distribution>repo</distribution>
25-
</license>
26-
</licenses>
27-
28-
<scm>
29-
<connection>scm:git:git://github.com/msgpack/msgpack-java.git</connection>
30-
<developerConnection>scm:git:git@github.com:msgpack/msgpack-java.git</developerConnection>
31-
<url>scm:git:git://github.com/msgpack/msgpack-java.git</url>
32-
</scm>
33-
34-
<issueManagement>
35-
<system>GitHub</system>
36-
<url>https://github.com/msgpack/msgpack-java/issues</url>
37-
</issueManagement>
12+
<artifactId>msgpack-core</artifactId>
13+
<name>msgpack-core</name>
3814

3915
<dependencies>
4016
<dependency>
4117
<groupId>junit</groupId>
4218
<artifactId>junit</artifactId>
43-
<version>4.8.2</version>
4419
<scope>test</scope>
4520
</dependency>
4621

4722
<dependency>
4823
<groupId>org.mockito</groupId>
4924
<artifactId>mockito-core</artifactId>
50-
<version>1.9.5</version>
5125
<scope>test</scope>
5226
</dependency>
5327
</dependencies>
54-
55-
<build>
56-
<plugins>
57-
<plugin>
58-
<artifactId>maven-compiler-plugin</artifactId>
59-
<version>3.1</version>
60-
<configuration>
61-
<source>1.6</source>
62-
<target>1.6</target>
63-
<encoding>UTF-8</encoding>
64-
<compilerArgs>
65-
<arg>-Xlint:unchecked</arg>
66-
</compilerArgs>
67-
</configuration>
68-
</plugin>
69-
70-
<plugin>
71-
<groupId>org.apache.maven.plugins</groupId>
72-
<artifactId>maven-surefire-plugin</artifactId>
73-
<version>2.15</version>
74-
<configuration>
75-
<argLine>-Xmx512M</argLine>
76-
</configuration>
77-
</plugin>
78-
79-
<plugin>
80-
<artifactId>maven-eclipse-plugin</artifactId>
81-
<version>2.9</version>
82-
</plugin>
83-
</plugins>
84-
</build>
85-
8628
</project>

msgpack-core/src/main/java/org/msgpack/unpacker/MessageMalformedFormatException.java renamed to msgpack-core/src/main/java/org/msgpack/core/MessageMalformedFormatException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.unpacker;
16+
package org.msgpack.core;
1717

1818
public class MessageMalformedFormatException extends MessageUnpackerException {
1919
public MessageMalformedFormatException(String message) {

msgpack-core/src/main/java/org/msgpack/packer/MessagePacker.java renamed to msgpack-core/src/main/java/org/msgpack/core/MessagePacker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.packer;
16+
package org.msgpack.core;
1717

1818
import java.math.BigInteger;
1919
import java.io.IOException;

msgpack-core/src/main/java/org/msgpack/packer/MessagePackerChannel.java renamed to msgpack-core/src/main/java/org/msgpack/core/MessagePackerChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.packer;
16+
package org.msgpack.core;
1717

1818
import java.io.IOException;
1919
import java.io.Closeable;

msgpack-core/src/main/java/org/msgpack/unpacker/MessageUnpacker.java renamed to msgpack-core/src/main/java/org/msgpack/core/MessageUnpacker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.unpacker;
16+
package org.msgpack.core;
1717

1818
public class MessageUnpacker /*implements Unpacker */{
1919
public static class Options {

msgpack-core/src/main/java/org/msgpack/unpacker/MessageUnpackerChannel.java renamed to msgpack-core/src/main/java/org/msgpack/core/MessageUnpackerChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.unpacker;
16+
package org.msgpack.core;
1717

1818
import java.io.IOException;
1919
import java.io.Closeable;

msgpack-core/src/main/java/org/msgpack/unpacker/MessageUnpackerException.java renamed to msgpack-core/src/main/java/org/msgpack/core/MessageUnpackerException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.unpacker;
16+
package org.msgpack.core;
1717

1818
import java.io.IOException;
1919

msgpack-core/src/main/java/org/msgpack/unpacker/MessageUnpackerStackException.java renamed to msgpack-core/src/main/java/org/msgpack/core/MessageUnpackerStackException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.unpacker;
16+
package org.msgpack.core;
1717

1818
public class MessageUnpackerStackException extends MessageUnpackerException {
1919
public MessageUnpackerStackException() {

msgpack-core/src/main/java/org/msgpack/packer/Packer.java renamed to msgpack-core/src/main/java/org/msgpack/core/Packer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.packer;
16+
package org.msgpack.core;
1717

1818
import java.math.BigInteger;
1919
import java.io.IOException;
2020
import java.io.Closeable;
2121
import java.io.Flushable;
2222
import java.nio.ByteBuffer;
23-
import org.msgpack.type.Value;
2423

2524
/**
2625
* Streaming serialization interface of MessagePack.

msgpack-core/src/main/java/org/msgpack/unpacker/Unpacker.java renamed to msgpack-core/src/main/java/org/msgpack/core/Unpacker.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
package org.msgpack.unpacker;
16+
package org.msgpack.core;
1717

1818
import java.io.Closeable;
1919
import java.io.IOException;
2020
import java.nio.ByteBuffer;
2121
import java.math.BigInteger;
2222

23-
import org.msgpack.type.ValueType;
24-
2523
public interface Unpacker extends Closeable {
2624
public ValueType getNextType() throws IOException;
2725

0 commit comments

Comments
 (0)