Skip to content

echocat/repo4j

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

repo4j

Maven Central

API for repositories in Java.

Topics

Getting started

Dependency

1. Register our repository (optional)

You can directly register our repository if you want always the latest version. The central can be versions behind.

Maven
<repositories>
    <repository>
        <id>central</id>
        <url>https://repo.maven.apache.org/maven2</url>
    </repository>
    <repository>
        <id>echocat</id>
        <url>https://packages.echocat.org/maven</url>
    </repository>
</repositories>
Gradle
repositories {
    mavenCentral()
    maven {
        url "https://packages.echocat.org/maven"
    }
}

2. Pick your version

Maven Central

Find your desired version you want to install (usually the latest one) by looking it up in our repository or directly at the Maven Central.

3. Add the dependency

Maven
<dependency>
    <groupId>org.echocat.repo4j</groupId>
    <artifactId>repo4j</artifactId>
    <version><!-- THE VERSION --></version>
</dependency>
Gradle
compile 'org.echocat.repo4j:repo4j:<THE VERSION>'

Contributing

repo4j is an open source project of echocat. So if you want to make this project even better, you can contribute to this project on GitHub by fork us.

If you commit code to this project you have to accept that this code will be released under the license of this project.

License

See LICENSE file.