MVN

org.reco4j : reco4j-core

Maven & Gradle

Sep 22, 2013

reco4j-core · Reco4j is an open source project aims at developing a recommendation framework based on graph data sources. We choose graph databases for several reasons. They are NoSQL databases, so "schemaless". This means that it is possible to extend the basic data structure with intermediate information, i.e. similarity value between item and so on. Moreover, since every information is expressed with properties, nodes and relations, the recommendation process can be customized to work on every graph. Reco4j can be used on every graph where "user" and "item" is represented by node and the preferences are modelled as relationship between them. Current implementation leverage on Neo4j as first graph database integrated in our framework.

<dependency>
    <groupId>org.reco4j</groupId>
    <artifactId>reco4j-core</artifactId>
    <version>0.5.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.reco4j : reco4j-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5.0

All Versions

Choose a version of org.reco4j : reco4j-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.5.x
reco4j-core-0.5.0
0.4.x
reco4j-core-0.4.0
0.3.x
reco4j-core-0.3.0
0.2.x
reco4j-core-0.2.0
0.1.x
reco4j-core-0.1.0

How to add a dependency to Maven

Add the following org.reco4j : reco4j-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.reco4j</groupId>
    <artifactId>reco4j-core</artifactId>
    <version>0.5.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.reco4j : reco4j-core gradle dependency to your build.gradle file:

implementation 'org.reco4j:reco4j-core:0.5.0'

Gradle Kotlin DSL: Add the following org.reco4j : reco4j-core gradle kotlin dependency to your build.gradle.kts file:

implementation("org.reco4j:reco4j-core:0.5.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.reco4j : reco4j-core sbt scala dependency to your build.sbt file:

libraryDependencies += "org.reco4j" % "reco4j-core" % "0.5.0"

Advertisement