# NexusAuctionHouse
A simple and optimized Auction House plugin
<iframe width="560" height="315" src="
https://www.youtube-nocookie.com/embed/khcJymKK5r8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
## Requirements
- Java 8+
- A Minecraft server above 1.7
## Commands and permissions
- /ah - opens the Auction House menu
- /ah reload - reloads the configuration - nah.command.reload
- /ah search - Search for items in the Auction House
- /ah sell <price> - list an item on the Auction House
- /ah logs - opens the list of sold items - nah.menu.logs
- /ah toggle - toggles the AH on or off - nah.command.reload
## Features
- Searching
- Sorting
- Admin control
- Listing fee
- Expiry
- Logging for admins
- Item banning
- Webhook notifications
- Slots cap customization
## Developer API
The plugin now features a developer API.
### Dependency information:
#### For Maven:
```xml
<repositories>
<repository>
<id>jitpack.io</id>
</repository>
</repositories>
<dependency>
<groupId>com.github.SynkMC</groupId>
<artifactId>NexusAuctionHouse</artifactId>
<version>1.5.1</version>
<scope>provided</scope>
</dependency>
```
#### For Gradle:
```groovy
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
}
}
dependencies {
implementation 'com.github.SynkMC:NexusAuctionHouse:1.5.1'
}
```