Skip to content

Commit

Permalink
Issue #218: Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hypfvieh committed Jun 12, 2023
1 parent 06f7376 commit af59068
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The library will remain open source and MIT licensed and can still be used, fork
- Fixed issue with SASL DATA command when no actual data is sent, thanks to [Prototik](https://github.com/Prototik) ([#214](https://github.com/hypfvieh/dbus-java/issues/214))
- Fixed SASL AUTH did not read enough data when COOKIE was used, thanks to [Prototik](https://github.com/Prototik) ([#215](https://github.com/hypfvieh/dbus-java/issues/215))
- Fixed several other issues when using SASL anonymous authentication, thanks to [Prototik](https://github.com/Prototik) ([PR#216](https://github.com/hypfvieh/dbus-java/pull/216))

- Updated documentation ([#218](https://github.com/hypfvieh/dbus-java/issues/218))
##### Changes in 4.3.0 (2023-03-10):

- Fixed thread priority settings were never passed to thread factory, thanks to [DaveJarvis](https://github.com/DaveJarvis) ([#190](https://github.com/hypfvieh/dbus-java/issues/190))
Expand Down
4 changes: 2 additions & 2 deletions src/site/markdown/code-generation.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Therefore it is recommended to run the code generator using Maven or your develo
mvn exec:java \
-Dexec.mainClass="org.freedesktop.dbus.utils.generator.InterfaceCodeGenerator" \
-Dexec.executable="java" \
-Dexec.args="%classpath --system --outputDir /tmp/classes org.bluez /org/bluez"
-Dexec.args="--system --outputDir /tmp/classes org.bluez /org/bluez"
* You may replace `org.bluez` and `/org/bluez` with the busname and object path of the DBus service
you want to generate java classes for.
Expand All @@ -42,6 +42,6 @@ Therefore it is recommended to run the code generator using Maven or your develo
mvn exec:java \
-Dexec.mainClass="org.freedesktop.dbus.utils.generator.InterfaceCodeGenerator" \
-Dexec.executable="java" \
-Dexec.args="%classpath --inputFile /tmp/org.freedesktop.UDisks2.xml --outputDir /tmp/classes ' '"
-Dexec.args="--inputFile /tmp/org.freedesktop.UDisks2.xml --outputDir /tmp/classes ' '"

In both cases the generated classes/interfaces will be written to the provided output directory.

0 comments on commit af59068

Please sign in to comment.