[maven-release-plugin] prepare release plc4x-parent-0.1.0
37 files changed
tree: ade1a7a983f339b1f0727e412d8eb47fd68f9e44
  1. .mvn/
  2. examples/
  3. integrations/
  4. plc4c/
  5. plc4j/
  6. plc4s/
  7. src/
  8. .editorconfig
  9. .gitignore
  10. .gitlab-ci.yml
  11. .travis.yml
  12. DEVELOPMENT.md
  13. DISCLAIMER
  14. Jenkinsfile
  15. LICENSE
  16. mvnw
  17. mvnw.cmd
  18. NOTICE
  19. pom.xml
  20. README.md
README.md

Welcome to Apache PLC4X!

Apache PLC4X is an effort to create a set of libraries for communicating with industrial grade programmable logic controllers (PLCs) in a uniform way. We are planning on shipping libraries for usage in:

  1. Java
  2. Scala
  3. C/C++

As well as provide direct integration into other Apache projects, such as:

  1. Apache Edgent
  2. Apache Mynewt

Environment

Currently the project is configured to require the following software:

  1. Java 8 JDK: For running Maven in general as well as compiling the Java and Scala modules `JAVA_HOME configured to point to that.
  2. (Optional) Graphwiz: For generating the graphs in the documentation (http://www.graphviz.org/)

Getting Started

As currently a lot of the work is being done in the documentation and this is handled by mavens site plugin, in order to get all parts built, it is important to also trigger Mavens site generation. This is done by adding the site:site goal to the execution.

Unix/Linux/Mac:

./mvnw clean install site:site

Windows:

mvnw.cmd clean install site:site

This will generate all artifacts as well as their documentation. In order to locally fully test the generated documentation site, it is advisable to add another goal site:stage to the build, which will copy the sub-sites of all modules into one directory target/staging. Without this the links between modules will not work correctly.

Unix/Linux/Mac:

./mvnw clean install site:site site:stage

Windows:

mvnw.cmd clean install site:site site:stage