Skip to content

Commit

Permalink
complete refactoring of modbus plugin - introduced serial port wrappe…
Browse files Browse the repository at this point in the history
…r - introduced support for rtu over tcp mode - test scaffolding
  • Loading branch information
mcicolella committed Jul 16, 2016
1 parent f87f050 commit a4967cd
Show file tree
Hide file tree
Showing 17 changed files with 1,201 additions and 472 deletions.
31 changes: 21 additions & 10 deletions plugins/devices/modbus/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.freedomotic</groupId>
<artifactId>freedomotic</artifactId>
<artifactId>freedomotic-plugins</artifactId>
<version>5.6-SNAPSHOT</version>
<relativePath>../../../</relativePath>
<relativePath>../../</relativePath>
</parent>
<artifactId>modbus</artifactId>
<packaging>jar</packaging>
Expand Down Expand Up @@ -45,6 +46,20 @@
<freedomotic.marketplace.password></freedomotic.marketplace.password>

</properties>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>modbus-data-source</id>
<name>Modbus Dependencies</name>
<url>http://mangoautomation.net:9902/maven-repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
Expand All @@ -58,15 +73,11 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.serotonin</groupId>
<groupId>com.infiniteautomation</groupId>
<artifactId>modbus4j</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.serotonin</groupId>
<artifactId>seroutil</artifactId>
<version>1.1</version>
<version>3.0.0</version>
</dependency>

</dependencies>

<build>
Expand Down Expand Up @@ -122,5 +133,5 @@
</plugin>
</plugins>
</build>
</project>
</project>

This file was deleted.

Loading

0 comments on commit a4967cd

Please sign in to comment.