2018-10-23 23:35:43 +02:00
|
|
|
# NaturesAura
|
2021-01-14 23:15:02 +01:00
|
|
|
|
|
|
|
Nature's Aura is a mod about collecting, using and replenishing the Aura
|
2021-12-04 15:40:09 +01:00
|
|
|
naturally present in the level to create useful devices and unique mechanics.
|
2018-11-17 16:03:40 +01:00
|
|
|
|
|
|
|
## Maven
|
2021-01-14 23:15:02 +01:00
|
|
|
|
|
|
|
To add this project as a dependency (for using
|
|
|
|
the [API](https://github.com/Ellpeck/NaturesAura/tree/main/src/main/java/de/ellpeck/naturesaura/api)
|
|
|
|
, for example), put this into your `build.gradle` file:
|
|
|
|
|
2018-11-17 16:03:40 +01:00
|
|
|
```
|
|
|
|
repositories {
|
|
|
|
maven {
|
2020-02-16 15:04:28 +01:00
|
|
|
url = "https://maven.ellpeck.de"
|
2018-11-17 16:03:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "de.ellpeck.naturesaura:NaturesAura:VERSION"
|
|
|
|
}
|
|
|
|
```
|
2021-01-14 23:15:02 +01:00
|
|
|
|
|
|
|
Replace VERSION with the version you want to use. You can find a list of
|
|
|
|
versions by going to
|
|
|
|
the [maven artifact](https://maven.ellpeck.de/de/ellpeck/naturesaura/NaturesAura/)
|
|
|
|
.
|