Skip to content

yuriik83/milo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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. An initial release and graduation from the incubation phase is planned for the end of this year, after the OPC interop event in Nuremberg.

Gitter: Join the chat at https://gitter.im/eclipse/milo

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

Stack Overflow tag: milo

Maven

Snapshots and releases are available using Maven. In order to use snapshots 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>

OPC-UA Client SDK

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

OPC-UA Server SDK

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

OPC-UA Stack

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

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%