README.txt 1.1 KB

1234567891011121314151617181920212223242526272829
  1. Build Via the Ant Targets, maven will automatically download and install libraries from web and modbus4j-maven-local repository included in project.
  2. modbus4J.jar requires: (See pom.xml)
  3. A discussion forum for this package can be found at http://mango.serotoninsoftware.com/forum/forums/show/11.page.
  4. There is a public maven repository for downloading Modbus4J as a dependency in your project. Just add this:
  5. <repositories>
  6. <repository>
  7. <releases>
  8. <enabled>true</enabled>
  9. <checksumPolicy>ignore</checksumPolicy>
  10. </releases>
  11. <snapshots>
  12. <enabled>false</enabled>
  13. </snapshots>
  14. <id>modbus-data-source</id>
  15. <name>Modbus Dependencies</name>
  16. <url>https://maven.mangoautomation.net/repository/ias-release/</url>
  17. </repository>
  18. </repositories>
  19. Use this as the dependency info:
  20. <dependency>
  21. <groupId>com.infiniteautomation</groupId>
  22. <artifactId>modbus4j</artifactId>
  23. <version>3.0.3</version>
  24. </dependency>