Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tathandev/starwarsplanets-adastra
Planets from Star Wars for Ad Astra!
https://github.com/tathandev/starwarsplanets-adastra
ad-astra fabric forge minecraft minecraft-mod mod
Last synced: 3 days ago
JSON representation
Planets from Star Wars for Ad Astra!
- Host: GitHub
- URL: https://github.com/tathandev/starwarsplanets-adastra
- Owner: TathanDev
- License: other
- Created: 2022-12-06T15:58:10.000Z (almost 2 years ago)
- Default Branch: 1.20.4
- Last Pushed: 2024-08-21T20:56:34.000Z (3 months ago)
- Last Synced: 2024-08-21T23:01:45.259Z (3 months ago)
- Topics: ad-astra, fabric, forge, minecraft, minecraft-mod, mod
- Language: Java
- Homepage:
- Size: 11.4 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# Star Wars Planets
Want to add SWPlanets to your dev environment ? Sure !
Kotlin DSL:
```kotlin
repositories {
maven(url = "https://maven.odysseyus.fr/releases/")
}dependencies {
"modImplementation"(group = "fr.tathan.swplanets", name = "swplanets-[MODLOADER]-[MINECRAFT_VERSION]", version = [MOD_VERSION])
}
```Groovy DSL:
```groovy
repositories {
maven {
name "odysseyusMaven"
url "https://maven.odysseyus.fr/releases"
}
}dependencies {
implementation "fr.tathan.swplanets:swplanets-[MODLOADER]-[MINECRAFT_VERSION]:[MOD_VERSION]"
}
```