Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Installation

EUP edited this page Nov 4, 2023 · 1 revision

Installation Guide

  1. Add the following code to your root build.gradle at the end of the repositories 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.

  2. Add the following dependency to your project's build.gradle within the dependencies 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.

Getting Started

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:

  1. Import the necessary classes or methods from the dependency-haven library into your code.

  2. 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.

  3. 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.

Clone this wiki locally