From af59068720e2ac1ad232efec7cb4643c43cf4efc Mon Sep 17 00:00:00 2001 From: David M Date: Mon, 12 Jun 2023 09:07:21 +0200 Subject: [PATCH] Issue #218: Updated documentation --- README.md | 2 +- src/site/markdown/code-generation.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f852bf93..698ee047 100644 --- a/README.md +++ b/README.md @@ -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)) diff --git a/src/site/markdown/code-generation.md b/src/site/markdown/code-generation.md index 074c39d4..52e1b957 100644 --- a/src/site/markdown/code-generation.md +++ b/src/site/markdown/code-generation.md @@ -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. @@ -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.