Skip to content

echocat/locela-api-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Locela - API for Java

Java API of a localization framework for an easy and platform independent work.

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.locela.api</groupId>
    <artifactId>java</artifactId>
    <version><!-- THE VERSION --></version>
</dependency>
Gradle
compile 'org.echocat.locela.api:java:<THE VERSION>'

Contributing

Locela - API for Java is an open source project by 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 the LICENSE file.