Add to your project - lrusso96/feedbooks-driver GitHub Wiki
You can easily add to your existing project through Maven or Gradle.
- Add the JitPack repository
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- Add the dependency
<dependency>
<groupId>com.github.lrusso96</groupId>
<artifactId>feedbooks-driver</artifactId>
<version>0.1.0</version>
</dependency>
- Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
- Add the dependency
dependencies {
implementation 'com.github.lrusso96:feedbooks-driver
}