diff options
| author | Taro L. Saito <leo@xerial.org> | 2010-04-19 23:52:40 +0900 |
|---|---|---|
| committer | Taro L. Saito <leo@xerial.org> | 2010-04-19 23:52:40 +0900 |
| commit | 5aa620966482ead63198ff15f59aad482cacb180 (patch) | |
| tree | 9585f83a5d23805d59ec26ac2a1dc8d60ace3faf /java | |
| parent | d693d9270225eb6e6ab133b124f1adc626ed319c (diff) | |
| download | msgpack-python-5aa620966482ead63198ff15f59aad482cacb180.tar.gz | |
add README
Diffstat (limited to 'java')
| -rwxr-xr-x | java/README | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/java/README b/java/README new file mode 100755 index 0000000..33e6376 --- /dev/null +++ b/java/README @@ -0,0 +1,28 @@ +
+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
+
+
|
