Build Status Quality Gate SonarCloud Coverage Maven Central Javadocs

AILibs

AILibs is a collection of Java libraries related to automated decision making. It currently consists of two building blocks. It is also home of the current version of the AutoML-tool ML-Plan.

**Find out more about AILibs and how to use it.

Using AILibs in your project

You can resolve each of our projects via a Maven dependency (using Maven central as repository).

Maven

<dependency>
  <groupId>ai.libs</groupId>
  <artifactId>jaicore-ml</artifactId>
  <version>0.2.0</version>
</dependency>

Gradle

dependencies {
    implementation 'ai.libs:jaicore-ml:0.2.0'
}

Setting up your IDE to work with AILibs

Eclipse

Navigate to the folder where you cloned this repository and run

  ./gradlew eclipse

This automatically creates the eclipse project files and configures the dependencies among the projects. Then open Eclipse and go to the import menu, e.g., in the package manager. Choose to import Existing Projects into Workspace, select the folder where you cloned the repository, and make sure to check the Search for nested projects option.

AILibs JavaDoc API

JAICore

Software Configuration

Troubleshooting

Maven dependency resolvement problems

In some cases, Maven is not able to import referenced dependencies on repositories different from the central Maven repositories, resulting in a build failure. To solve this problem, one might add the following repositories to the pom.xml to be able to properly execute maven compile or similar:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
    <repository>
        <id>nexus.cs.upb</id>
        <url>https://nexus.cs.upb.de/repository/maven-releases/</url>
    </repository>
</repositories>