Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Pygmalion69:gantt:'
}
dependencies {
implementation("com.github.Pygmalion69:gantt:")
}
<dependency>
<groupId>com.github.Pygmalion69</groupId>
<artifactId>gantt</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.Pygmalion69" % "gantt" % ""
:dependencies [[com.github.Pygmalion69/gantt ""]]
dhtmlxGantt is an open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart. It can show the dependencies between tasks as lines and allows you to set up different relationships between tasks (finish-to-start, start-to-start, end-to-end). dhtmlxGantt provides flexible API and a large number of event handles, which gives you the freedom to customize it for your needs.
http://dhtmlx.com/docs/products/dhtmlxGantt
This software is allowed to use under GPL or you need to obtain Commercial or Enterprise License to use it in non-GPL project. Please contact sales@dhtmlx.com for details
(c) Dinamenta UAB
Online documentation http://docs.dhtmlx.com/gantt/
Support forum http://forum.dhtmlx.com/viewforum.php?f=15