Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.48 KB

File metadata and controls

45 lines (36 loc) · 1.48 KB

Utility-Library

Static Badge Java CI with Gradle

To import the library, please refer to the wiki for more details. If you want to compile specific modules only, you can find more information there as well. You will find the full wiki here utility library wiki.

If you do want to use the Utility Library plugin, you can follow the instructions below.

🪶 Maven
<repositories>
    <repository>
        <id>repsy</id>
        <url>https://repo.repsy.io/broken-arrow/utility-library</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
       <groupId>org.broken.arrow.library</groupId>
       <artifactId>utility-library</artifactId>
       <version>type version</version>
       <scope>provided</scope>
    </dependency>
</dependencies>
🐘 Gradle (Kotlin DSL)
repositories {
    maven { url = uri("https://repo.repsy.io/broken-arrow/utility-library") }
}

dependencies {
implementation("org.broken.arrow.library:utility-library:type version")
}