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 2021/12/14 14:54:55 UTC

[plc4x] branch develop updated (5a78a4a -> 833dd4d)

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

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


    from 5a78a4a  build(Jenkinsfile): use maven wrapper
     new f00c9a2  fix: bumped the version of log4j to the properly fixed one.
     new 833dd4d  documentation: fixed us incorrectly stating java 8 or 9 was enough to build PLC4X

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:
 README.md | 13 ++++++-------
 pom.xml   |  2 +-
 2 files changed, 7 insertions(+), 8 deletions(-)

[plc4x] 01/02: fix: bumped the version of log4j to the properly fixed one.

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

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

commit f00c9a2c75826359365abdc88be0a04189c5f73c
Author: cdutz <ch...@c-ware.de>
AuthorDate: Tue Dec 14 15:54:14 2021 +0100

    fix: bumped the version of log4j to the properly fixed one.
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index ff283e8..b994bb9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -151,7 +151,7 @@
     <jserialcom.version>2.7.0</jserialcom.version>
     <junit.jupiter.version>5.7.2</junit.jupiter.version>
     <junit.platform.version>1.7.2</junit.platform.version>
-    <log4j.version>2.15.0</log4j.version>
+    <log4j.version>2.16.0</log4j.version>
     <logback.version>1.2.5</logback.version>
     <milo.version>0.6.3</milo.version>
     <mockito.version>3.12.4</mockito.version>

[plc4x] 02/02: documentation: fixed us incorrectly stating java 8 or 9 was enough to build PLC4X

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

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

commit 833dd4d989fd0c8350a783d0126a91ff218a9b8d
Author: cdutz <ch...@c-ware.de>
AuthorDate: Tue Dec 14 15:54:40 2021 +0100

    documentation: fixed us incorrectly stating java 8 or 9 was enough to build PLC4X
---
 README.md | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 237c605..4b95eab 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ We are planning on shipping libraries for usage in:
 
 1. Java
 2. Go
-3. C/C++ (not ready for usage)
+3. C (not ready for usage)
 4. Python (not ready for usage)
 5. C# (.Net) (not ready for usage)
 
@@ -74,7 +74,7 @@ the language of choice.
 
 ### Java
 
-NOTE: Currently the Java versions which supports building of all parts of Apache PLC4X is Java 11 or higher (lower versions can't build the CMake dependent parts, such as PLC4C and PLC4Cpp). However, if you only want to build the Java parts, Java 1.8 or above is ok. 
+NOTE: Currently the Java version which supports building of all parts of Apache PLC4X is at least Java 11
 
 See the PLC4J user guide on the website to start using PLC4X in your Java application:
 [https://plc4x.apache.org/users/getting-started/plc4j.html](https://plc4x.apache.org/users/getting-started/plc4j.html)
@@ -83,9 +83,9 @@ See the PLC4J user guide on the website to start using PLC4X in your Java applic
 
 ### Environment
 
-Currently, the project is configured to require the following software when building only the Java parts:
+Currently, the project is configured to require the following software:
 
-1. Java 11 JDK: For running Maven in general as well as compiling the Java modules `JAVA_HOME` configured to point to that.
+1. Java 11 JDK: For running Maven in general as well as compiling the Java and Scala modules `JAVA_HOME` configured to point to that.
 2. libpcap/WinPcap for raw socket tests in Java or use of `passive-mode` drivers
 3. (Optional) [Graphviz](https://www.graphviz.org/) : For generating the graphs in the documentation
 4. Git (even when working on the source distribution)
@@ -204,9 +204,8 @@ If you don't want to bother setting up the environment on your normal system and
 
 ### Getting Started
 
-You must have at least Java >=9 installed on your system and connectivity to Maven Central
-(for downloading external third party dependencies). However in order to build all parts
-of PLC4X exactly Java 11 is required. Maven 3.6 is required to build, so be sure it's installed and available on your system. 
+You must have at least Java 11 installed on your system and connectivity to Maven Central
+(for downloading external third party dependencies). Maven 3.6 is required to build, so be sure it's installed and available on your system. 
 
 NOTE: There is a convenience Maven-Wrapper installed in the repo, when used, this automatically downloads and installs Maven. If you want to use this, please use `./mvnw` or `mvnw` instead of the normal `mvn` command.