Skip to content

A tool to resolve a dependency, download and manage its direct and transitive dependencies

License

Notifications You must be signed in to change notification settings

etidoUP/dependency-haven

Repository files navigation

Dependency Haven

Dependency Haven is a powerful and easy-to-use dependency management tool for java and Android projects. Simplify the management of your project dependencies with this open-source library.

Demo An android application using this library.

Download it from Actions

Features

  • Resolve direct dependencies
  • Resolve transitive dependencies
  • Cache resolved dependency POM and library
  • Read repositories from JSON
  • Handle parent POM
  • Handle POM properties
  • Skip unnecessary resolution
  • Remote authentication
  • CLI
  • Auto update cached library and POM

Installation

Getting started.

  1. Add the following in your root build.gradle at the end of repositories
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
         mavenCentral()
         maven { url 'https://jitpack.io' }
    }
}
  1. Add the following dependency to your project's build.gradle file:
dependencies {
    implementation 'com.github.etidoUP:dependency-haven:0.1.0-alpha'
}

Documentation

Review the documentation for dependency-haven

License

MIT License

Copyright (c) 2023 EUP

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Acknowledgements

Special thanks to Tyron for POM parsing class.

About

A tool to resolve a dependency, download and manage its direct and transitive dependencies

Topics

Resources

License

Stars

Watchers

Forks

Packages