Skip to content

Commit

Permalink
docs: Updated two more places, where we didn't output a concrete vers…
Browse files Browse the repository at this point in the history
…ion in the docs.
  • Loading branch information
chrisdutz committed Feb 14, 2024
1 parent e34fa65 commit fd53a59
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
18 changes: 10 additions & 8 deletions src/site/asciidoc/users/tools/scraper.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@ As we have encountered exactly the same problem for about every integration modu
This tool automatically handles all of the tasks mentioned above.

=== Getting started with the `Scraper`
The Scraper can be found in the Maven module
```
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-scraper</artifactId>
<version>${current.version}</version>
</dependency>
```
The Scraper can be found in the Maven module:

[subs=attributes+]
----
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-scraper</artifactId>
<version>{current-last-released-version}</version>
</dependency>
----

In general, you need 3 parts to work with the `Scraper`:

Expand Down
17 changes: 9 additions & 8 deletions src/site/asciidoc/users/tools/testing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ PLC4X has a _Mock Driver_ which was initially implemented to be used for Unit Te
But this driver is also very suitable to play around a bit with the PLC4X API if no _Hardware_ PLC is available.
The driver can be found in the Maven module

```
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-transport-test</artifactId>
<version>${current.version}</version>
<scope>test</scope>
</dependency>
```
[subs=attributes+]
----
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-transport-test</artifactId>
<version>{current-last-released-version}</version>
<scope>test</scope>
</dependency>
----

The connection string Syntax for the mock driver is `mock:{name-of-the-connection}`. So you can use multiple Mock Devices at the same time.

Expand Down

0 comments on commit fd53a59

Please sign in to comment.