modbus
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.snamp.connectors</groupId>
<artifactId>modbus</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.snamp.connectors</groupId>
<artifactId>connectors</artifactId>
<version>2.0.0</version>
</parent>
<artifactId>modbus</artifactId>
<version>2.0.0</version>
<packaging>bundle</packaging>
<name>Modbus Connector</name>
<description>SNAMP resource connector for Modbus (over TCP and UDP) protocol</description>
<dependencies>
<dependency>
<groupId>io.snamp</groupId>
<artifactId>framework</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>com.ghgande</groupId>
<artifactId>j2mod</artifactId>
<version>1.0.6</version>
<scope>system</scope>
<systemPath>${basedir}/lib/j2mod-1.06.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>snamp-${project.artifactId}-connector</Bundle-SymbolicName>
<Bundle-Activator>com.bytex.snamp.connector.modbus.ModbusResourceConnectorActivator</Bundle-Activator>
<Export-Package>com.bytex.snamp.connector.modbus.transport,
com.bytex.snamp.connector.modbus.slave,
com.bytex.snamp.connector.modbus.master</Export-Package>
<Embed-Dependency>*;scope=system</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Import-Package>!gnu.io,
*</Import-Package>
<Provide-Capability>com.bytex.snamp.connector; type=modbus</Provide-Capability>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>