Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create README.md #183

Merged
merged 1 commit into from
Dec 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# IridiumCore
![GitHub](https://img.shields.io/github/license/Iridium-Development/IridiumCore?color=479fc0)

## Introduction

IridiumCore is a library for Iridium Development's Spigot plugins.

It houses NMS and version specific code, as well as gives GUIs, Items, and other plugin aspects a central location for ease of use.

### Compiling

Clone the repo, and run the [build.gradle.kts](https://github.com/Iridium-Development/IridiumCore/blob/master/build.gradle.kts) script.

If you need to take a look, here is the [Nexus](https://nexus.iridiumdevelopment.net/#browse/browse:maven-public:com%2Firidium%2FIridiumCore) repo.

### Development

#### Maven

```xml
<repository>
<id>IridiumDevelopment</id>
<url>https://nexus.iridiumdevelopment.net/repository/maven-releases/</url>
</repository>
```
```xml
<dependency>
<groupId>com.iridium</groupId>
<artifactId>IridiumCore</artifactId>
<version>2.0.8.8</version>
<scope>provided</scope>
</dependency>
```

#### Kotlin DSL (Gradle)

```kts
repositories {
maven("https://nexus.iridiumdevelopment.net/repository/maven-releases/")
}
```
```kts
dependencies {
implementation("com.iridium:IridiumCore:2.0.8.8")
}
```

## Support

If you think you've found a bug, please make sure you isolate the issue down to IridiumCore before posting an issue in our [Issues](https://github.com/Iridium-Development/IridiumCore/issues) tab. While you're there, please follow our issues guidelines.

If you encounter any issues while using IridiumCore, feel free to join our support [Discord](https://discord.gg/6HJ73mWE7P).
Loading