Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

v0.0.1-SNAPSHOT

Pre-release
Pre-release
Compare
Choose a tag to compare
@auguwu auguwu released this 20 Feb 16:57
· 701 commits to master since this release
e0a4e20

This is a snapshot release of Remi for testing purposes. You can install the library using the maven.noelware.org/snapshots repository:

Gradle

Kotlin DSL

repositories {
    // If you're using the Noel Gradle Utils package, you can use the
    // `noelware` extension
    maven {
        url = uri("https://maven.noelware.org/snapshots")
    }
}

dependencies {
    // If you're using the Noel Gradle Utils package, you can use
    // the `noelware` extension to automatically prefix `org.noelware.<module>`
    // in the dependency declaration
    implementation("org.noelware.remi:remi-<module_name>:<version>")
}

Groovy DSL

repositories {
    maven {
        url "https://maven.noelware.org/snapshots"
    }
}

dependencies {
    implementation "org.noelware.remi:remi-<module_name>:<version>"
}

Maven

Declare the Noelware Snapshots Maven repository under the <repositories> chain:

<repositories>
    <repository>
        <id>noelware-maven</id>
        <url>https://maven.noelware.org/snapshots</url>
    </repository>
</repositories>

Now declare the dependency you want under the <dependencies> chain:

<dependencies>
    <dependency>
        <groupId>org.noelware.remi</groupId>
        <artifactId>remi-{{NAME}}</artifactId>
        <version>{{VERSION}}</version>
        <type>pom</type>
    </dependency>
</dependencies>