-
Notifications
You must be signed in to change notification settings - Fork 2
Installation
-
Add the following code to your root
build.gradle
at the end of therepositories
block:dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { mavenCentral() maven { url 'https://jitpack.io' } } }
This code configures the dependency resolution management for your project.
-
Add the following dependency to your project's
build.gradle
within thedependencies
block:dependencies { implementation 'com.github.etidoUP:dependency-haven:0.1.0-alpha' }
This line adds the
dependency-haven
library to your project as a dependency.
Once you've added the library as a dependency, you can start using it in your project. Here are some basic steps to get started:
-
Import the necessary classes or methods from the
dependency-haven
library into your code. -
Use the library to parse POM files and resolve dependencies in your project. You can refer to the library's documentation or examples for specific usage.
-
Explore the library's features, such as POM parsing and dependency resolution, and customize its behavior to suit your project requirements.
With these steps, you can begin using the dependency-haven
library in your project to manage dependencies effectively.