Maven Central Repository

rodbus

Used in 0 components

Overview

Safe and fast Modbus library

Snippets

<dependency>
    <groupId>io.stepfunc</groupId>
    <artifactId>rodbus</artifactId>
    <version>1.3.0</version>
</dependency>

Maven POM File

<?xml version="1.0" encoding="UTF-8"?>
<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>
    
    <groupId>io.stepfunc</groupId>
    <artifactId>rodbus</artifactId>
    <version>1.3.0</version>
    
    <name>rodbus</name>
    <description>Safe and fast Modbus library</description>
    <url>https://stepfunc.io/products/libraries/modbus/</url>
    <scm>
        <connection>scm:git:git://github.com/stepfunc/modbus.git</connection>
        <developerConnection>scm:git:ssh://github.com:stepfunc/modbus.git</developerConnection>
        <url>http://github.com/stepfunc/modbus/tree/master</url>
    </scm>
    <developers>
    <developer>
        <name>J. Adam Crain</name>
        <email>adam@stepfunc.io</email>
        <organization>Step Function I/O</organization>
        <organizationUrl>https://stepfunc.io/</organizationUrl>
    </developer>
    <developer>
        <name>Émile Grégoire</name>
        <email>emile@stepfunc.io</email>
        <organization>Step Function I/O</organization>
        <organizationUrl>https://stepfunc.io/</organizationUrl>
    </developer>
    </developers>
    
    <licenses>
        <license>
            <name>Custom license</name>
            <url>https://github.com/stepfunc/modbus/blob/master/LICENSE.txt</url>
        </license>
    </licenses>
    
    <properties>
        <project.java.version>1.8</project.java.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.source>1.8</maven.compiler.source>
    </properties>
    
    <dependencies>
        <dependency>
            <groupId>org.jooq</groupId>
            <artifactId>joou-java-6</artifactId>
            <version>0.9.4</version>
        </dependency>
    </dependencies>
    
    <build>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-source-plugin</artifactId>
          <version>2.2.1</version>
          <executions>
            <execution>
              <id>attach-sources</id>
              <goals>
                <goal>jar-no-fork</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>3.5.0</version>
          <executions>
            <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </build>
</project>