This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
v0.0.2-SNAPSHOT
Pre-release
Pre-release
auguwu
released this
21 Feb 00:25
·
698 commits
to master
since this release
Additions
- [remi-core] Added a new interface method to StorageTrailer: StorageTrailer#upload by @auguwu
- [remi-support-fs] Added
./
and~/
support for file paths by @auguwu
Full Changelog: v0.0.1-SNAPSHOT...v0.0.2-SNAPSHOT
Installation
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>