-
Notifications
You must be signed in to change notification settings - Fork 37
Installation
Wiki ▸ Installation
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.
The Java library provides core functionality including the HTM operations on Flink data streams. Java 8 required.
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>
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'
}
The Scala library provides expanded functionality including the River View connector and a domain-specific language (DSL) for easy construction of HTM networks.
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"
Getting Started
Using
Development