ShopChest
ShopChest is a shop plugin for Spigot or Bukkit servers. It's maintained by @EpicEricEE and has a public GitHub repository here. All the plugins below are dependencies, which you need when building ShopChest.
<repositories>
<repository>
<id>epiceric-repo</id>
<url>https://epicericee.github.io/ShopChest/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>ShopChest</artifactId>
<version>1.10.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
VaultAPI
Vault is an API for plugins, which have economy and permission support. It combines the methods of several economy and permission plugins, so developers only have to use the one in Vault and still support mutliple plugins. Vault is made by @MilkBowl and is found on GitHub here. The API has an extra repository on GitHub, which can be found here
<repositories>
<repository>
<id>vault-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.6</version>
<scope>provided</scope>
</dependency>
</dependencies>
WorldGuard
WorldGuard is a powerful and very popuplar protection plugin, whose API features are needed for ShopChest to support it. WorldGuard is created by @sk89q and is found on GitHub here.
<repositories>
<repository>
<id>epiceric-repo</id>
<url>http://maven.sk89q.com/artifactory/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>6.1.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
ChestShop
ChestShop is a shop plugin for Spigot or Bukkit servers. It was originally maintained by @Acrobot and has a public GitHub repository here. However, the last update by Acrobot was in July 2015, but @moloco has published a new version for the latest Minecraft versions, that you can find here.
<repositories>
<repository>
<id>epiceric-repo</id>
<url>https://epicericee.github.io/ShopChest/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.Acrobot</groupId>
<artifactId>ChestShop</artifactId>
<version>3.8.12</version>
<scope>provided</scope>
</dependency>
</dependencies>
Towny
Towny is a plugin for Spigot or Bukkit servers, that adds highly configurable towns to the server. It was originally created by @ELgarL, but is now maintained by @LlmDl and has a public GitHub repository here.
<repositories>
<repository>
<id>epiceric-repo</id>
<url>https://epicericee.github.io/ShopChest/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.91.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>