summaryrefslogtreecommitdiff
path: root/java/Makefile
diff options
context:
space:
mode:
authorTaro L. Saito <leo@xerial.org>2010-04-19 22:39:53 +0900
committerTaro L. Saito <leo@xerial.org>2010-04-19 22:39:53 +0900
commit20fe9b6dde977cb7d923167292bbe89027a01795 (patch)
treeb2622b9d2be1cfd8fab7a0ff58662005b4564fab /java/Makefile
parent11f7aa4212a2539b008f7e357474ebc412647c71 (diff)
downloadmsgpack-python-20fe9b6dde977cb7d923167292bbe89027a01795.tar.gz
added pom.xml
Diffstat (limited to 'java/Makefile')
-rwxr-xr-xjava/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/java/Makefile b/java/Makefile
new file mode 100755
index 0000000..2b6b07d
--- /dev/null
+++ b/java/Makefile
@@ -0,0 +1,16 @@
+
+.PHONY: compile test eclipse clean
+
+
+compile:
+ mvn compile
+
+test:
+ mvn test
+
+# generate .project and .classpath file for Eclipse
+eclipse:
+ mvn eclipse:eclipse
+
+clean:
+ mvn clean