Skip to content

Commit

Permalink
docs: packages repository
Browse files Browse the repository at this point in the history
  • Loading branch information
DuoDuoJuZi committed Dec 24, 2024
1 parent d7a32ed commit 53ef1c2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,31 @@ The usage of a particular module is described in detail in the module's `README.

It should be noted that the entire library fully depends on [Fairy Framework](https://github.com/FairyProject/fairy), which will completely simplify our development process and provide various functions. It also depends on [fairy-lib-plugin](https://github.com/FairyProject/fairy-lib-plugin).

### for developer

Please configure your Github Username and Github Token

* Maven Repo:
```kts
repositories {
maven {
url = uri("https://maven.pkg.github.com/LegacyLands/legacy-lands-library")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
}
}
}
```
* Artifact Information:
```kts
dependencies {
implementation("net.legacy.library:{module}:{version}")
}
```

You can get all modules and versions here [GitHub Packages](https://github.com/LegacyLands/legacy-lands-library/packages)

## modules

- [annotation](annotation/README.md)
Expand Down

0 comments on commit 53ef1c2

Please sign in to comment.