msgpack-python/java
2010-07-24 18:07:22 +09:00
..
.settings added pom.xml 2010-04-19 22:39:53 +09:00
src java: fixes fatal offset calculation bugs on BufferedUnpackerIMPL.unpackInt() 2010-07-24 18:07:22 +09:00
test java: add Unpacker.wrap method 2010-05-20 06:19:26 +09:00
.gitignore added pom.xml 2010-04-19 22:39:53 +09:00
build.xml changed the src/test folder 2010-04-20 00:05:26 +09:00
CHANGES.txt java: version 0.3 (added CHANGES.txt and LICENSE.txt) 2010-05-23 01:48:20 +09:00
ivy.xml java: add javadoc,javadoc-jar,pom,dist,mvn-install,mvn-deploy ANT tasks. 2010-04-18 01:18:40 +09:00
LICENSE.txt java: version 0.3 (added CHANGES.txt and LICENSE.txt) 2010-05-23 01:48:20 +09:00
Makefile removed unnecessary settings 2010-04-19 23:34:18 +09:00
pom.xml java: version 0.3 (added CHANGES.txt and LICENSE.txt) 2010-05-23 01:48:20 +09:00
README add README 2010-04-19 23:52:40 +09:00

To build the JAR file of Message Pack, you need to install Maven (http://maven.apache.org), then type the following command:

$ mvn package

To locally install the project, type
$ mvn install

To generate project files (.project, .classpath) for Eclipse, do 

$ mvn eclipse:eclipse

then import the folder from your Eclipse. 

Next, open the preference page in Eclipse and add the CLASSPATH variable:

M2_REPO = $HOME/.m2/repository

where $HOME is your home directory. In Windows XP, $HOME is:
C:/Documents and Settings/(user name)/.m2/repository 


# How to release the project (compile, test, tagging, deploy)

$ mvn release:prepare
$ mvn release:perform