Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed formatting for snippets. #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,29 @@ If you use Maven2 repository, these packages will be automatically downloaded.
[Maven2 repository](http://msgpack.org/maven2/) is available.
If your project uses Maven, please add these lines to your pom.xml.

<repositories>
<repository>
<id>msgpack.org</id>
<name>MessagePack Repository for Maven</name>
<url>http://msgpack.org/maven2/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-rpc</artifactId>
<version>0.5.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>msgpack.org</id>
<name>MessagePack Repository for Maven</name>
<url>http://msgpack.org/maven2/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-rpc</artifactId>
<version>0.5.0</version>
</dependency>
</dependencies>

## Build from the source

Maven2 is required to build this project.
The following command builds jar file.
Then you'll get the .jar file in target directory.

mvn compile
mvn package
mvn compile
mvn package

## License

Expand Down