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.gwtmaterialdesign:gwt-material-table:2.8.5'
}
dependencies {
implementation("com.github.gwtmaterialdesign:gwt-material-table:2.8.5")
}
<dependency>
<groupId>com.github.gwtmaterialdesign</groupId>
<artifactId>gwt-material-table</artifactId>
<version>2.8.5</version>
</dependency>
libraryDependencies += "com.github.gwtmaterialdesign" % "gwt-material-table" % "2.8.5"
:dependencies [[com.github.gwtmaterialdesign/gwt-material-table "2.8.5"]]
A complex table component designed for the material design specifications!
Support documentation can be found here
Current Version 2.8.5
<dependency>
<groupId>com.github.gwtmaterialdesign</groupId>
<artifactId>gwt-material-table</artifactId>
<version>2.8.5</version>
</dependency>
Import the GMD Table library (using Maven or using the Jar file).
<inherits name="gwt.material.design.GwtMaterialTable"/>
Or debug module:
<inherits name="gwt.material.design.GwtMaterialTableDebug"/>
Contributions are welcomed by all! If you would like to submit changes be sure to fork this project and create a Pull Request for us to review. PR's will be reviewed by the team as soon as possible. You will also be listed as a contributor on our changelog notes.
Please follow the contribution document on the projects code style standards.
Many thanks to BrowserStack for sponsoring our Open Source projects<br/> <a href="https://www.browserstack.com/" target="_blank"> <img width="300px" src="https://www.browserstack.com/images/layout/browserstack-logo-600x315.png"/> </a>