A small environment with robot agents used for teaching programming basics.
You can finde the documentation here.
This project is available on Maven Central. You can use it by adding the following code to your build.gradle.kts
file:
repositories {
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
implementation("org.tudalgo.fopbot:<version>")
}
Since the recent update we also need the jitpack repository to resolve the dependencies of the project.
The snapshot version is available on Sonatype. You can use it by adding the following code to your build.gradle.kts
file:
repositories {
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io")
}
dependencies {
implementation("org.tudalgo.fopbot:<version>-SNAPSHOT")
}
To build the project from source, you can execute the publishToMavenLocal
task. This will build the project and publish it to your local maven repository.
./gradlew publishToMavenLocal
After that, you can use the project in your other projects by adding the following code to your build.gradle.kts
file:
repositories {
mavenLocal()
maven("https://jitpack.io")
}
dependencies {
implementation("org.tudalgo.fopbot:<version>")
}