randypitcherii / milo

Eclipse Milo™ - an open source implementation of OPC UA (IEC 62541).

Home Page:http://www.eclipse.org/milo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Eclipse Milo

Build status Maven Central Join the chat at https://gitter.im/eclipse/milo

Milo is an open-source implementation of OPC UA. It includes a high-performance stack (channels, serialization, data structures, security) as well as client and server SDKs built on top of the stack.

While this project has existed for some time, it is new to the Eclipse foundation and is therefore considered to be in incubation. While in incubation it will continue to use 0.x.x versions.

Stack Overflow tag: milo

Mailing list: https://dev.eclipse.org/mailman/listinfo/milo-dev

Maven

Building Milo

From the project root, run mvn clean install.

Releases

Releases are published to Maven Central.

OPC UA Client SDK

<dependency>
    <groupId>org.eclipse.milo</groupId>
    <artifactId>sdk-client</artifactId>
    <version>0.2.1</version>
</dependency>

OPC UA Server SDK

<dependency>
    <groupId>org.eclipse.milo</groupId>
    <artifactId>sdk-server</artifactId>
    <version>0.2.1</version>
</dependency>

OPC UA Stack

<dependency>
    <groupId>org.eclipse.milo</groupId>
    <artifactId>stack-client</artifactId>
    <version>0.2.1</version>
</dependency>
<dependency>
    <groupId>org.eclipse.milo</groupId>
    <artifactId>stack-server</artifactId>
    <version>0.2.1</version>
</dependency>

If you want to reference a SNAPSHOT release a reference to the Sonatype snapshot repository must be added to your pom file:

<repository>
    <id>oss-sonatype</id>
    <name>oss-sonatype</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>

About

Eclipse Milo™ - an open source implementation of OPC UA (IEC 62541).

http://www.eclipse.org/milo

License:Eclipse Public License 1.0


Languages

Language:Java 99.7%Language:HTML 0.3%