Implementation
Implementation¶
Latest Version¶
The latest release is 1.0.2
Plugin Releases¶
Here's a summary of the latest versions:
Version | Release Notes | Release Date |
---|---|---|
1.0.2 | changelog 🔗 | 06 Aug 2024 |
1.0.1 | changelog 🔗 | 18 Apr 2024 |
1.0.0 | changelog 🔗 | 15 Apr 2024 |
1.0.0-beta04 | changelog 🔗 | 04 Mar 2024 |
1.0.0-beta03 | changelog 🔗 | 27 Feb 2024 |
1.0.0-beta02 | changelog 🔗 | 19 Feb 2024 |
1.0.0-beta01 | changelog 🔗 | 08 Feb 2024 |
1.0.0-alpha04 | changelog 🔗 | 24 Nov 2023 |
1.0.0-alpha03 | changelog 🔗 | 20 Nov 2023 |
1.0.0-alpha02 | changelog 🔗 | 08 Nov 2023 |
1.0.0-alpha01 | changelog 🔗 | 03 Nov 2023 |
Using Version Catalog¶
Declare Components¶
This catalog provides the implementation details of Winds libraries and individual libraries, in TOML format.
gradle/libs.versions.toml
[versions]
teogor-winds = "1.0.2"
[plugins]
teogor-winds = { id = "dev.teogor.winds", version.ref = "teogor-winds" }
gradle/libs.versions.toml
[versions]
teogor-winds = "1.0.2"
[libraries]
teogor-winds-api = { module = "dev.teogor.winds:api", version.ref = "teogor-winds" }
teogor-winds-common = { module = "dev.teogor.winds:common", version.ref = "teogor-winds" }
Dependencies Implementation¶
build.gradle.kts
plugins {
// Winds Plugin
alias(libs.plugins.teogor.winds)
}
dependencies {
// Winds Libraries
implementation(libs.teogor.winds.api)
implementation(libs.teogor.winds.common)
}
build.gradle
plugins {
// Winds Plugin
alias(libs.plugins.teogor.winds)
}
dependencies {
// Winds Libraries
implementation(libs.teogor.winds.api)
implementation(libs.teogor.winds.common)
}