Skip to content

Commit 1996cfa

Browse files
LlmDlcerealcable
authored andcommitted
Finish removal of native support for abandoned economy plugins.
- All economy plugins removed as libs. - None of them are actively developed, many abandoned in 2011. - Removal of Register hook. - Register was last updated by the Towny team, many years ago, it is no longer used by any modern server. - Remove VaultEco class, unused after removal of Register compatibilty.
1 parent 52df9d3 commit 1996cfa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1
-6435
lines changed

lib/BOSEconomy.jar

-176 KB
Binary file not shown.

lib/Craftconomy.jar

-110 KB
Binary file not shown.

lib/CurrencyCore.jar

-28.8 KB
Binary file not shown.

lib/DigiCoin.jar

-8.34 KB
Binary file not shown.

lib/Dosh.jar

-17.7 KB
Binary file not shown.

lib/EconXP.jar

-36.4 KB
Binary file not shown.

lib/Essentials.jar

-686 KB
Binary file not shown.

lib/GoldIsMoney2.jar

-26 KB
Binary file not shown.

lib/GoldenChestEconomy.jar

-46.7 KB
Binary file not shown.

lib/Gringotts.jar

-22.6 KB
Binary file not shown.

lib/McMoney.jar

-15.5 KB
Binary file not shown.

lib/MiConomy.jar

-58.6 KB
Binary file not shown.

lib/MineConomy.jar

-133 KB
Binary file not shown.

lib/Minefaconomy.jar

-32 KB
Binary file not shown.

lib/MultiCurrency.jar

-16.2 KB
Binary file not shown.

lib/Register.jar

-66.2 KB
Binary file not shown.

lib/SDFEconomy-0.2.2.jar

-77.4 KB
Binary file not shown.

lib/TAEcon.jar

-5.31 KB
Binary file not shown.

lib/XPBank.jar

-193 KB
Binary file not shown.

lib/eWallet.jar

-8.77 KB
Binary file not shown.

lib/iConomy6.jar

-162 KB
Binary file not shown.

pom.xml

+1-183
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
<version>${api.version}.3</version>
1616
<name>Vault</name>
1717
<url>https://dev.bukkit.org/projects/vault</url>
18-
<description>Vault is a Permissions &amp; Economy API to allow plugins to more easily hook into these systems without needing to hook each individual system themselves.
19-
20-
Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms, bPerms2, SimplyPerms, DroxPerms, zPermissions, rscPermissions, KPerms, Starburst, iConomy (4/5/6) BOSEconomy *6/7), EssentialsEcon, 3Co, MultiConomy, MineConomy, EconXP, eWallet, CurrencyCore, XPBank, CraftConomy, AEco, SDFEconomy, TAEcon, and OverPermissions</description>
18+
<description>Vault is a Chat, Permissions &amp; Economy API to allow plugins to more easily hook into these systems without needing to hook each individual system themselves.</description>
2119

2220

2321

@@ -87,14 +85,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
8785
<artifactId>bstats-bukkit</artifactId>
8886
<version>3.0.0</version>
8987
</dependency>
90-
<dependency>
91-
<groupId>com.gmail.bleedobsidian.miconomy</groupId>
92-
<artifactId>MiConomy</artifactId>
93-
<version>1.0</version>
94-
<optional>true</optional>
95-
<scope>system</scope>
96-
<systemPath>${project.basedir}/lib/MiConomy.jar</systemPath>
97-
</dependency>
9888
<dependency>
9989
<groupId>de.hydrox.bukkit</groupId>
10090
<artifactId>DroxPerms</artifactId>
@@ -103,14 +93,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
10393
<scope>system</scope>
10494
<systemPath>${project.basedir}/lib/DroxPerms.jar</systemPath>
10595
</dependency>
106-
<dependency>
107-
<groupId>me.coniin.plugins.minefaconomy</groupId>
108-
<artifactId>MineFaConomy</artifactId>
109-
<version>0.2</version>
110-
<optional>true</optional>
111-
<scope>system</scope>
112-
<systemPath>${project.basedir}/lib/Minefaconomy.jar</systemPath>
113-
</dependency>
11496
<dependency>
11597
<groupId>net.krinsoft</groupId>
11698
<artifactId>Privileges</artifactId>
@@ -119,38 +101,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
119101
<scope>system</scope>
120102
<systemPath>${project.basedir}/lib/Privileges.jar</systemPath>
121103
</dependency>
122-
<dependency>
123-
<groupId>is.currency</groupId>
124-
<artifactId>Currency</artifactId>
125-
<version>0.61</version>
126-
<optional>true</optional>
127-
<scope>system</scope>
128-
<systemPath>${project.basedir}/lib/CurrencyCore.jar</systemPath>
129-
</dependency>
130-
<dependency>
131-
<groupId>me.igwb.GoldenChest</groupId>
132-
<artifactId>GoldenChestEconomy</artifactId>
133-
<version>1.0.0</version>
134-
<optional>true</optional>
135-
<scope>system</scope>
136-
<systemPath>${project.basedir}/lib/GoldenChestEconomy.jar</systemPath>
137-
</dependency>
138-
<dependency>
139-
<groupId>com.flobi.GoldIsMoney2</groupId>
140-
<artifactId>GoldIsMoney</artifactId>
141-
<version>2.0.0</version>
142-
<optional>true</optional>
143-
<scope>system</scope>
144-
<systemPath>${project.basedir}/lib/GoldIsMoney2.jar</systemPath>
145-
</dependency>
146-
<dependency>
147-
<groupId>cosine.boseconomy.BOSEconomy</groupId>
148-
<artifactId>BOSEconomy</artifactId>
149-
<version>0.7.3.1a</version>
150-
<optional>true</optional>
151-
<scope>system</scope>
152-
<systemPath>${project.basedir}/lib/BOSEconomy.jar</systemPath>
153-
</dependency>
154104
<dependency>
155105
<groupId>de.bananaco.permissions.Permissions</groupId>
156106
<artifactId>bPermissions</artifactId>
@@ -167,22 +117,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
167117
<scope>system</scope>
168118
<systemPath>${project.basedir}/lib/Xperms.jar</systemPath>
169119
</dependency>
170-
<dependency>
171-
<groupId>ca.agnate.EconXP.EconXP</groupId>
172-
<artifactId>EconXP</artifactId>
173-
<version>0.4.1</version>
174-
<optional>true</optional>
175-
<scope>system</scope>
176-
<systemPath>${project.basedir}/lib/EconXP.jar</systemPath>
177-
</dependency>
178-
<dependency>
179-
<groupId>com.earth2me.essentials.Essentials</groupId>
180-
<artifactId>Essentials</artifactId>
181-
<version>2.9.2</version>
182-
<optional>true</optional>
183-
<scope>system</scope>
184-
<systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
185-
</dependency>
186120
<dependency>
187121
<groupId>org.anjocaido.groupmanager.GroupManager</groupId>
188122
<artifactId>GroupManager</artifactId>
@@ -191,22 +125,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
191125
<scope>system</scope>
192126
<systemPath>${project.basedir}/lib/EssentialsGroupManager.jar</systemPath>
193127
</dependency>
194-
<dependency>
195-
<groupId>me.ethan.eWallet.ECO</groupId>
196-
<artifactId>eWallet</artifactId>
197-
<version>1.0</version>
198-
<optional>true</optional>
199-
<scope>system</scope>
200-
<systemPath>${project.basedir}/lib/eWallet.jar</systemPath>
201-
</dependency>
202-
<dependency>
203-
<groupId>boardinggamer.mcmoney</groupId>
204-
<artifactId>McMoney</artifactId>
205-
<version>1.2</version>
206-
<optional>true</optional>
207-
<scope>system</scope>
208-
<systemPath>${project.basedir}/lib/McMoney.jar</systemPath>
209-
</dependency>
210128
<dependency>
211129
<groupId>net.TheDgtl.iChat.iChat</groupId>
212130
<artifactId>iChat</artifactId>
@@ -215,22 +133,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
215133
<scope>system</scope>
216134
<systemPath>${project.basedir}/lib/iChat.jar</systemPath>
217135
</dependency>
218-
<dependency>
219-
<groupId>com.iCo6.iConomy</groupId>
220-
<artifactId>iConomy</artifactId>
221-
<version>6.0.9b</version>
222-
<optional>true</optional>
223-
<scope>system</scope>
224-
<systemPath>${project.basedir}/lib/iConomy6.jar</systemPath>
225-
</dependency>
226-
<dependency>
227-
<groupId>com.gmail.mirelatrue.xpbank.XPBank</groupId>
228-
<artifactId>XPBank</artifactId>
229-
<version>0.9</version>
230-
<optional>true</optional>
231-
<scope>system</scope>
232-
<systemPath>${project.basedir}/lib/XPBank.jar</systemPath>
233-
</dependency>
234136
<dependency>
235137
<groupId>net.D3GN.MiracleM4n.mChat.mChat</groupId>
236138
<artifactId>mChat</artifactId>
@@ -247,22 +149,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
247149
<scope>system</scope>
248150
<systemPath>${project.basedir}/lib/mChatSuite.jar</systemPath>
249151
</dependency>
250-
<dependency>
251-
<groupId>me.mjolnir.mineconomy.MineConomy</groupId>
252-
<artifactId>MineConomy</artifactId>
253-
<version>1.6</version>
254-
<optional>true</optional>
255-
<scope>system</scope>
256-
<systemPath>${project.basedir}/lib/MineConomy.jar</systemPath>
257-
</dependency>
258-
<dependency>
259-
<groupId>me.ashtheking.currency.Currency</groupId>
260-
<artifactId>MultiCurrency</artifactId>
261-
<version>0.1</version>
262-
<optional>true</optional>
263-
<scope>system</scope>
264-
<systemPath>${project.basedir}/lib/MultiCurrency.jar</systemPath>
265-
</dependency>
266152
<dependency>
267153
<groupId>com.nijikokun.bukkit.Permissions.Permissions</groupId>
268154
<artifactId>Permissions</artifactId>
@@ -303,34 +189,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
303189
<scope>system</scope>
304190
<systemPath>${project.basedir}/lib/Starburst.jar</systemPath>
305191
</dependency>
306-
<dependency>
307-
<groupId>com.nijikokun.register</groupId>
308-
<artifactId>Register</artifactId>
309-
<version>1.5</version>
310-
<optional>true</optional>
311-
<scope>system</scope>
312-
<systemPath>${project.basedir}/lib/Register.jar</systemPath>
313-
</dependency>
314-
<dependency>
315-
<groupId>me.greatman.Craftconomy</groupId>
316-
<artifactId>Craftconomy</artifactId>
317-
<version>2.3.5</version>
318-
<optional>true</optional>
319-
<scope>system</scope>
320-
<systemPath>${project.basedir}/lib/Craftconomy.jar</systemPath>
321-
</dependency>
322-
<dependency>
323-
<groupId>com.greatmancode</groupId>
324-
<artifactId>craftconomy3</artifactId>
325-
<version>3.2.2-SNAPSHOT</version>
326-
<optional>true</optional>
327-
<exclusions>
328-
<exclusion>
329-
<groupId>org.projectlombok</groupId>
330-
<artifactId>lombok</artifactId>
331-
</exclusion>
332-
</exclusions>
333-
</dependency>
334192
<dependency>
335193
<groupId>net.crystalyx.bukkit.simplyperms</groupId>
336194
<artifactId>SimplyPerms</artifactId>
@@ -339,22 +197,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
339197
<scope>system</scope>
340198
<systemPath>${project.basedir}/lib/SimplyPerms.jar</systemPath>
341199
</dependency>
342-
<dependency>
343-
<groupId>Gringotts</groupId>
344-
<artifactId>Gringotts</artifactId>
345-
<version>0.0.1-SNAPSHOT</version>
346-
<optional>true</optional>
347-
<scope>system</scope>
348-
<systemPath>${project.basedir}/lib/Gringotts.jar</systemPath>
349-
</dependency>
350-
<dependency>
351-
<groupId>com.gravypod.Dosh</groupId>
352-
<artifactId>Dosh</artifactId>
353-
<version>1.0</version>
354-
<optional>true</optional>
355-
<scope>system</scope>
356-
<systemPath>${project.basedir}/lib/Dosh.jar</systemPath>
357-
</dependency>
358200
<dependency>
359201
<groupId>com.github.zathrus_writer.commandsex</groupId>
360202
<artifactId>CommandsEX</artifactId>
@@ -363,14 +205,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
363205
<scope>system</scope>
364206
<systemPath>${project.basedir}/lib/CommandsEX.jar</systemPath>
365207
</dependency>
366-
<dependency>
367-
<groupId>com.github.omwah</groupId>
368-
<artifactId>SDFEconomy</artifactId>
369-
<version>0.2.2</version>
370-
<optional>true</optional>
371-
<scope>system</scope>
372-
<systemPath>${project.basedir}/lib/SDFEconomy-0.2.2.jar</systemPath>
373-
</dependency>
374208
<dependency>
375209
<groupId>net.ae97</groupId>
376210
<artifactId>TotalPermissions</artifactId>
@@ -387,14 +221,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
387221
<scope>system</scope>
388222
<systemPath>${project.basedir}/lib/rscPermissions.jar</systemPath>
389223
</dependency>
390-
<dependency>
391-
<groupId>net.teamalpha.taecon</groupId>
392-
<artifactId>TAEcon</artifactId>
393-
<version>0.1</version>
394-
<optional>true</optional>
395-
<scope>system</scope>
396-
<systemPath>${project.basedir}/lib/TAEcon.jar</systemPath>
397-
</dependency>
398224
<dependency>
399225
<groupId>KPerms</groupId>
400226
<artifactId>KPerms</artifactId>
@@ -403,14 +229,6 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
403229
<scope>system</scope>
404230
<systemPath>${project.basedir}/lib/KPerms.jar</systemPath>
405231
</dependency>
406-
<dependency>
407-
<groupId>co.uk.silvania.cities.digicoin</groupId>
408-
<artifactId>DigiCoin</artifactId>
409-
<version>0.1</version>
410-
<optional>true</optional>
411-
<scope>system</scope>
412-
<systemPath>${project.basedir}/lib/DigiCoin.jar</systemPath>
413-
</dependency>
414232
<dependency>
415233
<groupId>com.overmc</groupId>
416234
<artifactId>overpermissions</artifactId>

0 commit comments

Comments
 (0)