Skip to content

Commit fa473b2

Browse files
committed
Readme
1 parent 792b7f2 commit fa473b2

2 files changed

Lines changed: 21 additions & 3 deletions

File tree

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
</a>
2323

2424
<h3 align="center">ParticleEmitter</h3>
25-
2625
<p align="center">
2726
<a href="https://github.com/WorldSeedGames/ParticleEmitter/issues">Report Bug</a>
2827
·
@@ -51,6 +50,25 @@ A full, runnable example server can be found in [here](https://github.com/WorldS
5150

5251
Particle examples can be found [here](https://github.com/WorldSeedGames/ParticleEmitter/tree/master/src/test/resources/particles)
5352

53+
### Adding as a dependency
54+
55+
Add the following to your `build.gradle` file:
56+
57+
```
58+
maven {
59+
url = uri("https://reposilite.worldseed.online/public")
60+
}
61+
```
62+
63+
Add the library as a dependency
64+
```
65+
dependencies {
66+
implementation("net.worldseed.particleeffects:ParticleEffects:<version>")
67+
}
68+
```
69+
70+
The lastest version number can be found [here](https://reposilite.worldseed.online/#/public/net/worldseed/particleeffects/ParticleEffects)
71+
5472
## Features
5573

5674
ParticleEmitter supports the following features

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ publishing {
3030
publications.create<MavenPublication>("maven") {
3131
groupId = "net.worldseed.particleeffects"
3232
artifactId = "ParticleEffects"
33-
version = "1.1"
33+
version = "1.2"
3434

3535
from(components["java"])
3636
}
3737

3838
repositories {
3939
maven {
4040
name = "WorldSeed"
41-
url = uri("https://reposilite.worldseed.online/releases")
41+
url = uri("https://reposilite.worldseed.online/public")
4242
credentials(PasswordCredentials::class)
4343
authentication {
4444
create<BasicAuthentication>("basic")

0 commit comments

Comments
 (0)