This is an automated email from the ASF dual-hosted git repository.
sruehl pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git
from 3e0780b6cb fix(plc4go): correct BitBuffer EOF behavior and
empty-buffer nil semantics
new 47f2add3ef refactor(plc4go): internalize external dependencies
new 0992f0e2d0 refactor(plc4go): move external tools into a dedicated mod
file
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../language/go/src/test/resources/plc4go/go.sum | 25 +++
plc4go/Makefile | 6 +-
plc4go/go.mod | 52 +----
plc4go/go.sum | 102 +--------
plc4go/internal/bacnetip/Discoverer.go | 6 +-
plc4go/pkg/api/cache/PlcConnectionCache.go | 5 +-
plc4go/pkg/api/cache/PlcConnectionCache_test.go | 20 +-
plc4go/pkg/api/cache/connectionContainer.go | 6 +-
plc4go/pkg/api/cache/connectionContainer_test.go | 22 +-
plc4go/pkg/api/cache/plcConnectionLease_test.go | 30 +--
plc4go/pom.xml | 3 +
.../protocols/df1/readwrite/model/StaticHelper.go | 33 ++-
plc4go/spi/codegen/fields/FieldReaderVirtual.go | 39 ++--
plc4go/spi/codegen/fields/virtualConv.go | 171 ++++++++++++++
plc4go/spi/codegen/fields/virtualConv_test.go | 247 +++++++++++++++++++++
plc4go/spi/testutils/DriverTestRunner.go | 2 +-
plc4go/spi/testutils/ParserSerializerTestRunner.go | 2 +-
plc4go/spi/testutils/xmldom/xmldom.go | 220 ++++++++++++++++++
plc4go/spi/testutils/xmldom/xmldom_test.go | 183 +++++++++++++++
plc4go/{go.mod => tools.mod} | 78 +++----
plc4go/{go.sum => tools.sum} | 138 ++++++------
pom.xml | 1 +
22 files changed, 1054 insertions(+), 337 deletions(-)
create mode 100644 code-generation/language/go/src/test/resources/plc4go/go.sum
create mode 100644 plc4go/spi/codegen/fields/virtualConv.go
create mode 100644 plc4go/spi/codegen/fields/virtualConv_test.go
create mode 100644 plc4go/spi/testutils/xmldom/xmldom.go
create mode 100644 plc4go/spi/testutils/xmldom/xmldom_test.go
copy plc4go/{go.mod => tools.mod} (57%)
copy plc4go/{go.sum => tools.sum} (51%)