Skip to content
This repository has been archived by the owner on Dec 31, 2020. It is now read-only.

Installation

Eron Wright edited this page Mar 14, 2016 · 3 revisions

WikiInstallation

The library isn't published to Maven Central (yet). Please look at the Building instructions on how to build and install the library to your local Maven repository, for use with other projects.

Linking (Core)

The Java library provides core functionality including the HTM operations on Flink data streams. Java 8 required.

Maven

To build with Apache Maven, add the dependencies listed below to your pom.xml file.

<dependencies>
  <dependency>
    <groupId>org.numenta</groupId>
    <artifactId>flink-htm-java</artifactId>
    <version>0.1-SNAPSHOT</version>
  </dependency>
</dependencies>

Gradle

To build with Gradle, add the dependencies listed below to your build.gradle file.

dependencies {
  compile group: 'org.numenta', name: 'flink-htm-java', version: '0.1-SNAPSHOT'
}

Linking (Connectors & DSL)

The Scala library provides expanded functionality including the River View connector and a domain-specific language (DSL) for easy construction of HTM networks.

SBT

To build with sbt, add the dependencies listed below to your build.sbt file.

libraryDependencies += "org.numenta" % "flink-htm-scala_2.11" % "0.1-SNAPSHOT"
Clone this wiki locally