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:2.1-rc1'
}
dependencies {
implementation("com.github.GwtMaterialDesign:gwt-material:2.1-rc1")
}
<dependency>
<groupId>com.github.GwtMaterialDesign</groupId>
<artifactId>gwt-material</artifactId>
<version>2.1-rc1</version>
</dependency>
libraryDependencies += "com.github.GwtMaterialDesign" % "gwt-material" % "2.1-rc1"
:dependencies [[com.github.GwtMaterialDesign/gwt-material "2.1-rc1"]]
Support documentation can be found here <br/> We created <a href="http://gwtmaterialdesign.github.io/gwt-material-demo/apidocs" > Java Docs </a> for developers
<dependency>
<groupId>com.github.gwtmaterialdesign</groupId>
<artifactId>gwt-material</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>com.github.gwtmaterialdesign</groupId>
<artifactId>gwt-material</artifactId>
<version>2.8.0-SNAPSHOT</version>
</dependency>
You can find lists of features by version <a href="https://github.com/GwtMaterialDesign/gwt-material/wiki/Changelog">here</a>.
Migrating from 1.3 to 1.4 <br/> Migrating from 1.x to 2.0
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.
| Project | Number of Tests | | --- | --- | | gwt-material | 1545 | | gwt-material-addins | 1048 | | gwt-material-table | 100 | | Total Unit Tests | 2693 |