You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2020/11/19 08:17:48 UTC

[plc4x] branch feature/plc4go updated (91d39b9 -> c871dfc)

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a change to branch feature/plc4go
in repository https://gitbox.apache.org/repos/asf/plc4x.git.


    from 91d39b9  - Added support for 1-byte data-types in Modbus
     new e55951e  - Updated the build to only unpack xml files into the PLC4Go test-assets directory
     new c871dfc  - Added an empty go.mod file to the project root (Trying to get it working in go)

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:
 plc4go/cmd/main/main.go => go.mod | 5 ++---
 plc4go/pom.xml                    | 4 ++++
 2 files changed, 6 insertions(+), 3 deletions(-)
 copy plc4go/cmd/main/main.go => go.mod (95%)


[plc4x] 02/02: - Added an empty go.mod file to the project root (Trying to get it working in go)

Posted by cd...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch feature/plc4go
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit c871dfc3f66df8f763b3b77818d9a4a082f98513
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Thu Nov 19 09:17:39 2020 +0100

    - Added an empty go.mod file to the project root (Trying to get it working in go)
---
 go.mod | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..34c9bc3
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,21 @@
+//
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+//
+module github.com/apache/plc4x
+
+go 1.15


[plc4x] 01/02: - Updated the build to only unpack xml files into the PLC4Go test-assets directory

Posted by cd...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch feature/plc4go
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit e55951e913a0acc53fa688daf2df555910030d1c
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Thu Nov 19 09:06:06 2020 +0100

    - Updated the build to only unpack xml files into the PLC4Go test-assets directory
---
 plc4go/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/plc4go/pom.xml b/plc4go/pom.xml
index af66d83..b5f6241 100644
--- a/plc4go/pom.xml
+++ b/plc4go/pom.xml
@@ -56,6 +56,7 @@
                   <classifier>tests</classifier>
                   <type>test-jar</type>
                   <outputDirectory>${project.basedir}/assets/testing</outputDirectory>
+                  <includes>**/*.xml</includes>
                   <excludes>META-INF/**</excludes>
                 </artifactItem>
                 <artifactItem>
@@ -64,6 +65,7 @@
                   <classifier>tests</classifier>
                   <type>test-jar</type>
                   <outputDirectory>${project.basedir}/assets/testing</outputDirectory>
+                  <includes>**/*.xml</includes>
                   <excludes>META-INF/**,org/**</excludes>
                 </artifactItem>
                 <artifactItem>
@@ -72,6 +74,7 @@
                   <classifier>tests</classifier>
                   <type>test-jar</type>
                   <outputDirectory>${project.basedir}/assets/testing</outputDirectory>
+                  <includes>**/*.xml</includes>
                   <excludes>META-INF/**</excludes>
                 </artifactItem>
                 <artifactItem>
@@ -80,6 +83,7 @@
                   <classifier>tests</classifier>
                   <type>test-jar</type>
                   <outputDirectory>${project.basedir}/assets/testing</outputDirectory>
+                  <includes>**/*.xml</includes>
                   <excludes>META-INF/**,org/**</excludes>
                 </artifactItem>
               </artifactItems>