Skip to content

Installation

Xezard edited this page Oct 9, 2020 · 2 revisions

To get a XConfiguration into your build:
First include jitpack repository:

  • Gradle:
    repositories {
        maven { url 'https://jitpack.io' }
    }
    
  • Maven:
    <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
    </repository>
    

And then add XConfiguration to the dependency:

  • Gradle:
    dependencies {
        implementation 'com.github.Xezard:XConfiguration:{latest_version}'
    }
    
  • Maven:
    <dependency>
        <groupId>com.github.Xezard</groupId>
        <artifactId>XConfiguration</artifactId>
        <version>{latest_version}</version>
    </dependency>
    

Clone this wiki locally