Skip to content

Commit ad8cefb

Browse files
author
OZAWA
committed
fixed README as Markdown format.
Signed-off-by: OZAWA <ozawa.tsuyoshi@lab.ntt.co.jp>
1 parent 47d8a25 commit ad8cefb

File tree

2 files changed

+37
-28
lines changed

2 files changed

+37
-28
lines changed

README

Lines changed: 0 additions & 28 deletions
This file was deleted.

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# MessagePack for Java
2+
3+
An implementation of [MessagePack](http://msgpack.org/) for Java.
4+
5+
## Installation
6+
7+
To build the JAR file of MessagePack, you need to install Maven (http://maven.apache.org), then type the following command:
8+
9+
$ mvn package
10+
11+
To locally install the project, type
12+
13+
$ mvn install
14+
15+
To generate project files (.project, .classpath) for Eclipse, do
16+
17+
$ mvn eclipse:eclipse
18+
19+
then import the folder from your Eclipse.
20+
21+
Next, open the preference page in Eclipse and add the CLASSPATH variable:
22+
23+
M2_REPO = $HOME/.m2/repository
24+
25+
where $HOME is your home directory. In Windows XP, $HOME is:
26+
27+
C:/Documents and Settings/(user name)/.m2/repository
28+
29+
30+
## How to release
31+
32+
To relese the project (compile, test, tagging, deploy), please use the commands as follows:
33+
34+
$ mvn release:prepare
35+
$ mvn release:perform
36+
37+

0 commit comments

Comments
 (0)