diff options
| author | Taro L. Saito <leo@xerial.org> | 2010-04-19 23:34:18 +0900 |
|---|---|---|
| committer | Taro L. Saito <leo@xerial.org> | 2010-04-19 23:34:18 +0900 |
| commit | d693d9270225eb6e6ab133b124f1adc626ed319c (patch) | |
| tree | e7f4c1b8a620c26ba7365b06340ed5b4564a2d1c /java | |
| parent | f2622e54e350bcec9233084a0d52eb61dcdeddb1 (diff) | |
| download | msgpack-python-d693d9270225eb6e6ab133b124f1adc626ed319c.tar.gz | |
removed unnecessary settings
Diffstat (limited to 'java')
| -rwxr-xr-x | java/Makefile | 10 | ||||
| -rwxr-xr-x | java/pom.xml | 18 |
2 files changed, 10 insertions, 18 deletions
diff --git a/java/Makefile b/java/Makefile index 2b6b07d..7885a13 100755 --- a/java/Makefile +++ b/java/Makefile @@ -1,6 +1,14 @@ -.PHONY: compile test eclipse clean
+.PHONY: compile test eclipse clean package
+all:
+ compile
+
+package:
+ mvn package
+
+install:
+ mvn install
compile:
mvn compile
diff --git a/java/pom.xml b/java/pom.xml index 5a7b4a5..321e8d5 100755 --- a/java/pom.xml +++ b/java/pom.xml @@ -4,7 +4,7 @@ <groupId>org.msgpack</groupId>
<artifactId>msgpack</artifactId>
<name>MessagePack for Java</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.0-SNAPSHOT</version>
<description>MessagePack for Java</description>
<licenses>
@@ -20,9 +20,6 @@ </scm>
<build>
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>test</testSourceDirectory>
-
<resources>
<resource>
<directory>src/main/resources</directory>
@@ -77,17 +74,11 @@ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
- <configuration>
- <aggregate>true</aggregate>
- </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
- <configuration>
- <aggregate>true</aggregate>
- </configuration>
</plugin>
</plugins>
</reporting>
@@ -114,12 +105,5 @@ <scope>test</scope>
</dependency>
- <dependency>
- <groupId>org.apache.activemq.protobuf</groupId>
- <artifactId>activemq-protobuf</artifactId>
- <version>1.0</version>
- <scope>test</scope>
- </dependency>
-
</dependencies>
</project>
|
