Skip to content

Commit

Permalink
feat(plc4go/opcua): generate models for OPC-UA
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Jul 27, 2023
1 parent 5704752 commit 490dfc6
Show file tree
Hide file tree
Showing 378 changed files with 121,731 additions and 0 deletions.
20 changes: 20 additions & 0 deletions plc4go/pom.xml
Expand Up @@ -316,6 +316,19 @@
<outputDir>${project.basedir}/protocols</outputDir>
</configuration>
</execution>
<execution>
<id>generate-driver-opcua</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-driver</goal>
</goals>
<configuration>
<protocolName>opcua</protocolName>
<languageName>go</languageName>
<outputFlavor>read-write</outputFlavor>
<outputDir>${project.basedir}/protocols</outputDir>
</configuration>
</execution>
<execution>
<id>generate-driver-s7</id>
<phase>generate-sources</phase>
Expand Down Expand Up @@ -665,6 +678,13 @@
<!-- 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-opcua</artifactId>
<version>0.11.0-SNAPSHOT</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>
Expand Down
165 changes: 165 additions & 0 deletions plc4go/protocols/opcua/readwrite/ParserHelper.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

162 changes: 162 additions & 0 deletions plc4go/protocols/opcua/readwrite/XmlParserHelper.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 490dfc6

Please sign in to comment.