MVN

com.rulelearner : rulelearner

Maven & Gradle

Oct 01, 2021

Rule Learner · Rule Learner is an open source Java library for learning business rules from historical data. It supports supervised Machine Learning by incorporating well-known algorithms such as RIPPER and C4.5 provided by open source tools such as Weka. Rule Learner is implemented as a Machine Learning component of OpenRules Decision Manager. It allows business analysts to place their historical data in simple Excel tables and to automatically discover business rules that find certain pattern in this data. The generated rules are human readable and presented in Excel format executable by OpenRules Decision Manager.

<dependency>
    <groupId>com.rulelearner</groupId>
    <artifactId>rulelearner</artifactId>
    <version>8.4.1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.rulelearner : rulelearner to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 8.4.1.1

All Versions

Choose a version of com.rulelearner : rulelearner to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
8.4.x
rulelearner-8.4.1.1
rulelearner-8.4.1
rulelearner-8.4.0
8.3.x
rulelearner-8.3.2
rulelearner-8.3.1
rulelearner-8.3.0
8.2.x
rulelearner-8.2.1.1
rulelearner-8.2.1.0
rulelearner-8.2.1
rulelearner-8.2.0.3
rulelearner-8.2.0.2
rulelearner-8.2.0.1
rulelearner-8.2.0

How to add a dependency to Maven

Add the following com.rulelearner : rulelearner maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.rulelearner</groupId>
    <artifactId>rulelearner</artifactId>
    <version>8.4.1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.rulelearner : rulelearner gradle dependency to your build.gradle file:

implementation 'com.rulelearner:rulelearner:8.4.1.1'

Gradle Kotlin DSL: Add the following com.rulelearner : rulelearner gradle kotlin dependency to your build.gradle.kts file:

implementation("com.rulelearner:rulelearner:8.4.1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.rulelearner : rulelearner sbt scala dependency to your build.sbt file:

libraryDependencies += "com.rulelearner" % "rulelearner" % "8.4.1.1"

Advertisement