Skip to content

Commit

Permalink
Feat/s7ha (#919)
Browse files Browse the repository at this point in the history
* Update repo.

* Update local repo.

* New feature _lastitem.

* Update local repo.

* Update repo.

* Update repo.

* Update repo.

* ALRM, CYC, SZL functionality has been restored for the driver. Missing Alarm ACK and documentation.

* The SZL function is operational, as well as the help functions. Ae add HA routine for testing with event and subscription handling.

* S7 driver documentation preview.

* Fix site rendering with reflow-maven-skim 2.3.3.

* Update from S7 driver to S7HA. Tested with S7-400. To do, correct the test for the protocol and the driver. To do the data processing of the Plc Simulator.

* Fix the version of netty and other libraries.

---------

Co-authored-by: César García <cesar.garcia@ceos.com.ve>
  • Loading branch information
glcj and ceos01 authored Apr 27, 2023
1 parent 89f44d9 commit 44e4ede
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
20 changes: 10 additions & 10 deletions plc4j/drivers/s7/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,18 @@
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-api</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-spi</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-transport-tcp</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>

<dependency>
Expand All @@ -155,7 +155,7 @@
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-utils-test-utils</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -174,40 +174,40 @@
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4x-code-generation-language-java</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
<!-- Scope is 'provided' as this way it's not shipped with the driver -->
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4x-protocols-s7</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
<!-- Scope is 'provided' as this way it's not shipped with the driver -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4x-protocols-s7</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
<classifier>tests</classifier>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>4.1.89.Final</version>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>4.1.89.Final</version>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>4.1.89.Final</version>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
Expand Down
12 changes: 6 additions & 6 deletions plc4j/examples/plc4j-s7event/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-api</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>

<!-- TODO: Only needed because we directly rely on types of the driver -->
<dependency>
<groupId>org.apache.plc4x</groupId>
<artifactId>plc4j-driver-s7</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>

<dependency>
Expand All @@ -83,22 +83,22 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.6</version>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
<version>${commons-codec.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>4.1.89.Final</version>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>${commons-lang3.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 44e4ede

Please sign in to comment.