Skip to content

Installation

Xezard edited this page Oct 31, 2023 · 5 revisions

To get a XGlow 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 XGlow to the dependency:

  • Gradle:
    dependencies {
        implementation 'com.github.Xezard.XGlow:XGlowAPI:{latest_version}'
    }
    
  • Maven:
    <dependency>
        <groupId>com.github.Xezard.XGlow</groupId>
        <artifactId>XGlowAPI</artifactId>
        <version>{latest_version}</version>
    </dependency>
    
Clone this wiki locally