summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik De Rijcke <derijcke.erik@gmail.com>2015-02-11 21:34:23 +0100
committerErik De Rijcke <derijcke.erik@gmail.com>2015-02-11 21:34:23 +0100
commit44095e80783267d407f55918db33206a9c7e77e4 (patch)
treecc78f75f66c7a0801db6e29cda04cd9a70e99ecc
parent6b2bf8111e0185b43a8a195577ecd8a4fb0f848b (diff)
update readme
-rw-r--r--README.md23
1 files changed, 13 insertions, 10 deletions
diff --git a/README.md b/README.md
index df82882..6413e68 100644
--- a/README.md
+++ b/README.md
@@ -33,27 +33,30 @@ maven dependency to start using the bindings:
Private protocol
================
The project allows you to generate your own private wayland protocol bindings.
- - Add
- ```xml
+Add
+```xml
<dependency>
<groupId>org.freedesktop</groupId>
<artifactId>generator</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
- ```
- to your build path, no need to put it on your classpath as it will only be used during compilation.
- - Add
- ```xml
+```
+to your build path, no need to put it on your classpath as it will only be used during compilation.
+
+Add
+```xml
<dependency>
<groupId>org.freedesktop</groupId>
<artifactId>stubs</artifactId>
<version>1.1.1</version>
</dependency>
- ```
- to your classpath.
- - Add a `@Protocols` annotation to your own private `package-info.java` file and set it to use your own private protocol xml file. Here's an [example](wayland/src/main/java/org/freedesktop/wayland/package-info.java).
- - Build your project with maven (or gradle). The generated bindings should automatically appear in the same package as your `package-info.java` file.
+```
+to your classpath.
+
+Add a `@Protocols` annotation to your own private `package-info.java` file and set it to use your own private protocol xml file. Here's an [example](wayland/src/main/java/org/freedesktop/wayland/package-info.java).
+
+Build your project with maven (or gradle). The generated bindings should automatically appear in the same package as your `package-info.java` file.
State
=====