Skip to content

Phyrone/LibLoader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LibLoader

Build Status

Its a Library to import Maven-Dependecys at Runtime

Usage

Important!

Your ParentClassloader must be an URLClassloader

/* Create Libloader */
LibLoader libLoader = new LibLoader()

/* Resolve Artifact (download if not in .m2 Folder)*/
libLoader.require("<GroupID>:<ArtifactID>:<Version>");

/* add Maven Repository */
libLoader.addRepository("<Your Maven Repository URL>");

Import

Maven

<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
</repositories>
Version:
<dependency>
	    <groupId>com.github.Phyrone.LibLoader</groupId>
	    <artifactId>LibLoader-Core</artifactId>
	    <version>VERSION</version>
</dependency>

Gradle

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
Version:
	dependencies {
	        implementation 'com.github.Phyrone.LibLoader:LibLoader-Core:VERSION'
	}
Thaks to GiantTree

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages